send_transaction_by_eip1559
发送自定义 EIP-1559 交易。
方法定义
参数说明
参数 | 类型 | 说明 |
---|---|---|
to | Optional[ChecksumAddress] | 接收者地址,为 None 时表示创建合约 |
data | HexBytes | 交易数据,默认为空 |
value | Wei | 发送的原生代币数量,默认为 0 |
base_fee | Optional[Wei] | 基础费用,默认使用链上当前 gas_price |
max_priority_fee | Optional[Wei] | 最高优先费用,默认使用链上建议值 |
gas_limit | int | Gas 最大使用量,默认为 500000 |
返回值
返回值格式与 send_transaction 相同。
示例代码
最后更新于