Class DelegatorInfo
- Namespace
- NArk.Abstractions.Services
- Assembly
- NArk.Abstractions.dll
Information about a delegator service.
public record DelegatorInfo : IEquatable<DelegatorInfo>
- Inheritance
-
DelegatorInfo
- Implements
- Inherited Members
Constructors
DelegatorInfo(string, string, string)
Information about a delegator service.
public DelegatorInfo(string Pubkey, string Fee, string DelegatorAddress)
Parameters
PubkeystringThe delegator's compressed public key (hex-encoded).
FeestringThe service fee applied by the delegator.
DelegatorAddressstringThe delegator's Ark address for receiving service fees.
Properties
DelegatorAddress
The delegator's Ark address for receiving service fees.
public string DelegatorAddress { get; init; }
Property Value
Fee
The service fee applied by the delegator.
public string Fee { get; init; }
Property Value
Pubkey
The delegator's compressed public key (hex-encoded).
public string Pubkey { get; init; }