github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/pkg/neorpc/result/findstates.go (about)

     1  package result
     2  
     3  type FindStates struct {
     4  	Results    []KeyValue    `json:"results"`
     5  	FirstProof *ProofWithKey `json:"firstProof,omitempty"`
     6  	LastProof  *ProofWithKey `json:"lastProof,omitempty"`
     7  	Truncated  bool          `json:"truncated"`
     8  }
     9  
    10  type KeyValue struct {
    11  	Key   []byte `json:"key"`
    12  	Value []byte `json:"value"`
    13  }