Return the balance of the account of the given address.
(self, account: Address)
| 1113 | |
| 1114 | # FIXME: shouldn't return `TokenAmount` |
| 1115 | def balance(self, account: Address) -> TokenAmount: |
| 1116 | """Return the balance of the account of the given address.""" |
| 1117 | return TokenAmount(self.web3.eth.get_balance(account, BLOCK_ID_PENDING)) |
| 1118 | |
| 1119 | def parity_get_pending_transaction_hash_by_nonce( |
| 1120 | self, address: AddressHex, nonce: Nonce |
no test coverage detected