Skip to content

cardano-web3-js / CW3Types / NativeConfig

Type Alias: NativeConfig

NativeConfig = { keyHash: string; type: "sig"; } | { slot: number; type: "before"; } | { slot: number; type: "after"; } | { scripts: ReadonlyArray<NativeConfig>; type: "all"; } | { scripts: ReadonlyArray<NativeConfig>; type: "any"; } | { required: number; scripts: ReadonlyArray<NativeConfig>; type: "atLeast"; }

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

Released under the MIT License