Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function waitForEvmEip7702Delegation(options: WaitForEvmEip7702DelegationOptions): Promise< | false | EvmEip7702DelegationOperation>;
options
WaitForEvmEip7702DelegationOptions
Promise
false
EvmEip7702DelegationOperation
const result = await waitForEvmEip7702Delegation({ delegationOperationId: 'op-123', timeoutMs: 60_000, }); if (result) { console.log('Delegation completed:', result.transactionHash); } else { console.log('Timed out'); }
Was this page helpful?