Skip to content

Commit

Permalink
Merge pull request #105 from qiweiii/fix/calamari-tokens-config
Browse files Browse the repository at this point in the history
fix: calamari tokens config
  • Loading branch information
RomeroYang authored Jan 4, 2024
2 parents 75eb8f1 + 9846c2e commit b664f1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/adapters/manta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,35 +64,35 @@ export const calamariTokensConfig: Record<string, ExtendedToken> = {
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 }),
},
};

Expand Down

0 comments on commit b664f1b

Please sign in to comment.