airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
8 lines (7 loc) • 365 B
TypeScript
import { SubstrateNetwork } from '../../../SubstrateNetwork';
import { SCALECompactInt } from '../scale/type/SCALECompactInt';
export declare class SubstrateValidatorPrefs {
readonly commission: SCALECompactInt;
static decode(network: SubstrateNetwork, runtimeVersion: number | undefined, raw: string): SubstrateValidatorPrefs;
private constructor();
}