@polkadot/types
Version:
Implementation of the Parity codec
17 lines (16 loc) • 388 B
TypeScript
import type { AnyNumber } from '@polkadot/types-codec/types';
export interface ExtrinsicOptions {
isSigned: boolean;
version: number;
}
export interface ExtrinsicPayloadOptions {
version: number;
}
export interface ExtrinsicSignatureOptions {
isSigned?: boolean;
}
export interface ExtrinsicExtraValue {
era?: Uint8Array;
nonce?: AnyNumber;
tip?: AnyNumber;
}