Documentation ¶
Index ¶
- Variables
- func AppendNewTestHeaders(headers []*types.Header, n int) []*types.Header
- func AppendNewTestheadersWithSeed(headers []*types.Header, n int, seed uint64) []*types.Header
- func HeadersToBlocks(headers []*types.Header) []*types.Block
- func NewTestHeaders(n int) []*types.Header
- func NewTestHeadersWithSeed(genesis *types.Header, n int, seed uint64) []*types.Header
- type BlockResult
- type Blockchain
- func NewBlockchain(logger hclog.Logger, db storage.Storage, config *chain.Chain, ...) (*Blockchain, error)
- func NewMockBlockchain(callbackMap map[TestCallbackType]interface{}) (*Blockchain, error)
- func NewTestBlockchain(t *testing.T, headers []*types.Header) *Blockchain
- func TestBlockchain(t *testing.T, genesis *chain.Genesis) *Blockchain
- func (b *Blockchain) CalculateBaseFee(parent *types.Header) uint64
- func (b *Blockchain) CalculateGasLimit(number uint64) (uint64, error)
- func (b *Blockchain) Close() error
- func (b *Blockchain) ComputeGenesis() error
- func (b *Blockchain) Config() *chain.Params
- func (b *Blockchain) CurrentTD() *big.Int
- func (b *Blockchain) Empty() bool
- func (b *Blockchain) Genesis() types.Hash
- func (b *Blockchain) GetAvgGasPrice() *big.Int
- func (b *Blockchain) GetBlock(hash types.Hash, number uint64, full bool) (*types.Block, bool)
- func (b *Blockchain) GetBlockByHash(hash types.Hash, full bool) (*types.Block, bool)
- func (b *Blockchain) GetBlockByNumber(blockNumber uint64, full bool) (*types.Block, bool)
- func (b *Blockchain) GetBodyByHash(hash types.Hash) (*types.Body, bool)
- func (b *Blockchain) GetCachedReceipts(headerHash types.Hash) ([]*types.Receipt, error)
- func (b *Blockchain) GetChainTD() (*big.Int, bool)
- func (b *Blockchain) GetConsensus() Verifier
- func (b *Blockchain) GetForks() ([]types.Hash, error)
- func (b *Blockchain) GetHashByNumber(blockNumber uint64) types.Hash
- func (b *Blockchain) GetHashHelper(header *types.Header) func(i uint64) (res types.Hash)
- func (b *Blockchain) GetHeader(hash types.Hash, number uint64) (*types.Header, bool)
- func (b *Blockchain) GetHeaderByHash(hash types.Hash) (*types.Header, bool)
- func (b *Blockchain) GetHeaderByNumber(n uint64) (*types.Header, bool)
- func (b *Blockchain) GetParent(header *types.Header) (*types.Header, bool)
- func (b *Blockchain) GetReceiptsByHash(hash types.Hash) ([]*types.Receipt, error)
- func (b *Blockchain) GetTD(hash types.Hash) (*big.Int, bool)
- func (b *Blockchain) Header() *types.Header
- func (b *Blockchain) ReadTxLookup(hash types.Hash) (types.Hash, bool)
- func (b *Blockchain) SetConsensus(c Verifier)
- func (b *Blockchain) SubscribeEvents() Subscription
- func (b *Blockchain) VerifyFinalizedBlock(block *types.Block) (*types.FullBlock, error)
- func (b *Blockchain) VerifyPotentialBlock(block *types.Block) error
- func (b *Blockchain) WriteBlock(block *types.Block, source string) error
- func (b *Blockchain) WriteFullBlock(fblock *types.FullBlock, source string) error
- func (b *Blockchain) WriteHeaders(headers []*types.Header) error
- func (b *Blockchain) WriteHeadersWithBodies(headers []*types.Header) error
- type Event
- type EventType
- type Executor
- type MockSubscription
- type MockVerifier
- func (m *MockVerifier) GetBlockCreator(header *types.Header) (types.Address, error)
- func (m *MockVerifier) HookGetBlockCreator(fn getBlockCreatorDelegate)
- func (m *MockVerifier) HookPreCommitState(fn preStateCommitDelegate)
- func (m *MockVerifier) HookProcessHeaders(fn processHeadersDelegate)
- func (m *MockVerifier) HookVerifyHeader(fn verifyHeaderDelegate)
- func (m *MockVerifier) PreCommitState(block *types.Block, txn *state.Transition) error
- func (m *MockVerifier) ProcessHeaders(headers []*types.Header) error
- func (m *MockVerifier) VerifyHeader(header *types.Header) error
- type Subscription
- type TestCallbackType
- type TxSigner
- type Verifier
Constants ¶
This section is empty.
Variables ¶
var ( ErrNoBlock = errors.New("no block data passed in") ErrParentNotFound = errors.New("parent block not found") ErrInvalidParentHash = errors.New("parent block hash is invalid") ErrParentHashMismatch = errors.New("invalid parent block hash") ErrInvalidBlockSequence = errors.New("invalid block sequence") ErrInvalidSha3Uncles = errors.New("invalid block sha3 uncles root") ErrInvalidTxRoot = errors.New("invalid block transactions root") ErrInvalidReceiptsSize = errors.New("invalid number of receipts") ErrInvalidStateRoot = errors.New("invalid block state root") ErrInvalidGasUsed = errors.New("invalid block gas used") ErrInvalidReceiptsRoot = errors.New("invalid block receipts root") )
Functions ¶
func AppendNewTestHeaders ¶ added in v0.4.1
AppendNewTestHeaders creates n new headers from an already existing chain
func AppendNewTestheadersWithSeed ¶ added in v0.4.1
AppendNewTestheadersWithSeed creates n new headers from an already existing chain
func NewTestHeaders ¶ added in v0.4.1
NewTestHeaders creates a chain of valid headers
Types ¶
type BlockResult ¶ added in v0.3.0
type Blockchain ¶
type Blockchain struct {
// contains filtered or unexported fields
}
Blockchain is a blockchain reference
func NewBlockchain ¶
func NewBlockchain( logger hclog.Logger, db storage.Storage, config *chain.Chain, consensus Verifier, executor Executor, txSigner TxSigner, ) (*Blockchain, error)
NewBlockchain creates a new blockchain object
func NewMockBlockchain ¶ added in v0.4.1
func NewMockBlockchain( callbackMap map[TestCallbackType]interface{}, ) (*Blockchain, error)
NewMockBlockchain constructs a new mock blockchain
func NewTestBlockchain ¶
func NewTestBlockchain(t *testing.T, headers []*types.Header) *Blockchain
NewTestBlockchain creates a new dummy blockchain for testing
func TestBlockchain ¶
func TestBlockchain(t *testing.T, genesis *chain.Genesis) *Blockchain
func (*Blockchain) CalculateBaseFee ¶ added in v0.9.0
func (b *Blockchain) CalculateBaseFee(parent *types.Header) uint64
CalculateBaseFee calculates the basefee of the header.
func (*Blockchain) CalculateGasLimit ¶
func (b *Blockchain) CalculateGasLimit(number uint64) (uint64, error)
CalculateGasLimit returns the gas limit of the next block after parent
func (*Blockchain) ComputeGenesis ¶
func (b *Blockchain) ComputeGenesis() error
ComputeGenesis computes the genesis hash, and updates the blockchain reference
func (*Blockchain) Config ¶
func (b *Blockchain) Config() *chain.Params
Config returns the blockchain configuration
func (*Blockchain) CurrentTD ¶
func (b *Blockchain) CurrentTD() *big.Int
CurrentTD returns the current total difficulty (atomic)
func (*Blockchain) Empty ¶
func (b *Blockchain) Empty() bool
Empty checks if the blockchain is empty
func (*Blockchain) Genesis ¶
func (b *Blockchain) Genesis() types.Hash
Genesis returns the genesis block
func (*Blockchain) GetAvgGasPrice ¶
func (b *Blockchain) GetAvgGasPrice() *big.Int
GetAvgGasPrice returns the average gas price for the chain
func (*Blockchain) GetBlockByHash ¶
GetBlockByHash returns the block using the block hash
func (*Blockchain) GetBlockByNumber ¶
GetBlockByNumber returns the block using the block number
func (*Blockchain) GetBodyByHash ¶
GetBodyByHash returns the body by their hash
func (*Blockchain) GetCachedReceipts ¶ added in v0.8.0
GetCachedReceipts retrieves cached receipts for given headerHash
func (*Blockchain) GetChainTD ¶
func (b *Blockchain) GetChainTD() (*big.Int, bool)
GetChainTD returns the latest difficulty
func (*Blockchain) GetConsensus ¶
func (b *Blockchain) GetConsensus() Verifier
func (*Blockchain) GetForks ¶
func (b *Blockchain) GetForks() ([]types.Hash, error)
GetForks returns the forks
func (*Blockchain) GetHashByNumber ¶
func (b *Blockchain) GetHashByNumber(blockNumber uint64) types.Hash
GetHashByNumber returns the block hash using the block number
func (*Blockchain) GetHashHelper ¶
GetHashHelper is used by the EVM, so that the SC can get the hash of the header number
func (*Blockchain) GetHeaderByHash ¶
GetHeaderByHash returns the header by his hash
func (*Blockchain) GetHeaderByNumber ¶
func (b *Blockchain) GetHeaderByNumber(n uint64) (*types.Header, bool)
GetHeaderByNumber returns the header using the block number
func (*Blockchain) GetReceiptsByHash ¶
GetReceiptsByHash returns the receipts by their hash
func (*Blockchain) Header ¶
func (b *Blockchain) Header() *types.Header
Header returns the current header (atomic)
func (*Blockchain) ReadTxLookup ¶
ReadTxLookup returns the block hash using the transaction hash
func (*Blockchain) SetConsensus ¶
func (b *Blockchain) SetConsensus(c Verifier)
SetConsensus sets the consensus
func (*Blockchain) SubscribeEvents ¶
func (b *Blockchain) SubscribeEvents() Subscription
SubscribeEvents returns a blockchain event subscription
func (*Blockchain) VerifyFinalizedBlock ¶ added in v0.4.1
VerifyFinalizedBlock verifies that the block is valid by performing a series of checks. It is assumed that the block status is sealed (committed)
func (*Blockchain) VerifyPotentialBlock ¶ added in v0.4.1
func (b *Blockchain) VerifyPotentialBlock(block *types.Block) error
VerifyPotentialBlock does the minimal block verification without consulting the consensus layer. Should only be used if consensus checks are done outside the method call
func (*Blockchain) WriteBlock ¶
func (b *Blockchain) WriteBlock(block *types.Block, source string) error
WriteBlock writes a single block to the local blockchain. It doesn't do any kind of verification, only commits the block to the DB
func (*Blockchain) WriteFullBlock ¶ added in v0.8.0
func (b *Blockchain) WriteFullBlock(fblock *types.FullBlock, source string) error
WriteFullBlock writes a single block to the local blockchain. It doesn't do any kind of verification, only commits the block to the DB This function is a copy of WriteBlock but with a full block which does not require to compute again the Receipts.
func (*Blockchain) WriteHeaders ¶
func (b *Blockchain) WriteHeaders(headers []*types.Header) error
WriteHeaders writes an array of headers
func (*Blockchain) WriteHeadersWithBodies ¶
func (b *Blockchain) WriteHeadersWithBodies(headers []*types.Header) error
WriteHeadersWithBodies writes a batch of headers
type Event ¶
type Event struct { // Old chain (removed headers) if there was a reorg OldChain []*types.Header // New part of the chain (or a fork) NewChain []*types.Header // Difficulty is the new difficulty created with this event Difficulty *big.Int // Type is the type of event Type EventType // Source is the source that generated the blocks for the event // right now it can be either the Sealer or the Syncer Source string }
Event is the blockchain event that gets passed to the listeners
func (*Event) AddNewHeader ¶
AddNewHeader appends a header to the event's NewChain array
func (*Event) AddOldHeader ¶
AddOldHeader appends a header to the event's OldChain array
func (*Event) SetDifficulty ¶
SetDifficulty sets the event difficulty
type MockSubscription ¶
type MockSubscription struct {
// contains filtered or unexported fields
}
func NewMockSubscription ¶
func NewMockSubscription() *MockSubscription
func (MockSubscription) GetEvent ¶
func (s MockSubscription) GetEvent() *Event
GetEvent returns the event from the subscription (BLOCKING)
func (MockSubscription) GetEventCh ¶
func (s MockSubscription) GetEventCh() chan *Event
GetEventCh creates a new event channel, and returns it
func (*MockSubscription) Push ¶
func (m *MockSubscription) Push(e *Event)
type MockVerifier ¶
type MockVerifier struct {
// contains filtered or unexported fields
}
func (*MockVerifier) GetBlockCreator ¶
func (*MockVerifier) HookGetBlockCreator ¶ added in v0.4.1
func (m *MockVerifier) HookGetBlockCreator(fn getBlockCreatorDelegate)
func (*MockVerifier) HookPreCommitState ¶ added in v0.6.0
func (m *MockVerifier) HookPreCommitState(fn preStateCommitDelegate)
func (*MockVerifier) HookProcessHeaders ¶ added in v0.4.1
func (m *MockVerifier) HookProcessHeaders(fn processHeadersDelegate)
func (*MockVerifier) HookVerifyHeader ¶ added in v0.4.1
func (m *MockVerifier) HookVerifyHeader(fn verifyHeaderDelegate)
func (*MockVerifier) PreCommitState ¶ added in v0.6.0
func (m *MockVerifier) PreCommitState(block *types.Block, txn *state.Transition) error
func (*MockVerifier) ProcessHeaders ¶ added in v0.4.0
func (m *MockVerifier) ProcessHeaders(headers []*types.Header) error
func (*MockVerifier) VerifyHeader ¶
func (m *MockVerifier) VerifyHeader(header *types.Header) error
type Subscription ¶
Subscription is the blockchain subscription interface
type TestCallbackType ¶ added in v0.4.1
type TestCallbackType string
const ( VerifierCallback TestCallbackType = "VerifierCallback" ExecutorCallback TestCallbackType = "ExecutorCallback" ChainCallback TestCallbackType = "ChainCallback" StorageCallback TestCallbackType = "StorageCallback" )