@polkadot/types
Version:
Implementation of the Parity codec
12 lines (11 loc) • 471 B
TypeScript
import type { Registry } from '@polkadot/types-codec/types';
import type { ExtrinsicOptions } from './types.js';
import { Struct } from '@polkadot/types-codec';
/**
* @name GenericExtrinsicUnknown
* @description
* A default handler for extrinsics where the version is not known (default throw)
*/
export declare class GenericExtrinsicUnknown extends Struct {
constructor(registry: Registry, _value?: unknown, { isSigned, version }?: Partial<ExtrinsicOptions>);
}