Skip to content

Commit

Permalink
mini contract cache: use @celo/abis package
Browse files Browse the repository at this point in the history
  • Loading branch information
shazarre committed Nov 30, 2023
1 parent 8a6311f commit ed89d65
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/sdk/contractkit/src/mini-contract-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { AddressRegistry } from './address-registry'
import { CeloContract } from './base'
import { ContractCacheType } from './basic-contract-cache-type'
import { stableTokenInfos } from './celo-tokens'
import { newGasPriceMinimum } from './generated/0.8/GasPriceMinimum'
import { newAccounts } from './generated/Accounts'
import { newGoldToken } from './generated/GoldToken'
import { newExchange } from './generated/mento/Exchange'
import { newExchangeBRL } from './generated/mento/ExchangeBRL'
import { newExchangeEUR } from './generated/mento/ExchangeEUR'
import { newStableToken } from './generated/mento/StableToken'
import { newStableTokenBRL } from './generated/mento/StableTokenBRL'
import { newStableTokenEUR } from './generated/mento/StableTokenEUR'
import { newGasPriceMinimum } from '@celo/abis/types/web3/0.8/GasPriceMinimum'
import { newAccounts } from '@celo/abis/types/web3/Accounts'
import { newGoldToken } from '@celo/abis/types/web3/GoldToken'
import { newExchange } from '@celo/abis/types/web3/mento/Exchange'
import { newExchangeBRL } from '@celo/abis/types/web3/mento/ExchangeBRL'
import { newExchangeEUR } from '@celo/abis/types/web3/mento/ExchangeEUR'
import { newStableToken } from '@celo/abis/types/web3/mento/StableToken'
import { newStableTokenBRL } from '@celo/abis/types/web3/mento/StableTokenBRL'
import { newStableTokenEUR } from '@celo/abis/types/web3/mento/StableTokenEUR'
import { AccountsWrapper } from './wrappers/Accounts'
import { ExchangeWrapper } from './wrappers/Exchange'
import { GasPriceMinimumWrapper } from './wrappers/GasPriceMinimum'
Expand Down

0 comments on commit ed89d65

Please sign in to comment.