The Honeycomb instance.
The arguments for creating the "Revoke Delegate" operation.
An object containing the "Revoke Delegate" operation.
const honeycomb = new Honeycomb(...); // Initialize Honeycomb instance
const holderAccount = ...; // HplHolderAccount instance
// Create a "Revoke Delegate" operation for the holder account
const operationArgs: CreateRevokeDelegateOperationArgs = {
holderAccount,
};
const { operation } = await createRevokeDelegateOperation(honeycomb, operationArgs);
operation.send();
Generated using TypeDoc
Creates a "Revoke Delegate" operation to remove the delegation authority from the specified holder account.