eth-statediff-service/pkg/api.go

46 lines
1.6 KiB
Go
Raw Normal View History

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-08-19 05:57:57 +00:00
2020-08-19 05:15:40 +00:00
"github.com/ethereum/go-ethereum/statediff"
)
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
func (api *PublicStateDiffAPI) StateDiffAt(ctx context.Context, blockNumber uint64, params statediff.Params) (*statediff.Payload, error) {
return api.sds.StateDiffAt(blockNumber, params)
}
// StateTrieAt returns a state trie payload at the specific blockheight
func (api *PublicStateDiffAPI) StateTrieAt(ctx context.Context, blockNumber uint64, params statediff.Params) (*statediff.Payload, error) {
return api.sds.StateTrieAt(blockNumber, params)
}