@arkade-os/sdk Documentation - v0.4.54
    Preparing search index...

    Interface ArkadeFunction

    One named spending path.

    interface ArkadeFunction {
        arkadeScript?: ArkadeSegment;
        inputs?: readonly InputRef[];
        tapscript: TapscriptSegment;
    }
    Index

    Properties

    arkadeScript?: ArkadeSegment

    Present for covenant paths; absent for pure-tapscript paths (cancel/exit).

    inputs?: readonly InputRef[]

    The function ABI: an ordered list of call arguments. Each entry is a typed descriptor { name, type } (which gives the matching functions.<name> argument a precise static type) or a bare name string (loose ArkadeArgValue). Absent for nullary paths (e.g. exit/cancel).

    tapscript: TapscriptSegment