Skip to content

Commit 72d80f5

Browse files
committed
feat: add tempo pathusd and usdc tokens
Ticket: CECHO-303
1 parent 639a55d commit 72d80f5

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ import {
4343
tstellarToken,
4444
tsuiToken,
4545
ttaoToken,
46+
tip20Token,
4647
ttip20Token,
4748
ttronToken,
4849
tvetNFTCollection,
@@ -2907,6 +2908,24 @@ export const allCoinsAndTokens = [
29072908
BaseUnit.ETH,
29082909
TEMPO_FEATURES
29092910
),
2911+
tip20Token(
2912+
'63eab677-8bf3-4079-8bb1-f57666ff21e5',
2913+
'tempo:pathusd',
2914+
'pathUSD',
2915+
6,
2916+
'0x20c0000000000000000000000000000000000000',
2917+
UnderlyingAsset['tempo:pathusd'],
2918+
TEMPO_FEATURES
2919+
),
2920+
tip20Token(
2921+
'39a57b34-0ce5-40d6-a231-c53a287491a6',
2922+
'tempo:usdc',
2923+
'USDC',
2924+
6,
2925+
'0x20c000000000000000000000b9537d11c60e8b50',
2926+
UnderlyingAsset['tempo:usdc'],
2927+
TEMPO_FEATURES
2928+
),
29102929
// Tempo TIP20 testnet tokens
29112930
ttip20Token(
29122931
'e1872fd8-14ee-4dc9-bc5e-fd52552d9c60',

modules/statics/src/base.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3616,6 +3616,10 @@ export enum UnderlyingAsset {
36163616
'canton:cbtc' = 'canton:cbtc',
36173617
'canton:usdxlr' = 'canton:usdxlr',
36183618

3619+
// Tempo mainnet tokens
3620+
'tempo:pathusd' = 'tempo:pathusd',
3621+
'tempo:usdc' = 'tempo:usdc',
3622+
36193623
// Tempo testnet tokens
36203624
'ttempo:pathusd' = 'ttempo:pathusd',
36213625
'ttempo:alphausd' = 'ttempo:alphausd',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import {
4040
tofcTonToken,
4141
ofcSuiToken,
4242
tofcSuiToken,
43+
ofcTempoToken,
4344
tofcTempoToken,
4445
} from '../ofc';
4546
import { UnderlyingAsset, CoinKind, CoinFeature } from '../base';
@@ -4070,6 +4071,15 @@ export const ofcCoins = [
40704071
// New SUI OFC token
40714072
ofcSuiToken('1e01eb3d-2573-4662-aa5e-4c390e4a9b38', 'ofcsui:dmc', 'DeLorean', 9, UnderlyingAsset['sui:dmc']),
40724073
ofcSuiToken('e4f5a6b7-8c9d-4eaf-82a3-4b5c6d7e8f9a', 'ofcsui:mmt', 'Momentum', 9, UnderlyingAsset['sui:mmt']),
4074+
// Tempo mainnet OFC tokens
4075+
ofcTempoToken(
4076+
'61cbeade-67a7-4f18-b60d-bca7bf66d97e',
4077+
'ofctempo:pathusd',
4078+
'pathUSD',
4079+
6,
4080+
UnderlyingAsset['tempo:pathusd']
4081+
),
4082+
ofcTempoToken('c9a90ee0-6546-413c-9cbe-94fdc14985c5', 'ofctempo:usdc', 'USDC', 6, UnderlyingAsset['tempo:usdc']),
40734083
// Tempo testnet OFC tokens
40744084
tofcTempoToken(
40754085
'7912e76e-5a5c-4f1b-86e9-1fc2a51f5a98',

0 commit comments

Comments
 (0)