//#region extensions/crypto/src/commands/delegate-command.d.ts /** * /delegate — On-chain delegation management for policies (EIP-7710). * * Subcommands: * /delegate — show delegation status for all policies * /delegate create — compile policy to on-chain delegation * /delegate revoke — revoke on-chain delegation * /delegate status — show all delegations with chain + hash * /delegate chains — list supported chains * * The delegation workflow: * 1. User creates a policy via natural language (policy engine) * 2. /delegate create compiles the policy to caveats * 3. User reviews the compilation and signs (WalletConnect or private key) * 4. Signed delegation is stored and can be redeemed on-chain * * This command does NOT create policies — that's handled by the policy_manage * tool via natural language. This command bridges policies to on-chain enforcement. */ declare const delegateCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { delegateCommand }; //# sourceMappingURL=delegate-command.d.mts.map