Base Argument object for methods.

interface ProxyProxyAnnouncedArgs {
    call: string | {
        args?: string;
        callIndex?: string;
    };
    delegate: string;
    forceProxyType: string;
    real: string;
}

Hierarchy (view full)

  • Args
    • ProxyProxyAnnouncedArgs

Properties

call: string | {
    args?: string;
    callIndex?: string;
}

The call to be made by the real account. To take advantage of txwrapper methods, this could be UnsignedTransaction.method.

delegate: string

The account that previously announced the call.

forceProxyType: string

Specify the exact proxy type to be used and checked for this call.

real: string

The account that the proxy will make a call on behalf of.