Skip to content

Commit

Permalink
chore(wrw): config changes addition of avaxc coin
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjsuthar committed Sep 18, 2024
1 parent 3a6e523 commit c8a38bf
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/helpers/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -802,6 +802,7 @@ export const evmCCRWrongChainCoins: Record<BitgoEnv, readonly CoinMetadata[]> =
allCoinMetas.bsc,
allCoinMetas.baseeth,
allCoinMetas.arbeth,
allCoinMetas.avaxc
] as const,
test: [
allCoinMetas.tpolygon,
Expand All @@ -810,6 +811,7 @@ export const evmCCRWrongChainCoins: Record<BitgoEnv, readonly CoinMetadata[]> =
allCoinMetas.tbsc,
allCoinMetas.tbaseeth,
allCoinMetas.tarbeth,
allCoinMetas.tavaxc
] as const,
};

Expand All @@ -819,65 +821,89 @@ export const evmCCRIntendedChainCoins: Record<string, readonly CoinMetadata[]> =
allCoinMetas.eth,
allCoinMetas.arbeth,
allCoinMetas.opeth,
allCoinMetas.avaxc,
] as const,
tpolygon: [
allCoinMetas.hteth,
allCoinMetas.tarbeth,
allCoinMetas.topeth,
allCoinMetas.tavaxc,
] as const,
eth: [
allCoinMetas.polygon,
allCoinMetas.arbeth,
allCoinMetas.opeth,
allCoinMetas.avaxc,
] as const,
hteth: [
allCoinMetas.tpolygon,
allCoinMetas.tarbeth,
allCoinMetas.topeth,
allCoinMetas.tavaxc,
] as const,
topeth: [
allCoinMetas.tarbeth,
allCoinMetas.hteth,
allCoinMetas.tpolygon,
allCoinMetas.tavaxc,
] as const,
opeth: [
allCoinMetas.arbeth,
allCoinMetas.eth,
allCoinMetas.polygon,
allCoinMetas.avaxc,
] as const,
bsc: [
allCoinMetas.eth,
allCoinMetas.arbeth,
allCoinMetas.opeth,
allCoinMetas.polygon,
allCoinMetas.avaxc,
] as const,
tbsc: [
allCoinMetas.hteth,
allCoinMetas.tarbeth,
allCoinMetas.topeth,
allCoinMetas.tpolygon,
allCoinMetas.tavaxc,
] as const,
baseeth: [
allCoinMetas.eth,
allCoinMetas.arbeth,
allCoinMetas.opeth,
allCoinMetas.polygon,
allCoinMetas.avaxc,
] as const,
tbaseeth: [
allCoinMetas.hteth,
allCoinMetas.tarbeth,
allCoinMetas.topeth,
allCoinMetas.tpolygon,
allCoinMetas.tavaxc,
] as const,
arbeth: [
allCoinMetas.eth,
allCoinMetas.polygon,
allCoinMetas.opeth,
allCoinMetas.avaxc,
] as const,
tarbeth: [
allCoinMetas.hteth,
allCoinMetas.tpolygon,
allCoinMetas.topeth,
allCoinMetas.tavaxc,
] as const,
avaxc: [
allCoinMetas.eth,
allCoinMetas.polygon,
allCoinMetas.opeth,
allCoinMetas.arbeth,
] as const,
tavaxc: [
allCoinMetas.hteth,
allCoinMetas.tpolygon,
allCoinMetas.topeth,
allCoinMetas.tarbeth,
] as const,
};

Expand Down Expand Up @@ -928,6 +954,7 @@ export const tokenParentCoins = {
topethToken: 'topeth',
polygonToken: 'polygon',
tpolygonToken: 'tpolygon',
tavaxchainToken: 'tavaxchain'
};

export type EvmCcrNonBitgoCoinConfigType = {
Expand Down

0 comments on commit c8a38bf

Please sign in to comment.