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
58 changes: 58 additions & 0 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2295,6 +2295,7 @@ export const allCoinsAndTokens = [
CoinFeature.EVM_COMPATIBLE_WP,
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.SUPPORTS_ERC20,
]
),
account(
Expand All @@ -2314,8 +2315,65 @@ export const allCoinsAndTokens = [
CoinFeature.EVM_COMPATIBLE_WP,
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.SUPPORTS_ERC20,
]
),
// Mantle mainnet tokens
erc20Token(
'3f20d1d3-3e69-417b-80c8-0c2e3e79934a',
'mantle:usdt',
'USDT',
6,
'0x201eba5cc46d216ce6dc03f6a759e8e766e956ae',
UnderlyingAsset['mantle:usdt'],
Networks.main.mantle
),
erc20Token(
'5c295762-8d8c-4f1d-95df-e0631538c15f',
'mantle:usdc',
'USDC',
6,
'0x09bc4e0d864854c6afb6eb9a9cdf58ac190d0df9',
UnderlyingAsset['mantle:usdc'],
Networks.main.mantle
),
erc20Token(
'5c3f3e85-d804-49a4-9028-8b494cf01e75',
'mantle:usde',
'USDe',
18,
'0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34',
UnderlyingAsset['mantle:usde'],
Networks.main.mantle
),
erc20Token(
'a33599fe-2245-49de-86ab-44eb1755ed30',
'mantle:usdt0',
'USDT0',
6,
'0x779ded0c9e1022225f8e0630b35a9b54be713736',
UnderlyingAsset['mantle:usdt0'],
Networks.main.mantle
),
erc20Token(
'0f6f182b-bdd1-45ca-a894-1c3ded941dcd',
'mantle:ausd',
'AUSD',
6,
'0x00000000efe302beaa2b3e6e1b18d08d69a9012a',
UnderlyingAsset['mantle:ausd'],
Networks.main.mantle
),
// Mantle testnet tokens
erc20Token(
'10fd0f49-d71a-4815-bbd0-ce1ca67b7982',
'tmantle:bgerch',
'BGERCH',
18,
'0x13b62c9cd2b294acbb527335eaf36f85fe37ee55',
UnderlyingAsset['tmantle:bgerch'],
Networks.test.mantle
),
account(
'd7ed1781-23ff-49b7-be6b-7fec13e1c452',
'jovayeth',
Expand Down
10 changes: 10 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2954,6 +2954,16 @@ export enum UnderlyingAsset {
'lineaeth:usdt' = 'lineaeth:usdt',
'lineaeth:usdc' = 'lineaeth:usdc',

// Mantle mainnet tokens
'mantle:usdt' = 'mantle:usdt',
'mantle:usdc' = 'mantle:usdc',
'mantle:usde' = 'mantle:usde',
'mantle:usdt0' = 'mantle:usdt0',
'mantle:ausd' = 'mantle:ausd',

// Mantle testnet tokens
'tmantle:bgerch' = 'tmantle:bgerch',

// Flow mainnet tokens
'flow:weth' = 'flow:weth',
'flow:usdf' = 'flow:usdf',
Expand Down