Skip to content

Commit 2b1b51d

Browse files
authored
hotfix: bring back USDT(Polkadot) (#1505)
* fix: bring back USDT * fix: updated node version to 20 (#1507)
1 parent b1c35a1 commit 2b1b51d

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.github/workflows/pull-request-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v2
2828
- uses: actions/setup-node@v3
2929
with:
30-
node-version: 18
30+
node-version: 20
3131
- run: npm install -g yarn
3232
- name: Install dependencies (frozen) and build
3333
run: |
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v3
5353
- uses: actions/setup-node@v3
5454
with:
55-
node-version: 18
55+
node-version: 20
5656
- name: Install dependencies
5757
run: yarn install --frozen-lockfile
5858
- name: Install Playwright Browsers

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ astar-collator
5454
# Chopstick binaries
5555
db.sqlite*
5656
.vercel
57+
CLAUDE.md

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

src/modules/xcm/tokens/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,16 @@ export const xcmToken = {
6565
originChain: Chain.MOONBEAM,
6666
minBridgeAmount: '0.2',
6767
},
68-
68+
{
69+
symbol: 'USDT',
70+
isNativeToken: false,
71+
assetId: '4294969280',
72+
originAssetId: '1984',
73+
logo: require('/src/assets/img/token/usdt.png'),
74+
isXcmCompatible: true,
75+
originChain: Chain.ASSET_HUB,
76+
minBridgeAmount: '1.5',
77+
},
6978
{
7079
symbol: 'IBTC',
7180
isNativeToken: false,

0 commit comments

Comments
 (0)