Skip to content

cardano-web3-js / CW3Types / NativeScriptType

Type Alias: NativeScriptType

NativeScriptType = { ScriptPubkey: { ed25519_key_hash: string; }; } | { ScriptInvalidBefore: { before: number; }; } | { ScriptInvalidHereafter: { after: number; }; } | { ScriptAll: { native_scripts: ReadonlyArray<NativeScriptType>; }; } | { ScriptAny: { native_scripts: ReadonlyArray<NativeScriptType>; }; } | { ScriptNOfK: { n: number; native_scripts: ReadonlyArray<NativeScriptType>; }; }

Defined in: src/types/index.ts:170

Released under the MIT License