@@ -2553,6 +2553,26 @@ class TempoTestnet extends Testnet implements EthereumNetwork {
25532553 tokenOperationHashPrefix = '42431' ;
25542554}
25552555
2556+ class Boba extends Mainnet implements EthereumNetwork {
2557+ name = 'Boba' ;
2558+ family = CoinFamily . BOBAETH ;
2559+ explorerUrl = 'https://bobascan.com/blockchain/transactions' ;
2560+ accountExplorerUrl = 'https://bobascan.com/blockchain' ;
2561+ chainId = 288 ;
2562+ nativeCoinOperationHashPrefix = '288' ;
2563+ tokenOperationHashPrefix = '288' ;
2564+ }
2565+
2566+ class BobaTestnet extends Testnet implements EthereumNetwork {
2567+ name = 'Boba Testnet' ;
2568+ family = CoinFamily . BOBAETH ;
2569+ explorerUrl = 'https://bobascan.com/blockchain/transactions' ;
2570+ accountExplorerUrl = 'https://bobascan.com/blockchain' ;
2571+ chainId = 288 ;
2572+ nativeCoinOperationHashPrefix = '288' ;
2573+ tokenOperationHashPrefix = '288' ;
2574+ }
2575+
25562576/**
25572577 * Constructor options for {@link DynamicNetwork}.
25582578 * Accepts string-typed `type` and `family` so AMS JSON can be passed directly.
@@ -2763,6 +2783,7 @@ export const Networks = {
27632783 zkSync : Object . freeze ( new ZkSync ( ) ) ,
27642784 zkSyncEra : Object . freeze ( new ZkSyncEra ( ) ) ,
27652785 unieth : Object . freeze ( new Unieth ( ) ) ,
2786+ boba : Object . freeze ( new Boba ( ) ) ,
27662787 } ,
27672788 test : {
27682789 ada : Object . freeze ( new AdaTestnet ( ) ) ,
@@ -2889,6 +2910,7 @@ export const Networks = {
28892910 zkSync : Object . freeze ( new ZkSyncTestnet ( ) ) ,
28902911 zkSyncEra : Object . freeze ( new ZkSyncEraTestnet ( ) ) ,
28912912 unieth : Object . freeze ( new UniethTestnet ( ) ) ,
2913+ boba : Object . freeze ( new BobaTestnet ( ) ) ,
28922914 } ,
28932915} ;
28942916
0 commit comments