pub struct NodeMetadataPayload {
    pub staker_address: Address,
    pub domain: String,
    pub timestamp_epoch: u32,
    pub verifying_key: PublicKey,
    pub encrypting_key: PublicKey,
    pub certificate_bytes: Box<[u8]>,
    pub host: String,
    pub port: u16,
    pub decentralized_identity_evidence: Option<[u8; 65]>,
}
Expand description

Node metadata.

Fields

staker_address: Address

The staker’s Ethereum address.

domain: String

The network identifier.

timestamp_epoch: u32

The timestamp of the metadata creation.

verifying_key: PublicKey

The node’s verifying key.

encrypting_key: PublicKey

The node’s encrypting key.

certificate_bytes: Box<[u8]>

The node’s SSL certificate (serialized in PEM format).

host: String

The hostname of the node’s REST service.

port: u16

The port of the node’s REST service.

decentralized_identity_evidence: Option<[u8; 65]>

The node’s verifying key signed by the private key corresponding to the worker address.

Implementations

Derives the address corresponding to the public key that was used to create decentralized_identity_evidence.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.