File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ export const VALID_PUBLIC_KEY_REGEX = /^[A-Fa-f0-9]{64}$/;
1212 * Tempo Chain IDs
1313 */
1414export const TEMPO_CHAIN_IDS = {
15- TESTNET : 42429 , // Andantino testnet
16- // MAINNET: TBD
15+ MAINNET : 4217 ,
16+ TESTNET : 42431 , // Moderato testnet
1717} as const ;
1818
1919/**
Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ export class CoinMap {
163163 5734951 : 'jovayeth' ,
164164 2019775 : 'tjovayeth' ,
165165 5042002 : 'tarcusdc' ,
166- 42428 : 'tempo' ,
167- 42429 : 'ttempo' ,
166+ 4217 : 'tempo' ,
167+ 42431 : 'ttempo' ,
168168 5000 : 'mantle' ,
169169 5003 : 'tmantle' ,
170170 20993 : 'fluenteth' ,
Original file line number Diff line number Diff line change @@ -2310,21 +2310,21 @@ class ArcUSDC extends Mainnet implements EthereumNetwork {
23102310class Tempo extends Mainnet implements EthereumNetwork {
23112311 name = 'Tempo' ;
23122312 family = CoinFamily . TEMPO ;
2313- explorerUrl = 'https://scout. tempo.xyz/tx/' ; // TODO: Update with actual mainnet explorer when available
2314- accountExplorerUrl = 'https://scout. tempo.xyz/address/' ; // TODO: Update with actual mainnet explorer when available
2315- chainId = 42428 ; // TODO: Update with actual mainnet chain ID when available
2313+ explorerUrl = 'https://explore.mainnet. tempo.xyz/tx/' ;
2314+ accountExplorerUrl = 'https://explore.mainnet. tempo.xyz/address/' ;
2315+ chainId = 4217 ;
23162316 nativeCoinOperationHashPrefix = 'TEMPO' ;
23172317 tokenOperationHashPrefix = 'TEMPO-TIP20' ;
23182318}
23192319
23202320class TempoTestnet extends Testnet implements EthereumNetwork {
23212321 name = 'Tempo Testnet' ;
23222322 family = CoinFamily . TEMPO ;
2323- explorerUrl = 'https://scout .tempo.xyz/tx/' ;
2324- accountExplorerUrl = 'https://scout .tempo.xyz/address/' ;
2325- chainId = 42429 ;
2326- nativeCoinOperationHashPrefix = '42429 ' ;
2327- tokenOperationHashPrefix = '42429 ' ;
2323+ explorerUrl = 'https://explore .tempo.xyz/tx/' ;
2324+ accountExplorerUrl = 'https://explore .tempo.xyz/address/' ;
2325+ chainId = 42431 ;
2326+ nativeCoinOperationHashPrefix = '42431 ' ;
2327+ tokenOperationHashPrefix = '42431 ' ;
23282328}
23292329
23302330export const Networks = {
You can’t perform that action at this time.
0 commit comments