Class SystemRestoreContractExtensions
Extension methods for administratively restoring a deleted contract.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class SystemRestoreContractExtensions
Methods
| Edit this page View SourceSystemRestoreContractAsync(ConsensusClient, SystemRestoreContractParams, Action<IConsensusContext>?)
Restores a contract to the network via Administrative Restore
Declaration
public static Task<TransactionReceipt> SystemRestoreContractAsync(this ConsensusClient client, SystemRestoreContractParams restoreParams, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the administrative command. |
| SystemRestoreContractParams | restoreParams | The parameters for the system restore operation, including the contract address to restore. |
| 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 restoration. |
Examples
// Undo a previous SystemDeleteContractAsync within the grace window.
var receipt = await client.SystemRestoreContractAsync(new SystemRestoreContractParams
{
Contract = contract
});
Console.WriteLine($"System restore 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 restore request as invalid or had missing data. |