2020-08-19 05:15:40 +00:00
|
|
|
// Copyright © 2020 Vulcanize, Inc
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package statediff
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-09-15 00:25:02 +00:00
|
|
|
sd "github.com/ethereum/go-ethereum/statediff"
|
2020-08-19 05:15:40 +00:00
|
|
|
)
|
|
|
|
|
2020-09-04 16:50:49 +00:00
|
|
|
// APIName is the namespace used for the state diffing service API
|
|
|
|
const APIName = "statediff"
|
|
|
|
|
|
|
|
// APIVersion is the version of the state diffing service API
|
|
|
|
const APIVersion = "0.0.1"
|
|
|
|
|
2020-08-19 05:17:34 +00:00
|
|
|
// PublicStateDiffAPI provides an RPC interface
|
|
|
|
// that can be used to fetch historical diffs from leveldb directly
|
2020-08-19 05:15:40 +00:00
|
|
|
type PublicStateDiffAPI struct {
|
|
|
|
sds IService
|
|
|
|
}
|
|
|
|
|
2020-08-19 05:17:34 +00:00
|
|
|
// NewPublicStateDiffAPI creates an rpc interface for the underlying statediff service
|
2020-08-19 05:15:40 +00:00
|
|
|
func NewPublicStateDiffAPI(sds IService) *PublicStateDiffAPI {
|
|
|
|
return &PublicStateDiffAPI{
|
|
|
|
sds: sds,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateDiffAt returns a state diff payload at the specific blockheight
|
2020-09-15 00:25:02 +00:00
|
|
|
func (api *PublicStateDiffAPI) StateDiffAt(ctx context.Context, blockNumber uint64, params Params) (*sd.Payload, error) {
|
2020-08-19 05:15:40 +00:00
|
|
|
return api.sds.StateDiffAt(blockNumber, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateTrieAt returns a state trie payload at the specific blockheight
|
2020-09-15 00:25:02 +00:00
|
|
|
func (api *PublicStateDiffAPI) StateTrieAt(ctx context.Context, blockNumber uint64, params Params) (*sd.Payload, error) {
|
2020-08-19 05:15:40 +00:00
|
|
|
return api.sds.StateTrieAt(blockNumber, params)
|
|
|
|
}
|