Class DeleteContractExtensions
Extension methods for deleting smart contracts.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class DeleteContractExtensions
Methods
| Edit this page View SourceDeleteContractAsync(ConsensusClient, DeleteContractParams, Action<IConsensusContext>?)
Deletes a contract instance from the network returning the remaining crypto balance to the specified address. Must be signed by the admin key.
Declaration
public static Task<TransactionReceipt> DeleteContractAsync(this ConsensusClient client, DeleteContractParams deleteParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client executing the contract delete. |
| DeleteContractParams | deleteParams | The contract delete parameters. |
| Action<IConsensusContext> | configure | Optional callback method providing an opportunity to modify the execution configuration for just this method call. It is executed prior to submitting the request to the network. |
Returns
| Type | Description |
|---|---|
| Task<TransactionReceipt> | A transaction receipt indicating a successful operation. |
Examples
// Delete a contract and sweep its remaining HBAR balance to the
// specified recipient. Requires the contract's Administrator key.
var receipt = await client.DeleteContractAsync(new DeleteContractParams
{
Contract = contract,
FundsReceiver = fundsReceiver
});
Console.WriteLine($"Delete status: {receipt.Status}");
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | If required arguments are missing. |
| InvalidOperationException | If required context configuration is missing. |
| PrecheckException | If the gateway node rejected the request upon submission, for example if the contract is already deleted. |
| ConsensusException | If the network was unable to come to consensus before the duration of the transaction expired. |
| TransactionException | If the network rejected the delete request as invalid or had missing data. |