Bank
Last updated
Was this helpful?
Was this helpful?
function balance(
address acc,
string memory denom
) external view returns (uint256 amount);function name(
string memory denom
) external view returns (string memory response);function symbol(
string memory denom
) external view returns (string memory response);function decimals(
string memory denom
) external view returns (uint8 response);function supply(
string memory denom
) external view returns (uint256 response);