@ledgerhq/coin-celo
Version:
16 lines (11 loc) • 484 B
text/typescript
import { StableToken } from "@celo/contractkit";
const CELO_STAKE_TOKENS_PAIR: Record<string, StableToken> = {
cEUR: StableToken.cEUR,
cREAL: StableToken.cREAL,
cUSD: StableToken.cUSD,
};
export const CELO_STABLE_TOKENS = Object.keys(CELO_STAKE_TOKENS_PAIR);
export const getStableTokenEnum = (tokenTicker: string): StableToken =>
CELO_STAKE_TOKENS_PAIR[tokenTicker];
export const MAX_PRIORITY_FEE_PER_GAS = 1_000_000_000n;
export const MAX_FEES_THRESHOLD_MULTIPLIER = 4;