interface Decoder {
    type: "code_hash" | "type_id" | "type_script";
    hash?: string;
    script?: {
        code_hash: string;
        hash_type: string;
        args: string;
    };
}

Properties

Properties

type: "code_hash" | "type_id" | "type_script"
hash?: string
script?: {
    code_hash: string;
    hash_type: string;
    args: string;
}