nym_node_requests/api/v1/mixnode/models.rs
1// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
2// SPDX-License-Identifier: Apache-2.0
3
4use schemars::JsonSchema;
5use serde::{Deserialize, Serialize};
6
7#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
8#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
9pub struct Mixnode {
10 // /// Base58 encoded ed25519 EdDSA public key of the mixnode.
11 // pub encoded_identity_key: String,
12 //
13 // /// Base58-encoded x25519 public key used for sphinx key derivation.
14 // pub encoded_sphinx_key: String,
15}