Sha256: b5321a8b50bc8edaa629d86abaa5e45a5ffba5065e860fbe8df7e1ba0bf60c00

Contents?: true

Size: 485 Bytes

Versions: 2

Compression:

Stored size: 485 Bytes

Contents

// Copyright (c) The Libra Core Contributors
// SPDX-License-Identifier: Apache-2.0

syntax = "proto3";

package types;

// Protobuf definition for the Rust struct ValidatorPublicKeys
message ValidatorPublicKeys {
  // Validator account address
  bytes account_address = 1;
  // Consensus public key
  bytes consensus_public_key = 2;
  // Network signing publick key
  bytes network_signing_public_key = 3;
  /// Network identity publick key
  bytes network_identity_public_key = 4;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libra_client-0.2.1 protos/validator_public_keys.proto
libra_client-0.1.7 protos/validator_public_keys.proto