Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/sdk-coin-tempo/src/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const VALID_PUBLIC_KEY_REGEX = /^[A-Fa-f0-9]{64}$/;
* Tempo Chain IDs
*/
export const TEMPO_CHAIN_IDS = {
TESTNET: 42429, // Andantino testnet
// MAINNET: TBD
MAINNET: 4217,
TESTNET: 42431, // Moderato testnet
} as const;

/**
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/src/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ export class CoinMap {
5734951: 'jovayeth',
2019775: 'tjovayeth',
5042002: 'tarcusdc',
42428: 'tempo',
42429: 'ttempo',
4217: 'tempo',
42431: 'ttempo',
5000: 'mantle',
5003: 'tmantle',
20993: 'fluenteth',
Expand Down
16 changes: 8 additions & 8 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2310,21 +2310,21 @@ class ArcUSDC extends Mainnet implements EthereumNetwork {
class Tempo extends Mainnet implements EthereumNetwork {
name = 'Tempo';
family = CoinFamily.TEMPO;
explorerUrl = 'https://scout.tempo.xyz/tx/'; // TODO: Update with actual mainnet explorer when available
accountExplorerUrl = 'https://scout.tempo.xyz/address/'; // TODO: Update with actual mainnet explorer when available
chainId = 42428; // TODO: Update with actual mainnet chain ID when available
explorerUrl = 'https://explore.mainnet.tempo.xyz/tx/';
accountExplorerUrl = 'https://explore.mainnet.tempo.xyz/address/';
chainId = 4217;
nativeCoinOperationHashPrefix = 'TEMPO';
tokenOperationHashPrefix = 'TEMPO-TIP20';
}

class TempoTestnet extends Testnet implements EthereumNetwork {
name = 'Tempo Testnet';
family = CoinFamily.TEMPO;
explorerUrl = 'https://scout.tempo.xyz/tx/';
accountExplorerUrl = 'https://scout.tempo.xyz/address/';
chainId = 42429;
nativeCoinOperationHashPrefix = '42429';
tokenOperationHashPrefix = '42429';
explorerUrl = 'https://explore.tempo.xyz/tx/';
accountExplorerUrl = 'https://explore.tempo.xyz/address/';
chainId = 42431;
nativeCoinOperationHashPrefix = '42431';
tokenOperationHashPrefix = '42431';
}

export const Networks = {
Expand Down