All chains
    Preparing search index...

    Type Alias proxy_announced

    proxy_announced: TxDescriptor<
        {
            call: TxCallData;
            delegate: MultiAddress;
            force_proxy_type?: Enum<
                {
                    Alliance: undefined;
                    Ambassador: undefined;
                    Any: undefined;
                    CancelProxy: undefined;
                    Collator: undefined;
                    Fellowship: undefined;
                    NonTransfer: undefined;
                    Secretary: undefined;
                },
            >;
            real: MultiAddress;
        },
    >

    Dispatch the given call from an account that the sender is authorized for through add_proxy.

    Removes any corresponding announcement(s).

    The dispatch origin for this call must be Signed.

    Parameters:

    • real: The account that the proxy will make a call on behalf of.
    • force_proxy_type: Specify the exact proxy type to be used and checked for this call.
    • call: The call to be made by the real account.