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
19 changes: 19 additions & 0 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import {
tstellarToken,
tsuiToken,
ttaoToken,
tip20Token,
ttip20Token,
ttronToken,
tvetNFTCollection,
Expand Down Expand Up @@ -2907,6 +2908,24 @@ export const allCoinsAndTokens = [
BaseUnit.ETH,
TEMPO_FEATURES
),
tip20Token(
'63eab677-8bf3-4079-8bb1-f57666ff21e5',
'tempo:pathusd',
'pathUSD',
6,
'0x20c0000000000000000000000000000000000000',
UnderlyingAsset['tempo:pathusd'],
TEMPO_FEATURES
),
tip20Token(
'39a57b34-0ce5-40d6-a231-c53a287491a6',
'tempo:usdc',
'USDC',
6,
'0x20c000000000000000000000b9537d11c60e8b50',
UnderlyingAsset['tempo:usdc'],
TEMPO_FEATURES
),
// Tempo TIP20 testnet tokens
ttip20Token(
'e1872fd8-14ee-4dc9-bc5e-fd52552d9c60',
Expand Down
4 changes: 4 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3616,6 +3616,10 @@ export enum UnderlyingAsset {
'canton:cbtc' = 'canton:cbtc',
'canton:usdxlr' = 'canton:usdxlr',

// Tempo mainnet tokens
'tempo:pathusd' = 'tempo:pathusd',
'tempo:usdc' = 'tempo:usdc',

// Tempo testnet tokens
'ttempo:pathusd' = 'ttempo:pathusd',
'ttempo:alphausd' = 'ttempo:alphausd',
Expand Down
10 changes: 10 additions & 0 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import {
tofcTonToken,
ofcSuiToken,
tofcSuiToken,
ofcTempoToken,
tofcTempoToken,
} from '../ofc';
import { UnderlyingAsset, CoinKind, CoinFeature } from '../base';
Expand Down Expand Up @@ -4070,6 +4071,15 @@ export const ofcCoins = [
// New SUI OFC token
ofcSuiToken('1e01eb3d-2573-4662-aa5e-4c390e4a9b38', 'ofcsui:dmc', 'DeLorean', 9, UnderlyingAsset['sui:dmc']),
ofcSuiToken('e4f5a6b7-8c9d-4eaf-82a3-4b5c6d7e8f9a', 'ofcsui:mmt', 'Momentum', 9, UnderlyingAsset['sui:mmt']),
// Tempo mainnet OFC tokens
ofcTempoToken(
'61cbeade-67a7-4f18-b60d-bca7bf66d97e',
'ofctempo:pathusd',
'pathUSD',
6,
UnderlyingAsset['tempo:pathusd']
),
ofcTempoToken('c9a90ee0-6546-413c-9cbe-94fdc14985c5', 'ofctempo:usdc', 'USDC', 6, UnderlyingAsset['tempo:usdc']),
// Tempo testnet OFC tokens
tofcTempoToken(
'7912e76e-5a5c-4f1b-86e9-1fc2a51f5a98',
Expand Down