Chain
Chain 是 EVM 链实例,后续的所有链上交互操作都将发往该链处理。
成员变量
chain_id
: 链 IDprovider
: web3.py 原生的 HTTPProvider 实例eth
: HTTPProvider 实例中的 eth 模块
方法列表
init: 初始化 Chain 实例
get_chain_information: 获取链基本信息
get_block_information: 获取区块信息
get_transaction_receipt_by_hash: 通过交易哈希获取交易回执
get_transaction_receipt_by_block_id_and_index: 通过区块和索引获取交易回执
get_balance: 获取账户余额
get_code: 获取合约字节码
get_storage: 获取存储值
dump_storage: 批量获取存储值
最后更新于