Skip to content

Commit 27d8082

Browse files
committed
chore(tempo): update tempo statics config
Ticket: WIN-8210 TICKET: WIN-8210
1 parent 5bb25d9 commit 27d8082

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

modules/sdk-coin-tempo/src/lib/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export const VALID_PUBLIC_KEY_REGEX = /^[A-Fa-f0-9]{64}$/;
1212
* Tempo Chain IDs
1313
*/
1414
export 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
/**

modules/statics/src/map.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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',

modules/statics/src/networks.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2310,21 +2310,21 @@ class ArcUSDC extends Mainnet implements EthereumNetwork {
23102310
class 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

23202320
class 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

23302330
export const Networks = {

0 commit comments

Comments
 (0)