Versions in this module Expand all Collapse all v1 v1.0.0 Nov 3, 2023 Changes in this version + var ErrAlreadyProcessed = errors.New("already processed") + var ErrCommitDisabled = errors.New("no database for committing") + var ErrCommitted = errors.New("trie is already committed") + var ErrNotRequested = errors.New("not requested") + var HashDefaults = &Config + func ResolvePath(path []byte) (common.Hash, []byte) + func VerifyProof(rootHash common.Hash, key []byte, proofDb ethdb.KeyValueReader) (value []byte, err error) + func VerifyRangeProof(rootHash common.Hash, firstKey []byte, keys [][]byte, values [][]byte, ...) (bool, error) + type CodeSyncResult struct + Data []byte + Hash common.Hash + type Config struct + HashDB *hashdb.Config + PathDB *pathdb.Config + Preimages bool + type Database struct + func NewDatabase(diskdb ethdb.Database, config *Config) *Database + func (db *Database) Cap(limit common.StorageSize) error + func (db *Database) Close() error + func (db *Database) Commit(root common.Hash, report bool) error + func (db *Database) Dereference(root common.Hash) error + func (db *Database) Disable() error + func (db *Database) Enable(root common.Hash) error + func (db *Database) Initialized(genesisRoot common.Hash) bool + func (db *Database) Journal(root common.Hash) error + func (db *Database) Node(hash common.Hash) ([]byte, error) + func (db *Database) Preimage(hash common.Hash) []byte + func (db *Database) Reader(blockRoot common.Hash) (Reader, error) + func (db *Database) Recover(target common.Hash) error + func (db *Database) Recoverable(root common.Hash) (bool, error) + func (db *Database) Reference(root common.Hash, parent common.Hash) error + func (db *Database) Scheme() string + func (db *Database) SetBufferSize(size int) error + func (db *Database) Size() (common.StorageSize, common.StorageSize, common.StorageSize) + func (db *Database) Update(root common.Hash, parent common.Hash, block uint64, ...) error + func (db *Database) WritePreimages() + type ID struct + Owner common.Hash + Root common.Hash + StateRoot common.Hash + func StateTrieID(root common.Hash) *ID + func StorageTrieID(stateRoot common.Hash, owner common.Hash, root common.Hash) *ID + func TrieID(root common.Hash) *ID + type Iterator struct + Err error + Key []byte + Value []byte + func NewIterator(it NodeIterator) *Iterator + func (it *Iterator) Next() bool + func (it *Iterator) Prove() [][]byte + type LeafCallback func(keys [][]byte, path []byte, leaf []byte, parent common.Hash, parentPath []byte) error + type MissingNodeError struct + NodeHash common.Hash + Owner common.Hash + Path []byte + func (err *MissingNodeError) Error() string + func (err *MissingNodeError) Unwrap() error + type NodeIterator interface + AddResolver func(NodeResolver) + Error func() error + Hash func() common.Hash + Leaf func() bool + LeafBlob func() []byte + LeafKey func() []byte + LeafProof func() [][]byte + Next func(bool) bool + NodeBlob func() []byte + Parent func() common.Hash + Path func() []byte + func NewDifferenceIterator(a, b NodeIterator) (NodeIterator, *int) + func NewUnionIterator(iters []NodeIterator) (NodeIterator, *int) + type NodeResolver func(owner common.Hash, path []byte, hash common.Hash) []byte + type NodeSyncResult struct + Data []byte + Path string + type NodeWriteFunc = func(path []byte, hash common.Hash, blob []byte) + type Reader interface + Node func(owner common.Hash, path []byte, hash common.Hash) ([]byte, error) + type SecureTrie = StateTrie + func NewSecure(stateRoot common.Hash, owner common.Hash, root common.Hash, db *Database) (*SecureTrie, error) + type StackTrie struct + func NewStackTrie(writeFn NodeWriteFunc) *StackTrie + func (t *StackTrie) Commit() (h common.Hash, err error) + func (t *StackTrie) Hash() (h common.Hash) + func (t *StackTrie) MustUpdate(key, value []byte) + func (t *StackTrie) Reset() + func (t *StackTrie) Update(key, value []byte) error + type StateTrie struct + func NewStateTrie(id *ID, db *Database) (*StateTrie, error) + func (t *StateTrie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet, error) + func (t *StateTrie) Copy() *StateTrie + func (t *StateTrie) DeleteAccount(address common.Address) error + func (t *StateTrie) DeleteStorage(_ common.Address, key []byte) error + func (t *StateTrie) GetAccount(address common.Address) (*types.StateAccount, error) + func (t *StateTrie) GetAccountByHash(addrHash common.Hash) (*types.StateAccount, error) + func (t *StateTrie) GetKey(shaKey []byte) []byte + func (t *StateTrie) GetNode(path []byte) ([]byte, int, error) + func (t *StateTrie) GetStorage(_ common.Address, key []byte) ([]byte, error) + func (t *StateTrie) Hash() common.Hash + func (t *StateTrie) MustDelete(key []byte) + func (t *StateTrie) MustGet(key []byte) []byte + func (t *StateTrie) MustNodeIterator(start []byte) NodeIterator + func (t *StateTrie) MustUpdate(key, value []byte) + func (t *StateTrie) NodeIterator(start []byte) (NodeIterator, error) + func (t *StateTrie) Prove(key []byte, proofDb ethdb.KeyValueWriter) error + func (t *StateTrie) UpdateAccount(address common.Address, acc *types.StateAccount) error + func (t *StateTrie) UpdateContractCode(_ common.Address, _ common.Hash, _ []byte) error + func (t *StateTrie) UpdateStorage(_ common.Address, key, value []byte) error + type Sync struct + func NewSync(root common.Hash, database ethdb.KeyValueReader, callback LeafCallback, ...) *Sync + func (s *Sync) AddCodeEntry(hash common.Hash, path []byte, parent common.Hash, parentPath []byte) + func (s *Sync) AddSubTrie(root common.Hash, path []byte, parent common.Hash, parentPath []byte, ...) + func (s *Sync) Commit(dbw ethdb.Batch) error + func (s *Sync) MemSize() uint64 + func (s *Sync) Missing(max int) ([]string, []common.Hash, []common.Hash) + func (s *Sync) Pending() int + func (s *Sync) ProcessCode(result CodeSyncResult) error + func (s *Sync) ProcessNode(result NodeSyncResult) error + type SyncPath [][]byte + func NewSyncPath(path []byte) SyncPath + type Trie struct + func New(id *ID, db *Database) (*Trie, error) + func NewEmpty(db *Database) *Trie + func (t *Trie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet, error) + func (t *Trie) Copy() *Trie + func (t *Trie) Delete(key []byte) error + func (t *Trie) Get(key []byte) ([]byte, error) + func (t *Trie) GetNode(path []byte) ([]byte, int, error) + func (t *Trie) Hash() common.Hash + func (t *Trie) MustDelete(key []byte) + func (t *Trie) MustGet(key []byte) []byte + func (t *Trie) MustGetNode(path []byte) ([]byte, int) + func (t *Trie) MustNodeIterator(start []byte) NodeIterator + func (t *Trie) MustUpdate(key, value []byte) + func (t *Trie) NodeIterator(start []byte) (NodeIterator, error) + func (t *Trie) Prove(key []byte, proofDb ethdb.KeyValueWriter) error + func (t *Trie) Reset() + func (t *Trie) Update(key, value []byte) error