Table of Contents

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

Pubkey string

The delegator's compressed public key (hex-encoded).

Fee string

The service fee applied by the delegator.

DelegatorAddress string

The 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

string

Fee

The service fee applied by the delegator.

public string Fee { get; init; }

Property Value

string

Pubkey

The delegator's compressed public key (hex-encoded).

public string Pubkey { get; init; }

Property Value

string