// Auto-generated via `yarn polkadot-types-from-chain`, do not edit /* eslint-disable */ // import type lookup before we augment - in some environments // this is required to allow for ambient/previous definitions import '@polkadot/api-base/types/storage'; import type { CurrencyId } from '@boo-0x/types/interfaces/primitives'; import type { AccountId, Balance } from '@boo-0x/types/interfaces/runtime'; import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types'; import type { Vec } from '@polkadot/types-codec'; import type { AccountData, BalanceLock } from '@polkadot/types/interfaces/balances'; import type { Observable } from '@polkadot/types/types'; export type __AugmentedQuery = AugmentedQuery unknown>; export type __QueryableStorageEntry = QueryableStorageEntry; declare module '@polkadot/api-base/types/storage' { interface AugmentedQueries { tokens: { /** * The balance of a token type under an account. * * NOTE: If the total is ever zero, decrease account ref account. * * NOTE: This is only used in the case that this module is used to store * balances. **/ accounts: AugmentedQuery Observable, [AccountId, CurrencyId]> & QueryableStorageEntry; /** * Any liquidity locks of a token type under an account. * NOTE: Should only be accessed when setting, changing and freeing a lock. **/ locks: AugmentedQuery Observable>, [AccountId, CurrencyId]> & QueryableStorageEntry; /** * The total issuance of a token type. **/ totalIssuance: AugmentedQuery Observable, [CurrencyId]> & QueryableStorageEntry; /** * Generic query **/ [key: string]: QueryableStorageEntry; }; } // AugmentedQueries } // declare module