Skip to content

Commit

Permalink
Merge pull request #240 from lidofinance/develop
Browse files Browse the repository at this point in the history
Merge into main from develop
  • Loading branch information
AnnaSila authored Jan 29, 2024
2 parents 93c36f0 + 41872c4 commit 19c7473
Show file tree
Hide file tree
Showing 17 changed files with 199 additions and 92 deletions.
24 changes: 20 additions & 4 deletions modules/blockChain/contractAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const LegoLDORegistry: ChainAddressMap = {
[CHAINS.Holesky]: '0x77CF728329920E4191a6Edd9b009cD055D3cD29A',
}

export const LegoDAIRegistry: ChainAddressMap = {
export const LegoStablesRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xb0FE4D300334461523D9d61AaD90D0494e1Abb43',
[CHAINS.Goerli]: '0x5884f5849414D4317d175fEc144e2F87f699B082',
[CHAINS.Holesky]: '0x10Ff9c02C65775379D9E20BFF9AC92Cbaf15Ab8F',
Expand All @@ -78,16 +78,19 @@ export const LegoDAIRegistry: ChainAddressMap = {
export const RccStablesRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xDc1A0C7849150f466F07d48b38eAA6cE99079f80',
[CHAINS.Goerli]: '0x1440E8aDbE3a42a9EDB4b30059df8F6c35205a15',
[CHAINS.Holesky]: '0x17Ab17290bcDbea381500525A58e16e29093523c',
}

export const PmlStablesRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xDFfCD3BF14796a62a804c1B16F877Cf7120379dB',
[CHAINS.Goerli]: '0xAadfBd1ADE92d85c967f4aE096141F0F802F46Db',
[CHAINS.Holesky]: '0x580B23a97F827F2b6E51B3DEc270Ef522Ccf520c',
}

export const AtcStablesRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xe07305F43B11F230EaA951002F6a55a16419B707',
[CHAINS.Goerli]: '0xedD3B813275e1A88c2283FAfa5bf5396938ef59e',
[CHAINS.Holesky]: '0x37675423796D39C19351c5C322C3692b23a3d9bd',
}

export const gasFunderETHRegistry: ChainAddressMap = {
Expand Down Expand Up @@ -136,13 +139,26 @@ export const SandboxNodeOperatorsRegistry: ChainAddressMap = {
}

export const AllowedTokensRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0x4AC40c34f8992bb1e5E856A448792158022551ca',
[CHAINS.Goerli]: '0xeda5a9F02a580B4A879aEA65E2a7B7fEc0956b0E',
}

export const SandboxStablesAllowedTokensRegistry: ChainAddressMap = {
[CHAINS.Holesky]: '0x091c0ec8b4d54a9fcb36269b5d5e5af43309e666',
}

export const SandboxStablesAllowedRecipientRegistry: ChainAddressMap = {
[CHAINS.Holesky]: '0xF8a63a36B954D72de197097377aa00C238c653Cf',
}

export const RccStethAllowedRecipientsRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xAAC4FcE2c5d55D1152512fe5FAA94DB267EE4863',
[CHAINS.Holesky]: '0x916B909300c4aB5ADC4247cebd840C9278683e78',
}

export const PmlStethAllowedRecipientsRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0x7b9B8d00f807663d46Fb07F87d61B79884BC335B',
[CHAINS.Holesky]: '0xC2Ec8a9285D111de54725FAD1AC6a3B7E3BC6225',
}

export const AtcStethAllowedRecipientsRegistry: ChainAddressMap = {
[CHAINS.Mainnet]: '0xd3950eB3d7A9B0aBf8515922c0d35D13e85a2c91',
[CHAINS.Holesky]: '0x955bA61676dAd6091Ff3F9BC498219D6DbD49107',
}
48 changes: 40 additions & 8 deletions modules/blockChain/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,14 @@ export const ContractEvmLegoLDOTopUp = createContractHelpers({
address: EvmAddressesByType[MotionType.LegoLDOTopUp],
})

