1 | import type { Registry } from '@polkadot/types-codec/types';
|
2 | import type { ExtrinsicOptions } from './types.js';
|
3 | import { 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 | */
|
9 | export declare class GenericExtrinsicUnknown extends Struct {
|
10 | constructor(registry: Registry, _value?: unknown, { isSigned, version }?: Partial<ExtrinsicOptions>);
|
11 | }
|