airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
13 lines (12 loc) • 648 B
TypeScript
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 MetadataV11Error extends SCALEClass {
readonly name: SCALEString;
readonly docs: SCALEArray<SCALEString>;
static decode(network: SubstrateNetwork, raw: string): SCALEDecodeResult<MetadataV11Error>;
protected scaleFields: (SCALEString | SCALEArray<SCALEString>)[];
private constructor();
}