Show / Hide Table of Contents

Class SystemRestoreContractExtensions

Extension methods for administratively restoring a deleted contract.

Inheritance
object
SystemRestoreContractExtensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class SystemRestoreContractExtensions

Methods

| Edit this page View Source

SystemRestoreContractAsync(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.

  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph