@@ -2229,6 +2229,26 @@ class ArcTestnet extends Testnet implements EthereumNetwork {
22292229 nativeCoinOperationHashPrefix = '5042002' ;
22302230}
22312231
2232+ class Tempo extends Mainnet implements EthereumNetwork {
2233+ name = 'Tempo' ;
2234+ family = CoinFamily . TEMPO ;
2235+ explorerUrl = 'https://scout.tempo.xyz/tx/' ; // TODO: Update with actual mainnet explorer when available
2236+ accountExplorerUrl = 'https://scout.tempo.xyz/address/' ; // TODO: Update with actual mainnet explorer when available
2237+ chainId = 42428 ; // TODO: Update with actual mainnet chain ID when available
2238+ nativeCoinOperationHashPrefix = 'TEMPO' ;
2239+ tokenOperationHashPrefix = 'TEMPO-TIP20' ;
2240+ }
2241+
2242+ class TempoTestnet extends Testnet implements EthereumNetwork {
2243+ name = 'Tempo Testnet' ;
2244+ family = CoinFamily . TEMPO ;
2245+ explorerUrl = 'https://scout.tempo.xyz/tx/' ;
2246+ accountExplorerUrl = 'https://scout.tempo.xyz/address/' ;
2247+ chainId = 42429 ;
2248+ nativeCoinOperationHashPrefix = '42429' ;
2249+ tokenOperationHashPrefix = '42429' ;
2250+ }
2251+
22322252export const Networks = {
22332253 main : {
22342254 ada : Object . freeze ( new Ada ( ) ) ,
@@ -2322,6 +2342,7 @@ export const Networks = {
23222342 soneium : Object . freeze ( new Soneium ( ) ) ,
23232343 susd : Object . freeze ( new SUSD ( ) ) ,
23242344 tao : Object . freeze ( new Bittensor ( ) ) ,
2345+ tempo : Object . freeze ( new Tempo ( ) ) ,
23252346 tia : Object . freeze ( new Tia ( ) ) ,
23262347 ton : Object . freeze ( new Ton ( ) ) ,
23272348 trx : Object . freeze ( new Trx ( ) ) ,
@@ -2433,6 +2454,7 @@ export const Networks = {
24332454 susd : Object . freeze ( new SUSDTestnet ( ) ) ,
24342455 coreum : Object . freeze ( new CoreumTestnet ( ) ) ,
24352456 tao : Object . freeze ( new BittensorTestnet ( ) ) ,
2457+ tempo : Object . freeze ( new TempoTestnet ( ) ) ,
24362458 tia : Object . freeze ( new TiaTestnet ( ) ) ,
24372459 ton : Object . freeze ( new TonTestnet ( ) ) ,
24382460 trx : Object . freeze ( new TrxTestnet ( ) ) ,
0 commit comments