Validator

data class Validator(val alias: String? = null, val displayName: String? = null, val publicKey: String? = null, val host: String? = null, val history: String? = null)

Validator information from the stellar.toml VALIDATORS list.

Contains one set of fields for each validator node the organization runs. Combined with the steps outlined in SEP-20, this allows organizations to declare their validator nodes and let others know the location of any public archives they maintain.

See SEP-0001 Specification

Constructors

Link copied to clipboard
constructor(alias: String? = null, displayName: String? = null, publicKey: String? = null, host: String? = null, history: String? = null)

Properties

Link copied to clipboard

A name for display in stellar-core configs that conforms to ^a-z0-9-{2,16}$.

Link copied to clipboard

A human-readable name for display in quorum explorers and other interfaces.

Link copied to clipboard

The location of the history archive published by this validator.

Link copied to clipboard
val host: String?

The IP:port or domain:port peers can use to connect to the node.

Link copied to clipboard

The Stellar account associated with the node.