@open-web3/orml-types
Version:
Polkadot.js types for Open Runtime Module Library (ORML)
19 lines (18 loc) • 604 B
TypeScript
import type { StorageKey } from '@polkadot/types';
import type { Bytes, Struct } from '@polkadot/types-codec';
/** @name GraduallyUpdate */
export interface GraduallyUpdate extends Struct {
readonly key: StorageKey;
readonly targetValue: StorageValue;
readonly perBlock: StorageValue;
}
/** @name StorageKeyBytes */
export interface StorageKeyBytes extends Bytes {
}
/** @name StorageValue */
export interface StorageValue extends Bytes {
}
/** @name StorageValueBytes */
export interface StorageValueBytes extends Bytes {
}
export declare type PHANTOM_GRADUALLYUPDATES = 'graduallyUpdates';