/* tslint:disable */ /* eslint-disable */ /** * A loaded runtime description, held across calls so the metadata is parsed * once per spec version rather than once per signature. */ export class QuantusRuntime { free(): void; [Symbol.dispose](): void; /** * Decode a bare call — what an approval screen shows the user. */ decodeCall(bytes: Uint8Array): string; /** * Decode one extrinsic as this runtime describes it, as JSON. */ decodeExtrinsic(blob: Uint8Array): string; /** * Encode a call by name. `args` is a JSON object keyed by argument name. */ encodeCall(pallet: string, call: string, args: string): Uint8Array; /** * The `extra` alone, which the extrinsic carries and the payload repeats. */ encodeExtra(extensions: string): Uint8Array; /** * Assemble a signed extrinsic, ready for `author_submitAndWatchExtrinsic`. */ encodeExtrinsic(address: string, signature: Uint8Array, extra: Uint8Array, call: Uint8Array): Uint8Array; /** * The extrinsic format version this runtime declares. */ extrinsicVersion(): number; /** * Parse metadata as `state_getMetadata` returns it. */ constructor(metadata: Uint8Array); /** * Every signed extension, in order, as * `[{ identifier, needsExtra, needsAdditional }]`. * * The two booleans are what a caller has to satisfy, read from the * registry. A caller that ignores them gets an error rather than a short * payload. */ signedExtensions(): string; /** * The bytes to sign, given an encoded call and the extension values. * * `extensions` is a JSON object keyed by extension identifier, each value * `{ extra?, additional? }`. Omitting one the runtime declares as non-empty * is an error — see [`Runtime::encode_extensions`]. */ signerPayload(call: Uint8Array, extensions: string): Uint8Array; } export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module; export interface InitOutput { readonly memory: WebAssembly.Memory; readonly __wbg_quantusruntime_free: (a: number, b: number) => void; readonly quantusruntime_decodeCall: (a: number, b: number, c: number) => [number, number, number, number]; readonly quantusruntime_decodeExtrinsic: (a: number, b: number, c: number) => [number, number, number, number]; readonly quantusruntime_encodeCall: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => [number, number, number, number]; readonly quantusruntime_encodeExtra: (a: number, b: number, c: number) => [number, number, number, number]; readonly quantusruntime_encodeExtrinsic: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => [number, number, number, number]; readonly quantusruntime_extrinsicVersion: (a: number) => number; readonly quantusruntime_new: (a: number, b: number) => [number, number, number]; readonly quantusruntime_signedExtensions: (a: number) => [number, number, number, number]; readonly quantusruntime_signerPayload: (a: number, b: number, c: number, d: number, e: number) => [number, number, number, number]; readonly __wbindgen_externrefs: WebAssembly.Table; readonly __wbindgen_malloc: (a: number, b: number) => number; readonly __externref_table_dealloc: (a: number) => void; readonly __wbindgen_free: (a: number, b: number, c: number) => void; readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number; readonly __wbindgen_start: () => void; } export type SyncInitInput = BufferSource | WebAssembly.Module; /** * Instantiates the given `module`, which can either be bytes or * a precompiled `WebAssembly.Module`. * * @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated. * * @returns {InitOutput} */ export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput; /** * If `module_or_path` is {RequestInfo} or {URL}, makes a request and * for everything else, calls `WebAssembly.instantiate` directly. * * @param {{ module_or_path: InitInput | Promise }} module_or_path - Passing `InitInput` directly is deprecated. * * @returns {Promise} */ export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise } | InitInput | Promise): Promise;