export const ContractLegoDAIRegistry = createContractHelpers({
export const ContractLegoStablesRegistry = createContractHelpers({
factory: TypeChain.RegistryWithLimitsAbi__factory,
address: CONTRACT_ADDRESSES.LegoDAIRegistry,
address: CONTRACT_ADDRESSES.LegoStablesRegistry,
})

/**
* @deprecated
*/
export const ContractEvmLegoDAITopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsAbi__factory,
address: EvmAddressesByType[MotionType.LegoDAITopUp],
Expand Down Expand Up @@ -376,12 +379,6 @@ export const ContractSandboxStablesAllowedRecipientRegistry =
address: CONTRACT_ADDRESSES.SandboxStablesAllowedRecipientRegistry,
})

export const ContractSandboxStablesAllowedTokensRegistry =
createContractHelpers({
factory: TypeChain.AllowedTokensRegistryAbi__factory,
address: CONTRACT_ADDRESSES.SandboxStablesAllowedTokensRegistry,
})

export const ContractEvmSandboxStablesAdd = createContractHelpers({
factory: TypeChain.AddAllowedRecipientAbi__factory,
address: EvmAddressesByType[MotionType.SandboxStablesAdd],
Expand All @@ -396,3 +393,38 @@ export const ContractEvmSandboxStablesTopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsStablesAbi__factory,
address: EvmAddressesByType[MotionType.SandboxStablesTopUp],
})

export const ContractRccStethAllowedRecipientsRegistry = createContractHelpers({
factory: TypeChain.RegistryWithLimitsAbi__factory,
address: CONTRACT_ADDRESSES.RccStethAllowedRecipientsRegistry,
})

export const ContractPmlStethAllowedRecipientsRegistry = createContractHelpers({
factory: TypeChain.RegistryWithLimitsAbi__factory,
address: CONTRACT_ADDRESSES.PmlStethAllowedRecipientsRegistry,
})

export const ContractAtcStethAllowedRecipientsRegistry = createContractHelpers({
factory: TypeChain.RegistryWithLimitsAbi__factory,
address: CONTRACT_ADDRESSES.AtcStethAllowedRecipientsRegistry,
})

export const ContractRccStethTopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsAbi__factory,
address: EvmAddressesByType[MotionType.RccStethTopUp],
})

export const ContractPmlStethTopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsAbi__factory,
address: EvmAddressesByType[MotionType.PmlStethTopUp],
})

export const ContractAtcStethTopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsAbi__factory,
address: EvmAddressesByType[MotionType.AtcStethTopUp],
})

