address is the ethereum hex address to query the account for.
A successful response.
balance is the balance of the EVM denomination.
code_hash is the hex-formatted code bytes from the EOA.
nonce is the account's sequence number.
const response = await fetch('https://zetachain.nownodes.io/ethermint/evm/v1/account/{address}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "balance": "text", "code_hash": "text", "nonce": "text" }