Class UpdateAccountExtensions
Extension methods for updating cryptocurrency account properties.
Inherited Members
Namespace: Hiero
Assembly: Hiero.dll
Syntax
public static class UpdateAccountExtensions
Methods
| Edit this page View SourceUpdateAccountAsync(ConsensusClient, UpdateAccountParams, Action<IConsensusContext>?)
Updates the changeable properties of a hedera network account.
Declaration
public static Task<TransactionReceipt> UpdateAccountAsync(this ConsensusClient client, UpdateAccountParams updateParameters, Action<IConsensusContext>? configure = null)
Parameters
| Type | Name | Description |
|---|---|---|
| ConsensusClient | client | The Consensus Node Client orchestrating the update. |
| UpdateAccountParams | updateParameters | The account update parameters, includes a required EntityId reference to the account to update plus a number of changeable properties of the account. |
| 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 operation. |
Examples
// Rotate the signing key on an existing account. The network requires
// both the *current* key and the *new* key to sign — supply the new
// signatory on the params so it is combined with the existing context
// signatory during signing.
var receipt = await client.UpdateAccountAsync(new UpdateAccountParams
{
Address = account,
Endorsement = newEndorsement,
Memo = "Key rotation 2026-Q2",
Signatory = newSignatory
});
Console.WriteLine($"Update 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 update request as invalid or had missing data. |