export const ContractLegoStablesTopUp = createContractHelpers({
factory: TypeChain.TopUpWithLimitsStablesAbi__factory,
address: EvmAddressesByType[MotionType.LegoStablesTopUp],
})
32 changes: 23 additions & 9 deletions modules/motions/evmAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ export const EvmAddressesByChain: EvmAddresses = {
[MotionType.AllowedRecipientTopUpTrpLdo]:
'0xBd2b6dC189EefD51B273F5cb2d99BA1ce565fb8C',
[MotionType.LegoLDOTopUp]: '0x00caAeF11EC545B192f16313F53912E453c91458',
[MotionType.LegoDAITopUp]: '0x0535a67ea2D6d46f85fE568B7EaA91Ca16824FEC',
[MotionType.RccDAITopUp]: '0x84f74733ede9bFD53c1B3Ea96338867C94EC313e',
[MotionType.PmlDAITopUp]: '0x4E6D3A5023A38cE2C4c5456d3760357fD93A22cD',
[MotionType.AtcDAITopUp]: '0x67Fb97ABB9035E2e93A7e3761a0d0571c5d7CD07',
[MotionType.StethRewardProgramAdd]:
'0x935cb3366Faf2cFC415B2099d1F974Fd27202b77',
[MotionType.StethRewardProgramRemove]:
Expand All @@ -46,6 +42,13 @@ export const EvmAddressesByChain: EvmAddresses = {
'0xd30Dc38EdEfc21875257e8A3123503075226E14B',
[MotionType.RewardsShareProgramTopUp]:
'0xbD08f9D6BF1D25Cc7407E4855dF1d46C2043B3Ea',
[MotionType.RccStethTopUp]: '0xcD42Eb8a5db5a80Dc8f643745528DD77cf4C7D35',
[MotionType.PmlStethTopUp]: '0xc5527396DDC353BD05bBA578aDAa1f5b6c721136',
[MotionType.AtcStethTopUp]: '0x87b02dF27cd6ec128532Add7C8BC19f62E6f1fB9',
[MotionType.RccStablesTopUp]: '0x75bDecbb6453a901EBBB945215416561547dfDD4',
[MotionType.PmlStablesTopUp]: '0x92a27C4e5e35cFEa112ACaB53851Ec70e2D99a8D',
[MotionType.AtcStablesTopUp]: '0x1843Bc35d1fD15AbE1913b9f72852a79457C42Ab',
[MotionType.LegoStablesTopUp]: '0x6AB39a8Be67D9305799c3F8FdFc95Caf3150d17c',

// next motion factories are @deprecated
// we are keeping them here to display history data
Expand Down Expand Up @@ -75,6 +78,10 @@ export const EvmAddressesByChain: EvmAddresses = {
'0xd8f9B72Cd97388f23814ECF429cd18815F6352c1',
[MotionType.AllowedRecipientTopUpReferralDai]:
'0x009ffa22ce4388d2F5De128Ca8E6fD229A312450',
[MotionType.RccDAITopUp]: '0x84f74733ede9bFD53c1B3Ea96338867C94EC313e',
[MotionType.PmlDAITopUp]: '0x4E6D3A5023A38cE2C4c5456d3760357fD93A22cD',
[MotionType.AtcDAITopUp]: '0x67Fb97ABB9035E2e93A7e3761a0d0571c5d7CD07',
[MotionType.LegoDAITopUp]: '0x0535a67ea2D6d46f85fE568B7EaA91Ca16824FEC',
},

// Goerli
Expand All @@ -84,10 +91,6 @@ export const EvmAddressesByChain: EvmAddresses = {
[MotionType.AllowedRecipientTopUpTrpLdo]:
'0x43f33C52156d1Fb2eA24d82aBfD342E69835E79f',
[MotionType.LegoLDOTopUp]: '0xc39Dd5B66968e364D99e0c9E7089049351AB89CA',
[MotionType.LegoDAITopUp]: '0xbf44eC2b23cA105F8a62e0587900a09A473288c6',
[MotionType.RccDAITopUp]: '0xd0411e7c4A24E7d4509D5F13AEd19aeb8e5644AB',
[MotionType.PmlDAITopUp]: '0xc749aD24572263887Bc888d3Cb854FCD50eCCB61',
[MotionType.AtcDAITopUp]: '0xF4b8b5760EE4b5c5Cb154edd0f0841465d821006',
[MotionType.RccStablesTopUp]: '0xd50eE42B31Bc500409B7caD99A2D16FB1Bfecdc6',
[MotionType.PmlStablesTopUp]: '0x5F379512158A46ab7a91f8b799A97691eC498b9a',
[MotionType.AtcStablesTopUp]: '0xB87300405050e7f1dBC35c6C9ce9ea4417D3Ad81',
Expand Down Expand Up @@ -153,6 +156,10 @@ export const EvmAddressesByChain: EvmAddresses = {
'0x5FEC0bcd7519C4fE41eca5Fe1dD94345fA100A67',
[MotionType.AllowedRecipientTopUpReferralDai]:
'0x9534A77029D57E249c467E5A1E0854cc26Cd75A0',
[MotionType.RccDAITopUp]: '0xd0411e7c4A24E7d4509D5F13AEd19aeb8e5644AB',
[MotionType.PmlDAITopUp]: '0xc749aD24572263887Bc888d3Cb854FCD50eCCB61',
[MotionType.AtcDAITopUp]: '0xF4b8b5760EE4b5c5Cb154edd0f0841465d821006',
[MotionType.LegoDAITopUp]: '0xbf44eC2b23cA105F8a62e0587900a09A473288c6',
},

// Holesky
Expand All @@ -162,7 +169,6 @@ export const EvmAddressesByChain: EvmAddresses = {
[MotionType.AllowedRecipientTopUpTrpLdo]:
'0xD618F0CF48F057B5256e102dC18d8011e08c19D3',
[MotionType.LegoLDOTopUp]: '0xCfaFcD35ACcc4383e2CCDf7DD3F58114914F1955',
[MotionType.LegoDAITopUp]: '0xBCcfe42cc3EF530db9888dC8F82B1B4A4DfB9DB4',
[MotionType.StethRewardProgramAdd]:
'0xf0968B9bE18282dD23bbbC79a1c9C8996CE6984D',
[MotionType.StethRewardProgramRemove]:
Expand Down Expand Up @@ -207,6 +213,13 @@ export const EvmAddressesByChain: EvmAddresses = {
'0x51c730af05777c4D3CcC8c8B80558F4D155bb7BF',
[MotionType.SandboxStablesTopUp]:
'0x71bcEf1f4E4945005e1D22d68F02085D5167ab43',
[MotionType.RccStethTopUp]: '0xe3bCa174A8b031C61a58aa56a0f622D4FFCA47d7',
[MotionType.PmlStethTopUp]: '0x8612A51e4914FfFb25D96d1A310D4C6342c2091E',
[MotionType.AtcStethTopUp]: '0x1395970895282333dC914172944f52F15Df63620',
[MotionType.LegoStablesTopUp]: '0x7Bb5C5965a63aFb6a05D19bB03e3f170E2d7d684',
[MotionType.RccStablesTopUp]: '0xD497E7e039FeFBc64dBB7b75368afb06D07Bc73F',
[MotionType.PmlStablesTopUp]: '0x5BAE56ECfB616eAbbDB048AC930FA1Db82f18900',
[MotionType.AtcStablesTopUp]: '0xfa54cf78474cD4A7f4408Dd0efA36e44b6269813',

// next motion factories are @deprecated
// we are keeping them here to display history data
Expand All @@ -224,6 +237,7 @@ export const EvmAddressesByChain: EvmAddresses = {
[MotionType.AllowedRecipientAddReferralDai]: '',
[MotionType.AllowedRecipientRemoveReferralDai]: '',
[MotionType.AllowedRecipientTopUpReferralDai]: '',
[MotionType.LegoDAITopUp]: '0xBCcfe42cc3EF530db9888dC8F82B1B4A4DfB9DB4',
},
}

Expand Down
22 changes: 4 additions & 18 deletions modules/motions/hooks/useAllowedTokensRegistry.ts
Original file line number Diff line number Diff line change
@@ -1,32 +1,18 @@
import {
ContractAllowedTokensRegistry,
ContractSandboxStablesAllowedTokensRegistry,
} from 'modules/blockChain/contracts'
import { useSWR } from 'modules/network/hooks/useSwr'
import { useWeb3 } from 'modules/blockChain/hooks/useWeb3'
import { connectERC20Contract } from '../utils/connectTokenContract'
import { MotionType } from '../types'
import { ContractAllowedTokensRegistry } from 'modules/blockChain/contracts'

const TOKENS_REGISTRY_BY_MOTION_TYPE = {
[MotionType.AtcStablesTopUp]: ContractAllowedTokensRegistry,
[MotionType.PmlStablesTopUp]: ContractAllowedTokensRegistry,
[MotionType.RccStablesTopUp]: ContractAllowedTokensRegistry,
[MotionType.SandboxStablesTopUp]: ContractSandboxStablesAllowedTokensRegistry,
}

type RegistryType = keyof typeof TOKENS_REGISTRY_BY_MOTION_TYPE

export function useAllowedTokens(registryType: RegistryType) {
export function useAllowedTokens() {
const { chainId, library } = useWeb3()
const registry = TOKENS_REGISTRY_BY_MOTION_TYPE[registryType].useRpc()

const { data, initialLoading } = useSWR(
`allowed-tokens-${registryType}-${chainId}`,
`allowed-tokens-${chainId}`,
async () => {
if (!library) {
return
}

const registry = ContractAllowedTokensRegistry.connectRpc({ chainId })
const tokensAddresses = await registry.getAllowedTokens()

const allowedTokens = await Promise.all(
Expand Down
4 changes: 4 additions & 0 deletions modules/motions/hooks/useContractEvmScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ export const EVM_CONTRACTS = {
[MotionType.SandboxStablesAdd]: CONTRACTS.ContractEvmSandboxStablesAdd,
[MotionType.SandboxStablesTopUp]: CONTRACTS.ContractEvmSandboxStablesTopUp,
[MotionType.SandboxStablesRemove]: CONTRACTS.ContractEvmSandboxStablesRemove,
[MotionType.RccStethTopUp]: CONTRACTS.ContractRccStethTopUp,
[MotionType.PmlStethTopUp]: CONTRACTS.ContractPmlStethTopUp,
[MotionType.AtcStethTopUp]: CONTRACTS.ContractAtcStethTopUp,
[MotionType.LegoStablesTopUp]: CONTRACTS.ContractLegoStablesTopUp,
} as const

export function useContractEvmScript<T extends MotionType | EvmUnrecognized>(
Expand Down
8 changes: 7 additions & 1 deletion modules/motions/hooks/useEVMScriptDecoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function useEVMScriptDecoder() {
[KEYS.AllowedRecipientTrpLdoRegistry]:
abis.AllowedRecipientsRegistryAbi__factory.abi,
[KEYS.LegoLDORegistry]: abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.LegoDAIRegistry]: abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.LegoStablesRegistry]: abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.RccStablesRegistry]: abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.PmlStablesRegistry]: abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.AtcStablesRegistry]: abis.RegistryWithLimitsAbi__factory.abi,
Expand All @@ -47,6 +47,12 @@ export function useEVMScriptDecoder() {
[KEYS.AragonACL]: abis.AragonACLAbi__factory.abi,
[KEYS.SDVTRegistry]: abis.SDVTRegistryAbi__factory.abi,
[KEYS.SandboxNodeOperatorsRegistry]: abis.NodeOperatorsAbi__factory.abi,
[KEYS.RccStethAllowedRecipientsRegistry]:
abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.PmlStethAllowedRecipientsRegistry]:
abis.RegistryWithLimitsAbi__factory.abi,
[KEYS.AtcStethAllowedRecipientsRegistry]:
abis.RegistryWithLimitsAbi__factory.abi,
}),
)
}, `evm-script-decoder-${chainId}`)
Expand Down
8 changes: 6 additions & 2 deletions modules/motions/hooks/usePeriodLimitsInfo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { LimitCheckerAbi, EasyTrackAbi } from 'generated'
import { createContractHelpers } from 'modules/blockChain/utils/createContractHelpers'
import {
ContractLegoDAIRegistry,
ContractLegoStablesRegistry,
ContractEasyTrack,
ContractAllowedRecipientRegistry,
ContractAllowedRecipientReferralDaiRegistry,
Expand Down Expand Up @@ -102,17 +102,21 @@ const registryByMotionType: {
[key in MotionType]?: ReturnType<typeof createContractHelpers>
} = {
[MotionType.LegoLDOTopUp]: ContractLegoLDORegistry,
[MotionType.LegoDAITopUp]: ContractLegoDAIRegistry,
[MotionType.LegoDAITopUp]: ContractLegoStablesRegistry,
[MotionType.RccStablesTopUp]: ContractRccStablesRegistry,
[MotionType.PmlStablesTopUp]: ContractPmlStablesRegistry,
[MotionType.AtcStablesTopUp]: ContractAtcStablesRegistry,
[MotionType.RccDAITopUp]: ContractRccStablesRegistry,
[MotionType.PmlDAITopUp]: ContractPmlStablesRegistry,
[MotionType.AtcDAITopUp]: ContractAtcStablesRegistry,
[MotionType.GasFunderETHTopUp]: ContractGasFunderETHRegistry,
[MotionType.AllowedRecipientTopUp]: ContractAllowedRecipientRegistry,
[MotionType.AllowedRecipientTopUpReferralDai]:
ContractAllowedRecipientReferralDaiRegistry,
[MotionType.AllowedRecipientTopUpTrpLdo]:
ContractAllowedRecipientTrpLdoRegistry,
[MotionType.StethRewardProgramTopUp]: ContractStethRewardProgramRegistry,
[MotionType.LegoStablesTopUp]: ContractLegoStablesRegistry,
}

export const usePeriodLimitsInfoByMotionType = (props: {
Expand Down
11 changes: 9 additions & 2 deletions modules/motions/hooks/useRegistryWithLimits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useSWR, SWRResponse } from 'modules/network/hooks/useSwr'
import { useWeb3 } from 'modules/blockChain/hooks/useWeb3'
import {
ContractLegoLDORegistry,
ContractLegoDAIRegistry,
ContractLegoStablesRegistry,
ContractPmlStablesRegistry,
ContractAtcStablesRegistry,
ContractGasFunderETHRegistry,
Expand All @@ -15,6 +15,9 @@ import {
ContractRewardsShareProgramRegistry,
ContractRccStablesRegistry,
ContractSandboxStablesAllowedRecipientRegistry,
ContractRccStethAllowedRecipientsRegistry,
ContractPmlStethAllowedRecipientsRegistry,
ContractAtcStethAllowedRecipientsRegistry,
} from 'modules/blockChain/contracts'
import { getEventsRecipientAdded } from 'modules/motions/utils'
import { MotionType } from 'modules/motions/types'
Expand All @@ -28,7 +31,7 @@ type AllowedRecipient = {

export const REGISTRY_WITH_LIMITS_BY_MOTION_TYPE = {
[MotionType.LegoLDOTopUp]: ContractLegoLDORegistry,
[MotionType.LegoDAITopUp]: ContractLegoDAIRegistry,
[MotionType.LegoDAITopUp]: ContractLegoStablesRegistry,
[MotionType.RccDAITopUp]: ContractRccStablesRegistry,
[MotionType.PmlDAITopUp]: ContractPmlStablesRegistry,
[MotionType.AtcDAITopUp]: ContractAtcStablesRegistry,
Expand Down Expand Up @@ -62,6 +65,10 @@ export const REGISTRY_WITH_LIMITS_BY_MOTION_TYPE = {
ContractSandboxStablesAllowedRecipientRegistry,
[MotionType.SandboxStablesTopUp]:
ContractSandboxStablesAllowedRecipientRegistry,
[MotionType.RccStethTopUp]: ContractRccStethAllowedRecipientsRegistry,
[MotionType.PmlStethTopUp]: ContractPmlStethAllowedRecipientsRegistry,
[MotionType.AtcStethTopUp]: ContractAtcStethAllowedRecipientsRegistry,
[MotionType.LegoStablesTopUp]: ContractLegoStablesRegistry,
} as const

type HookArgs = {
Expand Down
12 changes: 12 additions & 0 deletions modules/motions/hooks/useTokenByTopUpType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,18 @@ const TOKEN = {
label: 'stETH',
value: (chainId: CHAINS) => CONTRACT_ADDRESSES.STETH[chainId],
},
[MotionType.RccStethTopUp]: {
label: 'stETH',
value: (chainId: CHAINS) => CONTRACT_ADDRESSES.STETH[chainId],
},
[MotionType.PmlStethTopUp]: {
label: 'stETH',
value: (chainId: CHAINS) => CONTRACT_ADDRESSES.STETH[chainId],
},
[MotionType.AtcStethTopUp]: {
label: 'stETH',
value: (chainId: CHAINS) => CONTRACT_ADDRESSES.STETH[chainId],
},
}

const isTopUpType = (type: unknown): type is keyof typeof TOKEN => {
Expand Down
Loading

0 comments on commit 19c7473

Please sign in to comment.