UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

11 lines (10 loc) 494 B
import { Option, Tuple, Vec } from '@polkadot/types'; import { BlockNumber } from '@polkadot/types/interfaces'; import { Codec } from '@polkadot/types/types'; export declare const emptyVectorLeases: Vec<import("@polkadot/types").Raw>; export declare const slotsLeasesAt: () => Promise<Vec<Option<Tuple>>>; /** * Used for parachain Auctions */ export declare const auctionsInfoAt: () => Promise<Option<Vec<BlockNumber>>>; export declare const noneAuctionsInfoAt: () => Promise<Option<Codec>>;