Skip to content

Commit

Permalink
support USDT Arbitrum<>Mantle transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Oct 24, 2023
1 parent 2678b3c commit 180c1b9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
9 changes: 9 additions & 0 deletions packages/apps/src/config/chains/arbitrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,14 @@ export const arbitrumChain: ChainConfig = {
logo: "ring.svg",
cross: [{ target: { network: "ethereum", symbol: "RING" }, bridge: { category: "lnbridgev20-opposite" } }],
},
{
decimals: 18,
symbol: "USDT",
name: "USDT",
type: "erc20",
address: "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
logo: "usdt.svg",
cross: [{ target: { network: "mantle", symbol: "USDT" }, bridge: { category: "lnbridgev20-default" } }],
},
],
};
12 changes: 11 additions & 1 deletion packages/apps/src/config/chains/mantle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,15 @@ export const mantleChain: ChainConfig = {
url: "https://explorer.mantle.xyz/",
},
},
tokens: [],
tokens: [
{
decimals: 18,
symbol: "USDT",
name: "USDT",
type: "erc20",
address: "0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE",
logo: "usdt.svg",
cross: [{ target: { network: "arbitrum", symbol: "USDT" }, bridge: { category: "lnbridgev20-default" } }],
},
],
};

0 comments on commit 180c1b9

Please sign in to comment.