Versions in this module Expand all Collapse all v0 v0.6.3 Nov 21, 2024 Changes in this version + var ErrCommitDisabled = errors.New("no database for committing") + var ErrCommitted = errors.New("trie is already committed") + func VerifyProof(rootHash common.Hash, key []byte, proofDb ethdb.KeyValueReader) (value []byte, err error) + func VerifyRangeProof(rootHash common.Hash, firstKey []byte, lastKey []byte, keys [][]byte, ...) (bool, error) + type Config struct + Cache int + OnCommit func(states *triestate.Set) + PathDB *pathdb.Config + Preimages bool + StatsPrefix string + type Database struct + func NewDatabase(diskdb ethdb.Database) *Database + func NewDatabaseWithConfig(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) Initialized(genesisRoot common.Hash) bool + func (db *Database) Node(hash common.Hash) ([]byte, error) + func (db *Database) Reader(blockRoot common.Hash) (Reader, error) + func (db *Database) Reference(root common.Hash, parent common.Hash) error + func (db *Database) Scheme() string + func (db *Database) Size() (common.StorageSize, common.StorageSize) + func (db *Database) Update(root common.Hash, parent common.Hash, block uint64, ...) error + func (db *Database) UpdateAndReferenceRoot(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 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 NodeWriteFunc = func(owner common.Hash, 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 NewFromBinary(data []byte, writeFn NodeWriteFunc) (*StackTrie, error) + func NewStackTrie(writeFn NodeWriteFunc) *StackTrie + func NewStackTrieWithOwner(writeFn NodeWriteFunc, owner common.Hash) *StackTrie + func (st *StackTrie) Commit() (h common.Hash, err error) + func (st *StackTrie) Hash() (h common.Hash) + func (st *StackTrie) MarshalBinary() (data []byte, err error) + func (st *StackTrie) MustUpdate(key, value []byte) + func (st *StackTrie) Reset() + func (st *StackTrie) UnmarshalBinary(data []byte) error + func (st *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 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