UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

10 lines (9 loc) 443 B
import { SubstrateNetwork } from '../../../SubstrateNetwork'; import { SCALEInt } from '../scale/type/SCALEInt'; import { SCALEOptional } from '../scale/type/SCALEOptional'; export declare class SubstrateActiveEraInfo { readonly index: SCALEInt; readonly start: SCALEOptional<SCALEInt>; static decode(network: SubstrateNetwork, runtimeVersion: number | undefined, raw: string): SubstrateActiveEraInfo; private constructor(); }