Variable Data_SolInstruction

Data_SolInstruction: {
    create(
        base?: {
            accounts?: string[];
            instructionData?: string;
            parsed?: { [key: string]: any };
            programAccountId?: string;
            slot?: bigint;
        },
    ): Data_SolInstruction;
    decode(input: Uint8Array | Reader, length?: number): Data_SolInstruction;
    encode(message: Data_SolInstruction, writer?: Writer): Writer;
    fromJSON(object: any): Data_SolInstruction;
    fromPartial(
        object: {
            accounts?: string[];
            instructionData?: string;
            parsed?: { [key: string]: any };
            programAccountId?: string;
            slot?: bigint;
        },
    ): Data_SolInstruction;
    toJSON(message: Data_SolInstruction): unknown;
}