@arkade-os/sdk Documentation - v0.4.0-next.8
    Preparing search index...

    Interface ParsedArkContract

    Parsed result from decoding an arkcontract string.

    This is a low-level representation. For type-safe contract creation, use contractFromArkContract or contractFromArkContractWithAddress which validate params through the handler system.

    interface ParsedArkContract {
        data: Record<string, string>;
        type: string;
    }
    Index

    Properties

    Properties

    data: Record<string, string>

    All key-value pairs from the string

    type: string

    Contract type (e.g., "vhtlc", "default")