Versions in this module Expand all Collapse all v0 v0.0.1 Oct 11, 2024 Changes in this version + const PUSH1 + const PUSH32 + var ErrAlreadyProcessed = errors.New("already processed") + var ErrCommitted = errors.New("trie is already committed") + var ErrNotRequested = errors.New("not requested") + func ForGatherChildren(node []byte, onChild func(common.Hash)) + 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 ChunkedCode []byte + func ChunkifyCode(code []byte) ChunkedCode + type CodeSyncResult struct + Data []byte + Hash common.Hash + 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 OnTrieNode func(path []byte, hash common.Hash, blob []byte) + type SecureTrie = StateTrie + func NewSecure(stateRoot common.Hash, owner common.Hash, root common.Hash, ...) (*SecureTrie, error) + type StackTrie struct + func NewStackTrie(onTrieNode OnTrieNode) *StackTrie + func (t *StackTrie) Hash() common.Hash + func (t *StackTrie) Reset() + func (t *StackTrie) TrieKey(key []byte) []byte + func (t *StackTrie) Update(key, value []byte) error + type StateTrie struct + func NewStateTrie(id *ID, db database.Database) (*StateTrie, error) + func (t *StateTrie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet) + 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) IsVerkle() bool + 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, _ int) error + func (t *StateTrie) UpdateContractCode(_ common.Address, _ common.Hash, _ []byte) error + func (t *StateTrie) UpdateStorage(_ common.Address, key, value []byte) error + func (t *StateTrie) Witness() map[string]struct{} + 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.Database) (*Trie, error) + func NewEmpty(db database.Database) *Trie + func (t *Trie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet) + 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 + func (t *Trie) Witness() map[string]struct{} + type VerkleTrie struct + func NewVerkleTrie(root common.Hash, db database.Database, cache *utils.PointCache) (*VerkleTrie, error) + func (t *VerkleTrie) Commit(_ bool) (common.Hash, *trienode.NodeSet) + func (t *VerkleTrie) Copy() *VerkleTrie + func (t *VerkleTrie) DeleteAccount(addr common.Address) error + func (t *VerkleTrie) DeleteStorage(addr common.Address, key []byte) error + func (t *VerkleTrie) FlatdbNodeResolver(path []byte) ([]byte, error) + func (t *VerkleTrie) GetAccount(addr common.Address) (*types.StateAccount, error) + func (t *VerkleTrie) GetKey(key []byte) []byte + func (t *VerkleTrie) GetStorage(addr common.Address, key []byte) ([]byte, error) + func (t *VerkleTrie) Hash() common.Hash + func (t *VerkleTrie) IsVerkle() bool + func (t *VerkleTrie) NodeIterator(startKey []byte) (NodeIterator, error) + func (t *VerkleTrie) Proof(posttrie *VerkleTrie, keys [][]byte, resolver verkle.NodeResolverFn) (*verkle.VerkleProof, verkle.StateDiff, error) + func (t *VerkleTrie) Prove(key []byte, proofDb ethdb.KeyValueWriter) error + func (t *VerkleTrie) RollBackAccount(addr common.Address) error + func (t *VerkleTrie) ToDot() string + func (t *VerkleTrie) UpdateAccount(addr common.Address, acc *types.StateAccount, codeLen int) error + func (t *VerkleTrie) UpdateContractCode(addr common.Address, codeHash common.Hash, code []byte) error + func (t *VerkleTrie) UpdateStorage(address common.Address, key, value []byte) error + func (t *VerkleTrie) Witness() map[string]struct{}