We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f726697 commit 093f92cCopy full SHA for 093f92c
src/sdk/sdk-gov-legacy/tokens/stakingRewards.ts
@@ -39,10 +39,3 @@ export const isStakingRewardsPhantomToken = (
39
): t is StakingRewardsPhantomToken =>
40
typeof t === "string" &&
41
!!stakingRewardsTokens[t as StakingRewardsPhantomToken];
42
-
43
-export const zircuitStakedTokenByToken = Object.values(
44
- stakingRewardsPhantomTokens,
45
-).reduce<Partial<Record<SupportedToken, SupportedToken>>>((acc, value) => {
46
- acc[value.underlying] = value.symbol;
47
- return acc;
48
-}, {});
0 commit comments