UNPKG

471 BTypeScriptView Raw
1import type { Registry } from '@polkadot/types-codec/types';
2import type { ExtrinsicOptions } from './types.js';
3import { Struct } from '@polkadot/types-codec';
4/**
5 * @name GenericExtrinsicUnknown
6 * @description
7 * A default handler for extrinsics where the version is not known (default throw)
8 */
9export declare class GenericExtrinsicUnknown extends Struct {
10 constructor(registry: Registry, _value?: unknown, { isSigned, version }?: Partial<ExtrinsicOptions>);
11}