Class SystemDeleteContractExtensions
Extension methods for administratively deleting a contract from the network.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class SystemDeleteContractExtensions
Methods
| Edit this page View SourceSystemDeleteContractAsync(ConsensusClient, SystemDeleteContractParams, Action<IConsensusContext>?)
Removes a contract from the network via Administrative Delete
Declaration
public static Task<TransactionReceipt> SystemDeleteContractAsync(this ConsensusClient client, SystemDeleteContractParams deleteParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the administrative command. |
| SystemDeleteContractParams | deleteParams | The parameters for the system delete operation, including the contract address to delete. |
| 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 success of the contract deletion. |
Examples
// Superuser-only contract deletion, analogous to SystemDeleteFile.
// Bypasses the contract's Administrator key check. Restorable.
var receipt = await client.SystemDeleteContractAsync(new SystemDeleteContractParams
{
Contract = contract
});
Console.WriteLine($"System 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. |
| 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. |