Skip to content

Commit b9934cc

Browse files
GeObtsclaude
andcommitted
fix(deploy): fill in Base Sepolia VRF gas lane
Looked up Base Sepolia keyHash from Chainlink VRF v2.5 docs and filled in the bytes32(0) TODO placeholder. Verified value: 0x9e1344a1247c8a1785d0a4681a27152bffdb43666ae5bf7d14d24a5efd44bf71 Source: https://docs.chain.link/vrf/v2-5/supported-networks#base-sepolia-testnet Pre-flight will now pass for Base Sepolia. Arbitrum Sepolia gasLane remains bytes32(0) since we're skipping that testnet. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b946131 commit b9934cc

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

script/Deploy.s.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,9 @@ contract Deploy is Script {
166166
return ChainConfig({
167167
name: "Base Sepolia",
168168
vrfCoordinator: 0x5C210eF41CD1a72de73bF76eC39637bB0d3d7BEE,
169-
// TODO: Fill in Base Sepolia gas lane keyHash from
169+
// Verified against Chainlink VRF v2.5 docs:
170170
// https://docs.chain.link/vrf/v2-5/supported-networks#base-sepolia-testnet
171-
// Set to bytes32(0) so pre-flight reverts loudly until set.
172-
gasLane: bytes32(0),
171+
gasLane: 0x9e1344a1247c8a1785d0a4681a27152bffdb43666ae5bf7d14d24a5efd44bf71,
173172
usdc: 0x036CbD53842c5426634e7929541eC2318f3dCF7e,
174173
mxnb: address(0)
175174
});

0 commit comments

Comments
 (0)