0%

eth | TypeError「 Unknown kwargs 'gasPrice'」

EIP-1559 新规范的参数不同于旧的 gas 策略,它不再需要 gasPrice 字段,而是使用 maxFeePerGas/maxPriorityFeePerGas 的组合(type 为可选,会根据交易参数隐式设置类型)。

1
2
tx_dic["nonce"] = nonce
tx_dic['gasPrice'] = w3.eth.gasPrice

变成了

1
2
tx_dic["nonce"] = nonce
tx_dic['maxFeePerGas'] = w3.eth.gasPrice
请我喝杯咖啡吧~