Skip to content

Commit

Permalink
Adjust default maxPriorityFeePerGas to 1.5 gwei.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Mar 2, 2022
1 parent c2a6a01 commit 33a029e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abstract-provider/src.ts/index.ts
Expand Up @@ -246,7 +246,7 @@ export abstract class Provider implements OnceBlockable {
// We may want to compute this more accurately in the future,
// using the formula "check if the base fee is correct".
// See: https://eips.ethereum.org/EIPS/eip-1559
maxPriorityFeePerGas = BigNumber.from("2500000000");
maxPriorityFeePerGas = BigNumber.from("1500000000");
maxFeePerGas = block.baseFeePerGas.mul(2).add(maxPriorityFeePerGas);
}

Expand Down

0 comments on commit 33a029e

Please sign in to comment.