2018-03-14 10:36:59 +01:00
|
|
|
package core
|
|
|
|
|
2018-11-26 22:12:33 +01:00
|
|
|
import (
|
2020-03-03 17:21:42 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/config"
|
|
|
|
"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/storage"
|
|
|
|
"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 22:12:33 +01:00
|
|
|
)
|
2018-03-14 10:36:59 +01:00
|
|
|
|
|
|
|
// Blockchainer is an interface that abstract the implementation
|
|
|
|
// of the blockchain.
|
|
|
|
type Blockchainer interface {
|
2020-02-18 20:16:38 +03:00
|
|
|
ApplyPolicyToTxSet([]mempool.TxWithFee) []mempool.TxWithFee
|
2019-02-20 18:39:32 +01:00
|
|
|
GetConfig() config.ProtocolConfiguration
|
2020-01-14 15:32:07 +03:00
|
|
|
AddHeaders(...*block.Header) error
|
|
|
|
AddBlock(*block.Block) error
|
2018-03-14 10:36:59 +01:00
|
|
|
BlockHeight() uint32
|
2020-02-25 16:15:17 +03:00
|
|
|
CalculateClaimable(value util.Fixed8, startHeight, endHeight uint32) (util.Fixed8, util.Fixed8, error)
|
2019-11-07 20:47:48 +03:00
|
|
|
Close()
|
2018-03-14 10:36:59 +01:00
|
|
|
HeaderHeight() uint32
|
2020-01-14 15:32:07 +03:00
|
|
|
GetBlock(hash util.Uint256) (*block.Block, error)
|
2019-11-28 19:06:09 +03:00
|
|
|
GetContractState(hash util.Uint160) *state.Contract
|
2020-03-05 17:48:30 +03:00
|
|
|
GetEnrollments() ([]*state.Validator, error)
|
2018-03-14 10:36:59 +01:00
|
|
|
GetHeaderHash(int) util.Uint256
|
2020-01-14 15:32:07 +03:00
|
|
|
GetHeader(hash util.Uint256) (*block.Header, error)
|
2018-03-14 10:36:59 +01:00
|
|
|
CurrentHeaderHash() util.Uint256
|
|
|
|
CurrentBlockHash() util.Uint256
|
|
|
|
HasBlock(util.Uint256) bool
|
|
|
|
HasTransaction(util.Uint256) bool
|
2019-11-28 19:06:09 +03:00
|
|
|
GetAssetState(util.Uint256) *state.Asset
|
|
|
|
GetAccountState(util.Uint160) *state.Account
|
2020-02-21 17:56:28 +03:00
|
|
|
GetAppExecResult(util.Uint256) (*state.AppExecResult, error)
|
2020-03-05 15:16:03 +03:00
|
|
|
GetNEP5TransferLog(util.Uint160) *state.NEP5TransferLog
|
2020-03-11 18:22:46 +03:00
|
|
|
GetNEP5Balances(util.Uint160) *state.NEP5Balances
|
2019-12-17 14:51:07 +03:00
|
|
|
GetValidators(txes ...*transaction.Transaction) ([]*keys.PublicKey, error)
|
2019-10-11 14:22:53 +03:00
|
|
|
GetScriptHashesForVerifying(*transaction.Transaction) ([]util.Uint160, error)
|
2019-11-28 19:06:09 +03:00
|
|
|
GetStorageItem(scripthash util.Uint160, key []byte) *state.StorageItem
|
|
|
|
GetStorageItems(hash util.Uint160) (map[string]*state.StorageItem, error)
|
2019-10-29 18:31:39 +03:00
|
|
|
GetTestVM() (*vm.VM, storage.Store)
|
2019-02-20 18:39:32 +01:00
|
|
|
GetTransaction(util.Uint256) (*transaction.Transaction, uint32, error)
|
2020-03-09 16:56:37 +03:00
|
|
|
GetUnspentCoinState(util.Uint256) *state.UnspentCoin
|
2020-02-26 10:58:20 +03:00
|
|
|
References(t *transaction.Transaction) ([]transaction.InOut, error)
|
2020-01-15 10:52:59 +03:00
|
|
|
mempool.Feer // fee interface
|
2020-02-04 18:43:21 +03:00
|
|
|
PoolTx(*transaction.Transaction) error
|
2020-01-14 15:32:07 +03:00
|
|
|
VerifyTx(*transaction.Transaction, *block.Block) error
|
2020-02-04 17:36:11 +03:00
|
|
|
GetMemPool() *mempool.Pool
|
2018-03-14 10:36:59 +01:00
|
|
|
}
|