Show / Hide Table of Contents

Class PendingParams

Pending (Scheduled) Transaction Parameters. Used for creating a Signatory signaling that the transaction should be accepted but not immediately executed. It includes optional details descrbing the details of how the transaction is to be scheduled for execution.

Inheritance
Object
PendingParams
Implements
IEquatable<PendingParams>
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class PendingParams : IEquatable<PendingParams>

Properties

| Improve this Doc View Source

Administrator

An optional endorsement that can be used to cancel or delete the scheduling of the pending transaction if it has not already been executed or expired and removed by the network. If left

null
, the scheduling of the pending transaction is

immutable. It will only be removed by the network by execution or expiration.

Declaration
public Endorsement Administrator { get; set; }
Property Value
Type Description
Endorsement
| Improve this Doc View Source

Memo

Short memo/description that will be attached to network record holding the pending transaction (not the memo of pending transaction itself), limited to 100 bytes.

Declaration
public string Memo { get; set; }
Property Value
Type Description
String
| Improve this Doc View Source

PendingPayer

Optional address of the operator account that explicitly pays for the execution of the pending transaction when it executes. If not specified (left null), the payer of the transaction scheduling this pending transaction will pay for the pending transaction. (Which is the current account identified as the payer in the Context).

Declaration
public Address PendingPayer { get; set; }
Property Value
Type Description
Address

Implements

System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top .NET Client Library for Hedera Hashgraph