UNPKG

@polkadot/types

Version:
18 lines (17 loc) 431 B
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; } export type Preamble = 'bare' | 'general';