Skip to content

Commit

Permalink
fix: blast chain ID
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja committed Jul 8, 2024
1 parent 049e450 commit daeac7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark/EstimateMaxCount.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract EstimateMaxCount is Test {
chains.push(ChainInfo({ blockGasLimit: 32_000_000, chainId: 42_161 })); // Arbitrum
chains.push(ChainInfo({ blockGasLimit: 15_000_000, chainId: 43_114 })); // Avalanche
chains.push(ChainInfo({ blockGasLimit: 60_000_000, chainId: 8453 })); // Base
chains.push(ChainInfo({ blockGasLimit: 30_000_000, chainId: 238 })); // Blast
chains.push(ChainInfo({ blockGasLimit: 30_000_000, chainId: 81_457 })); // Blast
chains.push(ChainInfo({ blockGasLimit: 138_000_000, chainId: 56 })); // BNB
chains.push(ChainInfo({ blockGasLimit: 30_000_000, chainId: 1 })); // Ethereum
chains.push(ChainInfo({ blockGasLimit: 17_000_000, chainId: 100 })); // Gnosis
Expand Down
4 changes: 2 additions & 2 deletions script/Base.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ contract BaseScript is Script {
trancheCountMap[8453] = 2270;

// Blast chain ID.
segmentCountMap[238] = 1080;
trancheCountMap[238] = 1120;
segmentCountMap[81457] = 1080;
trancheCountMap[81457] = 1120;

// BNB chain ID.
segmentCountMap[56] = 4820;
Expand Down

0 comments on commit daeac7c

Please sign in to comment.