github.com/cosmos/cosmos-sdk@v0.50.10/types/kv/kv.go (about)

     1  package kv
     2  
     3  type Pair struct {
     4  	Key   []byte
     5  	Value []byte
     6  }
     7  
     8  type Pairs struct {
     9  	Pairs []Pair
    10  }