From 9846c2e3d8984d00c0702aaa5c69ea3b47b3275e Mon Sep 17 00:00:00 2001 From: Qiwei Yang Date: Thu, 4 Jan 2024 15:03:23 +0800 Subject: [PATCH] fix: calamari tokens config --- src/adapters/manta.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/adapters/manta.ts b/src/adapters/manta.ts index ceb49717..6a58742e 100644 --- a/src/adapters/manta.ts +++ b/src/adapters/manta.ts @@ -64,35 +64,35 @@ export const calamariTokensConfig: Record = { symbol: "KMA", decimals: 12, ed: "100000000000", - toRaw: () => 1, + toRaw: () => ({ MantaCurrency: 1 }), }, KAR: { name: "KAR", symbol: "KAR", decimals: 12, ed: "100000000000", - toRaw: () => 8, + toRaw: () => ({ MantaCurrency: 8 }), }, KUSD: { name: "KUSD", symbol: "KUSD", decimals: 12, ed: "10000000000", - toRaw: () => 9, + toRaw: () => ({ MantaCurrency: 9 }), }, LKSM: { name: "LKSM", symbol: "LKSM", decimals: 12, ed: "500000000", - toRaw: () => 10, + toRaw: () => ({ MantaCurrency: 10 }), }, KSM: { name: "KSM", symbol: "KSM", decimals: 12, ed: "100000000", - toRaw: () => 12, + toRaw: () => ({ MantaCurrency: 12 }), }, };