UNPKG

@bifrost-finance/types

Version:
10 lines (9 loc) 337 B
import type { Balance } from '@bifrost-finance/types/interfaces/runtime'; import type { Struct } from '@polkadot/types-codec'; /** @name OrmlAccountData */ export interface OrmlAccountData extends Struct { readonly free: Balance; readonly reserved: Balance; readonly frozen: Balance; } export type PHANTOM_TOKENS = 'tokens';