@@ -2512,6 +2512,24 @@ class PrividiumETHTestnet extends Testnet implements EthereumNetwork {
25122512 nativeCoinOperationHashPrefix = '8022834' ;
25132513}
25142514
2515+ class InkEth extends Mainnet implements EthereumNetwork {
2516+ name = 'INK Mainnet' ;
2517+ family = CoinFamily . INKETH ;
2518+ explorerUrl = 'https://explorer.inkonchain.com/tx/' ;
2519+ accountExplorerUrl = 'https://explorer.inkonchain.com/address/' ;
2520+ chainId = 57073 ;
2521+ nativeCoinOperationHashPrefix = '57073' ;
2522+ }
2523+
2524+ class InkEthTestnet extends Testnet implements EthereumNetwork {
2525+ name = 'INK Testnet' ;
2526+ family = CoinFamily . INKETH ;
2527+ explorerUrl = 'https://explorer-sepolia.inkonchain.com/tx/' ;
2528+ accountExplorerUrl = 'https://explorer-sepolia.inkonchain.com/address/' ;
2529+ chainId = 763373 ;
2530+ nativeCoinOperationHashPrefix = '763373' ;
2531+ }
2532+
25152533class PlumeTestnet extends Testnet implements EthereumNetwork {
25162534 name = 'PlumeTestnet' ;
25172535 family = CoinFamily . PLUME ;
@@ -2751,6 +2769,7 @@ export const Networks = {
27512769 hedera : Object . freeze ( new Hedera ( ) ) ,
27522770 hederaEVM : Object . freeze ( new HederaEVM ( ) ) ,
27532771 hemieth : Object . freeze ( new HemiEth ( ) ) ,
2772+ inketh : Object . freeze ( new InkEth ( ) ) ,
27542773 hppeth : Object . freeze ( new Hppeth ( ) ) ,
27552774 prividiumeth : Object . freeze ( new PrividiumETH ( ) ) ,
27562775 icp : Object . freeze ( new Icp ( ) ) ,
@@ -2880,6 +2899,7 @@ export const Networks = {
28802899 prividiumeth : Object . freeze ( new PrividiumETHTestnet ( ) ) ,
28812900 hederaEVM : Object . freeze ( new HederaEVMTestnet ( ) ) ,
28822901 hemieth : Object . freeze ( new HemiEthTestnet ( ) ) ,
2902+ inketh : Object . freeze ( new InkEthTestnet ( ) ) ,
28832903 icp : Object . freeze ( new IcpTestnet ( ) ) ,
28842904 ip : Object . freeze ( new IPTestnet ( ) ) ,
28852905 initia : Object . freeze ( new InitiaTestnet ( ) ) ,
0 commit comments