From 18acad5c7d94656093d6ebcc9f9555d4aa93881e Mon Sep 17 00:00:00 2001 From: David Cauchi <13139524+davidcauchi@users.noreply.github.com> Date: Tue, 14 May 2024 18:40:36 +0200 Subject: [PATCH 1/2] Enables Mode (#952) --- networks/known_networks.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/networks/known_networks.go b/networks/known_networks.go index b58cb2653..b35f04870 100644 --- a/networks/known_networks.go +++ b/networks/known_networks.go @@ -799,6 +799,34 @@ var ( DefaultGasLimit: 6000000, } + ModeSepolia = blockchain.EVMNetwork{ + Name: "Mode Sepolia", + SupportsEIP1559: true, + ClientImplementation: blockchain.EthereumClientImplementation, + ChainID: 919, + Simulated: false, + ChainlinkTransactionLimit: 5000, + Timeout: blockchain.StrDuration{Duration: 2 * time.Minute}, + MinimumConfirmations: 1, + GasEstimationBuffer: 1000, + FinalityTag: true, + DefaultGasLimit: 6000000, + } + + ModeMainnet = blockchain.EVMNetwork{ + Name: "Mode Mainnet", + SupportsEIP1559: true, + ClientImplementation: blockchain.EthereumClientImplementation, + ChainID: 34443, + Simulated: false, + ChainlinkTransactionLimit: 5000, + Timeout: blockchain.StrDuration{Duration: 2 * time.Minute}, + MinimumConfirmations: 1, + GasEstimationBuffer: 1000, + FinalityTag: true, + DefaultGasLimit: 6000000, + } + MappedNetworks = map[string]blockchain.EVMNetwork{ "SIMULATED": SimulatedEVM, "SIMULATED_1": SimulatedEVMNonDev1, @@ -855,6 +883,8 @@ var ( "NEXON_STAGE": NexonStage, "GNOSIS_CHIADO": GnosisChiado, "GNOSIS_MAINNET": GnosisMainnet, + "MODE_SEPOLIA": ModeSepolia, + "MODE_MAINNET": ModeMainnet, } ) From c3edc254a6eca360c5beb2dde0b0be10ff34ea5e Mon Sep 17 00:00:00 2001 From: David Cauchi <13139524+davidcauchi@users.noreply.github.com> Date: Tue, 14 May 2024 21:54:26 +0200 Subject: [PATCH 2/2] Enables Blast (#951) --- networks/known_networks.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/networks/known_networks.go b/networks/known_networks.go index b35f04870..2da5ec01a 100644 --- a/networks/known_networks.go +++ b/networks/known_networks.go @@ -827,6 +827,34 @@ var ( DefaultGasLimit: 6000000, } + BlastSepolia = blockchain.EVMNetwork{ + Name: "Blast Sepolia", + SupportsEIP1559: true, + ClientImplementation: blockchain.EthereumClientImplementation, + ChainID: 168587773, + Simulated: false, + ChainlinkTransactionLimit: 5000, + Timeout: blockchain.StrDuration{Duration: 2 * time.Minute}, + MinimumConfirmations: 1, + GasEstimationBuffer: 10000, + FinalityTag: true, + DefaultGasLimit: 6000000, + } + + BlastMainnet = blockchain.EVMNetwork{ + Name: "Blast Mainnet", + SupportsEIP1559: true, + ClientImplementation: blockchain.EthereumClientImplementation, + ChainID: 81457, + Simulated: false, + ChainlinkTransactionLimit: 5000, + Timeout: blockchain.StrDuration{Duration: 2 * time.Minute}, + MinimumConfirmations: 1, + GasEstimationBuffer: 10000, + FinalityTag: true, + DefaultGasLimit: 6000000, + } + MappedNetworks = map[string]blockchain.EVMNetwork{ "SIMULATED": SimulatedEVM, "SIMULATED_1": SimulatedEVMNonDev1, @@ -883,6 +911,8 @@ var ( "NEXON_STAGE": NexonStage, "GNOSIS_CHIADO": GnosisChiado, "GNOSIS_MAINNET": GnosisMainnet, + "BLAST_SEPOLIA": BlastSepolia, + "BLAST_MAINNET": BlastMainnet, "MODE_SEPOLIA": ModeSepolia, "MODE_MAINNET": ModeMainnet, }