Skip to content

Commit

Permalink
TT-823: Adding Nexon DEV chain (#819)
Browse files Browse the repository at this point in the history
  • Loading branch information
iljapavlovs authored Jan 17, 2024
1 parent 160a4fa commit 32d3586
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions networks/known_networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,20 @@ var (
DefaultGasLimit: 6000000,
}

NexonDev blockchain.EVMNetwork = blockchain.EVMNetwork{
Name: "Nexon Dev",
SupportsEIP1559: true,
ClientImplementation: blockchain.EthereumClientImplementation,
ChainID: 955081,
Simulated: false,
ChainlinkTransactionLimit: 5000,
Timeout: blockchain.JSONStrDuration{Duration: time.Minute},
MinimumConfirmations: 1,
GasEstimationBuffer: 1000,
FinalityTag: true,
DefaultGasLimit: 6000000,
}

MappedNetworks = map[string]blockchain.EVMNetwork{
"SIMULATED": SimulatedEVM,
"SIMULATED_1": SimulatedEVMNonDev1,
Expand Down Expand Up @@ -710,6 +724,7 @@ var (
"WEMIX_MAINNET": WeMixMainnet,
"KROMA_SEPOLIA": KromaSepolia,
"KROMA_MAINNET": KromaMainnet,
"NEXON_DEV": NexonDev,
}
)

Expand Down

0 comments on commit 32d3586

Please sign in to comment.