Support EIP-1559 transaction for Polygon & Avalanche

Most of the transaction on those chains have same maxFeePerGas and maxPriorityFeePerGas value
This commit is contained in:
Ayanami 2022-01-23 16:26:24 +09:00
parent 93fafe0178
commit e865eb9af8
No known key found for this signature in database
GPG Key ID: 0CABDF03077D92E4
1 changed files with 10 additions and 0 deletions

10
cli.js
View File

@ -85,6 +85,16 @@ async function generateTransaction(to, encodedData, value = 0) {
gas : gasLimit,
data : encodedData
}
} else if (netId == 137 || netId == 43114) {
tx = {
to : to,
value : value,
nonce : nonce,
maxFeePerGas : gasPrice,
maxPriorityFeePerGas : gasPrice,
gas : gasLimit,
data : encodedData
}
} else {
tx = {
to : to,