> For the complete documentation index, see [llms.txt](https://meversedex.gitbook.io/meverse-dev-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://meversedex.gitbook.io/meverse-dev-docs/get-started/check-deployment.md).

# 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="/files/bijopjcjampnztJMpYW0" alt=""><figcaption></figcaption></figure>
