diff --git a/package.json b/package.json index 39aaff8..079e80d 100644 --- a/package.json +++ b/package.json @@ -55,5 +55,5 @@ "jest": "^28.1.1", "typescript": "^4.7.4" }, - "stableVersion": "0.1.5-29" + "stableVersion": "0.1.5-30" } diff --git a/src/adapters/acala/acala-configs.ts b/src/adapters/acala/acala-configs.ts index 932b251..10601fd 100644 --- a/src/adapters/acala/acala-configs.ts +++ b/src/adapters/acala/acala-configs.ts @@ -149,6 +149,13 @@ export const acalaRouteConfigs = createRouteConfigs("acala", [ fee: { token: "DOT", amount: "100000000" }, }, }, + { + to: "statemint", + token: "USDC", + xcm: { + fee: { token: "DOT", amount: "100000000" }, + }, + }, { to: "statemint", token: "PINK", @@ -208,6 +215,12 @@ export const acalaTokensConfig: Record = { decimals: 6, ed: "700000", }, + USDC: { + name: "USDC", + symbol: "USDC", + decimals: 6, + ed: "10000", + }, PINK: { name: "PINK", symbol: "PINK", diff --git a/src/adapters/statemint.ts b/src/adapters/statemint.ts index 4f7b2c0..27da85c 100644 --- a/src/adapters/statemint.ts +++ b/src/adapters/statemint.ts @@ -43,6 +43,14 @@ export const statemintRouteConfigs = createRouteConfigs("statemint", [ weightLimit: "Unlimited", }, }, + { + to: "acala", + token: "USDC", + xcm: { + fee: { token: "USDC", amount: "803" }, + weightLimit: "Unlimited", + }, + }, { to: "acala", token: "PINK", @@ -100,6 +108,13 @@ export const statemintTokensConfig: Record = { ed: "700000", toRaw: () => new BN(1984), }, + USDC: { + name: "USDC", + symbol: "USDC", + decimals: 6, + ed: "700000", + toRaw: () => new BN(1337), + }, PINK: { name: "PINK", symbol: "PINK",