@open-web3/orml-types
Version:
Polkadot.js types for Open Runtime Module Library (ORML)
15 lines (14 loc) • 504 B
TypeScript
import type { Balance, LockIdentifier } from '@open-web3/orml-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;
}
/** @name OrmlBalanceLock */
export interface OrmlBalanceLock extends Struct {
readonly amount: Balance;
readonly id: LockIdentifier;
}
export declare type PHANTOM_TOKENS = 'tokens';