github.com/Finschia/finschia-sdk@v0.49.1/proto/cosmos/crypto/multisig/keys.proto (about)

     1  syntax = "proto3";
     2  package cosmos.crypto.multisig;
     3  
     4  import "gogoproto/gogo.proto";
     5  import "google/protobuf/any.proto";
     6  
     7  option go_package = "github.com/Finschia/finschia-sdk/crypto/keys/multisig";
     8  
     9  // LegacyAminoPubKey specifies a public key type
    10  // which nests multiple public keys and a threshold,
    11  // it uses legacy amino address rules.
    12  message LegacyAminoPubKey {
    13    option (gogoproto.goproto_getters) = false;
    14  
    15    uint32   threshold                       = 1 [(gogoproto.moretags) = "yaml:\"threshold\""];
    16    repeated google.protobuf.Any public_keys = 2
    17        [(gogoproto.customname) = "PubKeys", (gogoproto.moretags) = "yaml:\"pubkeys\""];
    18  }