File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
data-transport-layer/src/utils Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ REPO=$DIR/..
66IS_VERIFIER=
77ROLLUP_SYNC_SERVICE_ENABLE=true
88DATADIR=$HOME /.ethereum
9- TARGET_GAS_LIMIT=9000000
9+ TARGET_GAS_LIMIT=10000000
1010CHAIN_ID=10
1111ETH1_CTC_DEPLOYMENT_HEIGHT=12410807
1212ETH1_L1_GATEWAY_ADDRESS=0xe681F80966a8b1fFadECf8068bD6F99034791c95
Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ IPC_DISABLE=true
2929NETWORK_ID = 420
3030NO_USB = true
3131NO_DISCOVER = true
32- TARGET_GAS_LIMIT = 9000000
32+ TARGET_GAS_LIMIT = 10000000
3333USING_OVM = true
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ export const makeStateDump = async (cfg: RollupDeployConfig): Promise<any> => {
9999 deploymentSigner : signer ,
100100 ovmGasMeteringConfig : {
101101 minTransactionGasLimit : 0 ,
102- maxTransactionGasLimit : 9_000_000 ,
102+ maxTransactionGasLimit : 10_000_000 ,
103103 maxGasPerQueuePerEpoch : 1_000_000_000_000 ,
104104 secondsPerEpoch : 0 ,
105105 } ,
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import * as types from 'hardhat/internal/core/params/argumentTypes'
55
66const DEFAULT_L1_BLOCK_TIME_SECONDS = 15
77const DEFAULT_CTC_FORCE_INCLUSION_PERIOD_SECONDS = 60 * 60 * 24 * 30 // 30 days
8- const DEFAULT_CTC_MAX_TRANSACTION_GAS_LIMIT = 9_000_000
8+ const DEFAULT_CTC_MAX_TRANSACTION_GAS_LIMIT = 10_000_000
99const DEFAULT_EM_MIN_TRANSACTION_GAS_LIMIT = 50_000
10- const DEFAULT_EM_MAX_TRANSACTION_GAS_LIMIT = 9_000_000
10+ const DEFAULT_EM_MAX_TRANSACTION_GAS_LIMIT = 10_000_000
1111const DEFAULT_EM_MAX_GAS_PER_QUEUE_PER_EPOCH = 250_000_000
1212const DEFAULT_EM_SECONDS_PER_EPOCH = 0
1313const DEFAULT_EM_OVM_CHAIN_ID = 420
Original file line number Diff line number Diff line change 1- export const SEQUENCER_GAS_LIMIT = 9_000_000 // TODO: Remove and use value from event.
1+ export const SEQUENCER_GAS_LIMIT = 10_000_000 // TODO: Remove and use value from event.
22export const SEQUENCER_ENTRYPOINT_ADDRESS =
33 '0x4200000000000000000000000000000000000005'
You can’t perform that action at this time.
0 commit comments