获取当前账户的原生代币余额。
def get_self_balance(self) -> Optional[Wei]
无
Optional[Wei]
当前账户的原生代币余额
# 获取账户余额 balance = account.get_self_balance() if balance is not None: print(f"Balance: {Web3.from_wei(balance, 'ether')} ETH")
最后更新于5天前