Balances

Balance queries the balance of a the EVM denomination for a single EthAccount.

GET//rest.origin.uptick.network/ethermint/evm/v1/balances/{address}
Path parameters
address*string

address is the ethereum hex address to query the balance for.

Response

A successful response.

Body
balancestring

balance is the balance of the EVM denomination.

Request
const response = await fetch('//rest.origin.uptick.network/ethermint/evm/v1/balances/{address}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "balance": "text"
}

Last updated