add_proxy: TxDescriptor<
    {
        delay: number;
        delegate: MultiAddress;
        proxy_type: Enum<
            {
                Any: undefined;
                CancelProxy: undefined;
                Collator: undefined;
                Identity: undefined;
                IdentityJudgement: undefined;
                NonTransfer: undefined;
            },
        >;
    },
>

Register a proxy account for the sender that is able to make calls on its behalf.

The dispatch origin for this call must be Signed.

Parameters:

  • proxy: The account that the caller would like to make a proxy.
  • proxy_type: The permissions allowed for this proxy account.
  • delay: The announcement period required of the initial proxy. Will generally be zero.