Skip to content

Commit 3cc2afb

Browse files
authored
chore: Reduce default max gas price config (#7)
1 parent c74cae9 commit 3cc2afb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config.example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,16 @@ global:
6565
gasBalanceUpdateInterval: 50 # Number of transactions after which to update the Underwriter gas balance from the rpc.
6666

6767
# EIP-1559 Transactions
68-
maxFeePerGas: '200000000000' # 'maxFeePerGas' set for all transactions (for chains that support eip-1559)
68+
maxFeePerGas: '10000000000' # 'maxFeePerGas' set for all transactions (for chains that support eip-1559)
6969

70-
maxAllowedPriorityFeePerGas: '100000000000' # Upper bound to the 'maxPriorityFeePerGas' set on transactions (for chains that support eip-1559)
70+
maxAllowedPriorityFeePerGas: '5000000000' # Upper bound to the 'maxPriorityFeePerGas' set on transactions (for chains that support eip-1559)
7171
maxPriorityFeeAdjustmentFactor:
7272
1.01 # Decimal factor used to adjust the 'maxPriorityFeePerGas' returned by 'getFeeData()'.
7373
# The resulting value is set as the 'maxPriorityFeePerGas' property of the transaction
7474
# if it is smaller than the configuration property 'maxAllowedPriorityFeePerGas' (if set).
7575

7676
# Legacy Transactions
77-
maxAllowedGasPrice: '200000000000' # Upper bound to the 'gasPrice' set on transactions (for chains that do not support eip-1559)
77+
maxAllowedGasPrice: '10000000000' # Upper bound to the 'gasPrice' set on transactions (for chains that do not support eip-1559)
7878
gasPriceAdjustmentFactor:
7979
1.01 # Decimal factor used to adjust the 'gasPrice' returned by 'getFeeData()'. The resulting
8080
# value is set as the 'gasPrice' property of the transaction if it is smaller than the

0 commit comments

Comments
 (0)