2020-04-08 10:56:04 +00:00
|
|
|
package blockchainer
|
2018-03-14 09:36:59 +00:00
|
|
|
|
2018-11-26 21:12:33 +00:00
|
|
|
import (
|
2020-07-09 09:57:24 +00:00
|
|
|
"math/big"
|
|
|
|
|
2020-03-25 15:30:21 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/mempool"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
2018-11-26 21:12:33 +00:00
|
|
|
)
|
2018-03-14 09:36:59 +00:00
|
|
|
|
|
|
|
// Blockchainer is an interface that abstract the implementation
|
|
|
|
// of the blockchain.
|
|
|
|
type Blockchainer interface {
|
2020-06-05 16:01:10 +00:00
|
|
|
ApplyPolicyToTxSet([]*transaction.Transaction) []*transaction.Transaction
|
2019-02-20 17:39:32 +00:00
|
|
|
GetConfig() config.ProtocolConfiguration
|
2020-01-14 12:32:07 +00:00
|
|
|
AddHeaders(...*block.Header) error
|
|
|
|
AddBlock(*block.Block) error
|
2020-05-29 14:20:00 +00:00
|
|
|
AddStateRoot(r *state.MPTRoot) error
|
2018-03-14 09:36:59 +00:00
|
|
|
BlockHeight() uint32
|
2020-07-09 09:57:24 +00:00
|
|
|
CalculateClaimable(value *big.Int, startHeight, endHeight uint32) *big.Int
|
2019-11-07 17:47:48 +00:00
|
|
|
Close()
|
2018-03-14 09:36:59 +00:00
|
|
|
HeaderHeight() uint32
|
2020-01-14 12:32:07 +00:00
|
|
|
GetBlock(hash util.Uint256) (*block.Block, error)
|
2019-11-28 16:06:09 +00:00
|
|
|
GetContractState(hash util.Uint160) *state.Contract
|
2020-07-28 13:36:47 +00:00
|
|
|
GetContractScriptHash(id int32) (util.Uint160, error)
|
2020-04-26 17:04:16 +00:00
|
|
|
GetEnrollments() ([]state.Validator, error)
|
2020-07-09 09:57:24 +00:00
|
|
|
GetGoverningTokenBalance(acc util.Uint160) (*big.Int, uint32)
|
2018-03-14 09:36:59 +00:00
|
|
|
GetHeaderHash(int) util.Uint256
|
2020-01-14 12:32:07 +00:00
|
|
|
GetHeader(hash util.Uint256) (*block.Header, error)
|
2018-03-14 09:36:59 +00:00
|
|
|
CurrentHeaderHash() util.Uint256
|
|
|
|
CurrentBlockHash() util.Uint256
|
|
|
|
HasBlock(util.Uint256) bool
|
|
|
|
HasTransaction(util.Uint256) bool
|
2019-11-28 16:06:09 +00:00
|
|
|
GetAccountState(util.Uint160) *state.Account
|
2020-02-21 14:56:28 +00:00
|
|
|
GetAppExecResult(util.Uint256) (*state.AppExecResult, error)
|
2020-07-11 10:10:57 +00:00
|
|
|
GetNextBlockValidators() ([]*keys.PublicKey, error)
|
2020-03-05 12:16:03 +00:00
|
|
|
GetNEP5TransferLog(util.Uint160) *state.NEP5TransferLog
|
2020-03-11 15:22:46 +00:00
|
|
|
GetNEP5Balances(util.Uint160) *state.NEP5Balances
|
2020-04-26 17:04:16 +00:00
|
|
|
GetValidators() ([]*keys.PublicKey, error)
|
2020-06-23 15:15:55 +00:00
|
|
|
GetStandByValidators() keys.PublicKeys
|
2019-10-11 11:22:53 +00:00
|
|
|
GetScriptHashesForVerifying(*transaction.Transaction) ([]util.Uint160, error)
|
2020-05-29 14:20:00 +00:00
|
|
|
GetStateRoot(height uint32) (*state.MPTRootState, error)
|
2020-06-18 10:50:30 +00:00
|
|
|
GetStorageItem(id int32, key []byte) *state.StorageItem
|
|
|
|
GetStorageItems(id int32) (map[string]*state.StorageItem, error)
|
2020-06-10 11:45:55 +00:00
|
|
|
GetTestVM(tx *transaction.Transaction) *vm.VM
|
2019-02-20 17:39:32 +00:00
|
|
|
GetTransaction(util.Uint256) (*transaction.Transaction, uint32, error)
|
2020-01-15 07:52:59 +00:00
|
|
|
mempool.Feer // fee interface
|
2020-02-04 15:43:21 +00:00
|
|
|
PoolTx(*transaction.Transaction) error
|
2020-05-12 14:20:41 +00:00
|
|
|
SubscribeForBlocks(ch chan<- *block.Block)
|
|
|
|
SubscribeForExecutions(ch chan<- *state.AppExecResult)
|
|
|
|
SubscribeForNotifications(ch chan<- *state.NotificationEvent)
|
|
|
|
SubscribeForTransactions(ch chan<- *transaction.Transaction)
|
2020-01-14 12:32:07 +00:00
|
|
|
VerifyTx(*transaction.Transaction, *block.Block) error
|
2020-02-04 14:36:11 +00:00
|
|
|
GetMemPool() *mempool.Pool
|
2020-05-12 14:20:41 +00:00
|
|
|
UnsubscribeFromBlocks(ch chan<- *block.Block)
|
|
|
|
UnsubscribeFromExecutions(ch chan<- *state.AppExecResult)
|
|
|
|
UnsubscribeFromNotifications(ch chan<- *state.NotificationEvent)
|
|
|
|
UnsubscribeFromTransactions(ch chan<- *transaction.Transaction)
|
2018-03-14 09:36:59 +00:00
|
|
|
}
|