PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/@substrate/txwrapper-substrate/lib/methods/proxy
Просмотр файла: proxyAnnounced.d.ts
import { Args, BaseTxInfo, OptionsWithMeta, UnsignedTransaction } from '@substrate/txwrapper-core';
export interface ProxyProxyAnnouncedArgs extends Args {
/**
* The account that previously announced the call.
*/
delegate: string;
/**
* The account that the proxy will make a call on behalf of.
*/
real: string;
/**
* Specify the exact proxy type to be used and checked for this call.
*/
forceProxyType: string;
/**
* The call to be made by the `real` account.
* To take advantage of txwrapper methods, this could be UnsignedTransaction.method.
*/
call: {
callIndex?: string;
args?: string;
} | string;
}
/**
* Dispatch the given `call` from an account that the sender is authorised for through
* `add_proxy`.
*
* Removes any corresponding announcement(s).
*
* The dispatch origin for this call must be _Signed_.
*
* @param args
* @param info
* @param options
*/
export declare function proxyAnnounced(args: ProxyProxyAnnouncedArgs, info: BaseTxInfo, options: OptionsWithMeta): UnsignedTransaction;
Выполнить команду
Для локальной разработки. Не используйте в интернете!