# 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>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://meversedex.gitbook.io/meverse-dev-docs/get-started/check-deployment.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
