Skip to content

Commit

Permalink
Enable chain
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcauchi committed Sep 20, 2024
1 parent a197ef9 commit ca230e6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/networks/known_networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -1007,6 +1007,21 @@ var (
DefaultGasLimit: 6000000,
}

SoneiumSepolia = blockchain.EVMNetwork{
Name: "Soneium Sepolia",
SupportsEIP1559: true,
ClientImplementation: blockchain.OptimismClientImplementation,
ChainID: 1946,
Simulated: false,
ChainlinkTransactionLimit: 5000,
Timeout: blockchain.StrDuration{Duration: 3 * time.Minute},
MinimumConfirmations: 1,
GasEstimationBuffer: 10000,
DefaultGasLimit: 6000000,
FinalityTag: true,
FinalityDepth: 200,
}

MappedNetworks = map[string]blockchain.EVMNetwork{
"SIMULATED": SimulatedEVM,
"ANVIL": Anvil,
Expand Down Expand Up @@ -1076,6 +1091,7 @@ var (
"XLAYER_SEPOLIA": XLayerSepolia,
"XLAYER_MAINNET": XLayerMainnet,
"TREASURE_RUBY": TreasureRuby,
"SONEIUM_SEPOLIA": SoneiumSepolia,
}
)

Expand Down

0 comments on commit ca230e6

Please sign in to comment.