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/..
6
6
IS_VERIFIER=
7
7
ROLLUP_SYNC_SERVICE_ENABLE=true
8
8
DATADIR=$HOME /.ethereum
9
- TARGET_GAS_LIMIT=9000000
9
+ TARGET_GAS_LIMIT=10000000
10
10
CHAIN_ID=10
11
11
ETH1_CTC_DEPLOYMENT_HEIGHT=12410807
12
12
ETH1_L1_GATEWAY_ADDRESS=0xe681F80966a8b1fFadECf8068bD6F99034791c95
Original file line number Diff line number Diff line change @@ -33,5 +33,5 @@ IPC_DISABLE=true
33
33
NETWORK_ID = 420
34
34
NO_USB = true
35
35
NO_DISCOVER = true
36
- TARGET_GAS_LIMIT = 9000000
36
+ TARGET_GAS_LIMIT = 10000000
37
37
USING_OVM = true
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export const makeStateDump = async (cfg: RollupDeployConfig): Promise<any> => {
101
101
deploymentSigner : signer ,
102
102
ovmGasMeteringConfig : {
103
103
minTransactionGasLimit : 0 ,
104
- maxTransactionGasLimit : 9_000_000 ,
104
+ maxTransactionGasLimit : 10_000_000 ,
105
105
maxGasPerQueuePerEpoch : 1_000_000_000_000 ,
106
106
secondsPerEpoch : 0 ,
107
107
} ,
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import * as types from 'hardhat/internal/core/params/argumentTypes'
5
5
6
6
const DEFAULT_L1_BLOCK_TIME_SECONDS = 15
7
7
const 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
9
9
const 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
11
11
const DEFAULT_EM_MAX_GAS_PER_QUEUE_PER_EPOCH = 250_000_000
12
12
const DEFAULT_EM_SECONDS_PER_EPOCH = 0
13
13
const 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.
2
2
export const SEQUENCER_ENTRYPOINT_ADDRESS =
3
3
'0x4200000000000000000000000000000000000005'
You can’t perform that action at this time.
0 commit comments