Skip to content

Commit

Permalink
Enables Blast
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcauchi committed May 14, 2024
1 parent 3dfcbf7 commit 148f857
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions networks/known_networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,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,
Expand Down Expand Up @@ -855,6 +883,8 @@ var (
"NEXON_STAGE": NexonStage,
"GNOSIS_CHIADO": GnosisChiado,
"GNOSIS_MAINNET": GnosisMainnet,
"BLAST_SEPOLIA": BlastSepolia,
"BLAST_MAINNET": BlastMainnet,
}
)

Expand Down

0 comments on commit 148f857

Please sign in to comment.