@xoxno/sdk-js
    Preparing search index...

    Interface StellarGovernanceExecuteArgs

    interface StellarGovernanceExecuteArgs {
        argsXdr: string[];
        functionName: string;
        predecessor?: StellarGovernanceSalt;
        salt: StellarGovernanceSalt;
        target: string;
    }
    Index

    Properties

    argsXdr: string[]

    The controller-call args, each a base64 ScVal XDR string. These must be the SAME ScVals the matching proposal scheduled (the timelock hashes them into the op id), in the controller method's arg order. Reconstructed via xdr.ScVal.fromXDR(s, 'base64').

    functionName: string

    Controller method name → Soroban Symbol.

    predecessor?: StellarGovernanceSalt

    predecessor: BytesN<32> — defaults to the 32-zero-byte value used for every op in this system. Override only if a non-zero predecessor is used.

    salt: BytesN<32> — the same salt used at propose time.

    target: string

    Controller (or other) contract the scheduled op targets.