UNPKG

airgap-coin-lib

Version:

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

14 lines (13 loc) 682 B
import { SubstrateNetwork } from '../../../../../SubstrateNetwork'; import { SCALEDecodeResult } from '../../../scale/SCALEDecoder'; import { SCALEArray } from '../../../scale/type/SCALEArray'; import { SCALEClass } from '../../../scale/type/SCALEClass'; import { SCALEString } from '../../../scale/type/SCALEString'; export declare class MetadataV11Event extends SCALEClass { readonly name: SCALEString; readonly args: SCALEArray<SCALEString>; readonly docs: SCALEArray<SCALEString>; static decode(network: SubstrateNetwork, raw: string): SCALEDecodeResult<MetadataV11Event>; scaleFields: (SCALEString | SCALEArray<SCALEString>)[]; private constructor(); }