UNPKG

@polkadot/types

Version:
26 lines (25 loc) 811 B
import type { Struct, u32 } from '@polkadot/types-codec'; import type { AccountId, Balance, BlockNumber, Perquintill } from '@polkadot/types/interfaces/runtime'; /** @name ActiveGilt */ export interface ActiveGilt extends Struct { readonly proportion: Perquintill; readonly amount: Balance; readonly who: AccountId; readonly expiry: BlockNumber; } /** @name ActiveGiltsTotal */ export interface ActiveGiltsTotal extends Struct { readonly frozen: Balance; readonly proportion: Perquintill; readonly index: ActiveIndex; readonly target: Perquintill; } /** @name ActiveIndex */ export interface ActiveIndex extends u32 { } /** @name GiltBid */ export interface GiltBid extends Struct { readonly amount: Balance; readonly who: AccountId; } export type PHANTOM_GILT = 'gilt';