# Check Deployment

You can check the deployment by running deployed contract method.

you can check the deployed contract's network with truffle networks command

```shell
$ truffle networks
Network: MEVerseTestnet (id: 4759)
  MEVerseGreeter: 0xeb7A1483E3408Af19231262643672719CcFc6E17
  Migrations: 0xD542f454EdEb2CebeDF68a2B6176951c19dff9ed
```

To connect the deployed contract with network, please use the following command

```shell
$ truffle console --network MEVerseTestnet  
truffle(MEVerseTestnet)> 
```

create instance and check if it runs well by calling method in instance

```bash
truffle(development)> let mev = await MEVerseGreeter.deployed()
undefined
truffle(MEVerseTestnet)> mev.greet()
'Hello, MEVerse'
truffle(MEVerseTestnet)> 
```

Finally, check the Contract Address in Console and search tx hash in [MEVerse Testnet Scan](https://testnet.meversescan.io/)

<figure><img src="https://698754972-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNkZ7LMR6LRzUrRWukrry%2Fuploads%2FODUOOIl8y0TuOaD6rZ0E%2Fscreencapture-testnet-meversescan-io-tx-0xe1f6fad3f5121cb1448750113f25e20228c4b9e800d0a7cda8ca04ff464257f2-2022-11-23-10_35_32.png?alt=media&#x26;token=d2dc6558-bcf4-4af4-88b9-4f0bb68fd0d2" alt=""><figcaption></figcaption></figure>
