Show / Hide Table of Contents

Class RoyaltyTransfer

Represents a token or hBar transfer (Token, Payer, Amount, Receiver) fufilling a royalty payment for the transfer of a token or asset.

Inheritance
Object
RoyaltyTransfer
Implements
IEquatable<RoyaltyTransfer>
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 RoyaltyTransfer : IEquatable<RoyaltyTransfer>

Properties

| Improve this Doc View Source

Amount

The (divisible) amount of tokens or crypto transferred.

Declaration
public long Amount { get; set; }
Property Value
Type Description
Int64
| Improve this Doc View Source

Payers

The Address(s) that were charged the assessed fee.

Declaration
public IReadOnlyCollection<Address> Payers { get; }
Property Value
Type Description
IReadOnlyCollection<Address>
| Improve this Doc View Source

Receiver

The Address receiving the transferred token or crypto.

Declaration
public Address Receiver { get; }
Property Value
Type Description
Address
| Improve this Doc View Source

Token

The Address of the token who's coins (or crypto) have been transferred to pay the royalty.

Declaration
public Address Token { get; }
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