Show / Hide Table of Contents

Class DeleteTokenExtensions

Extension methods for deleting a token from the network.

Inheritance
object
DeleteTokenExtensions
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 DeleteTokenExtensions

Methods

| Edit this page View Source

DeleteTokenAsync(ConsensusClient, DeleteTokenParams, Action<IConsensusContext>?)

Deletes a token instance from the network. Must be signed by the admin key.

Declaration
public static Task<TransactionReceipt> DeleteTokenAsync(this ConsensusClient client, DeleteTokenParams deleteParams, Action<IConsensusContext>? configure = null)
Parameters
Type Name Description
ConsensusClient client

The Consensus Node Client orchestrating the deletion.

DeleteTokenParams deleteParams

The details identifying the token 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 a successful operation.

Examples
// Permanently delete a token. Circulation stays in the treasury but
// no further operations are possible. Requires Administrator to sign.
// Immutable tokens cannot be deleted.
var receipt = await client.DeleteTokenAsync(token);
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 token 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 request as invalid or had missing data.

| Edit this page View Source

DeleteTokenAsync(ConsensusClient, EntityId, Action<IConsensusContext>?)

Deletes a token instance from the network. Must be signed by the admin key.

Declaration
public static Task<TransactionReceipt> DeleteTokenAsync(this ConsensusClient client, EntityId token, Action<IConsensusContext>? configure = null)
Parameters
Type Name Description
ConsensusClient client

The Consensus Node Client orchestrating the deletion.

EntityId token

The identifier of the token instance that will be deleted.

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
// Permanently delete a token. Circulation stays in the treasury but
// no further operations are possible. Requires Administrator to sign.
// Immutable tokens cannot be deleted.
var receipt = await client.DeleteTokenAsync(token);
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 token 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 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