Interface ArkTapscript<T, Params>

ArkTapscript is the base element of vtxo scripts. It is used to encode and decode the different types of vtxo scripts.

interface ArkTapscript<T extends TapscriptType, Params> {
    params: Params;
    script: Uint8Array;
    type: T;
}

Type Parameters

Properties

Properties

params: Params
script: Uint8Array
type: T