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

     1  package result
     2  
     3  // FindStorage represents the result of `findstorage` RPC handler.
     4  type FindStorage struct {
     5  	Results []KeyValue `json:"results"`
     6  	// Next contains the index of the next subsequent element of the contract storage
     7  	// that can be retrieved during the next iteration.
     8  	Next      int  `json:"next"`
     9  	Truncated bool `json:"truncated"`
    10  }