mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
75dec0d79c
* sync all third party proto definitions * update cosmos swagger for new imported third party protos
18 lines
370 B
Protocol Buffer
18 lines
370 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmos.base.kv.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/types/kv";
|
|
|
|
// Pairs defines a repeated slice of Pair objects.
|
|
message Pairs {
|
|
repeated Pair pairs = 1 [(gogoproto.nullable) = false];
|
|
}
|
|
|
|
// Pair defines a key/value bytes tuple.
|
|
message Pair {
|
|
bytes key = 1;
|
|
bytes value = 2;
|
|
}
|