You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Ethereum state tries consist of branch, extension, or leaf nodes it would be helpful to have some default traversal functions. If I understand the IPLD specs correctly this could be implemented with a selector.
Some ideas for traversal paths that would be helpful:
/<stateRootCID>/01 to retrieve the state trie node at prefix path 01
/<stateRootCID>/<address> to retrieve the account leaf node
/<stateRootCID>/<address>/state to retrieve the account storage root
These could also have variants for producing merkle proofs for any node.
The text was updated successfully, but these errors were encountered:
Since Ethereum state tries consist of branch, extension, or leaf nodes it would be helpful to have some default traversal functions. If I understand the IPLD specs correctly this could be implemented with a selector.
Some ideas for traversal paths that would be helpful:
/<stateRootCID>/01
to retrieve the state trie node at prefix path01
/<stateRootCID>/<address>
to retrieve the account leaf node/<stateRootCID>/<address>/state
to retrieve the account storage rootThese could also have variants for producing merkle proofs for any node.
The text was updated successfully, but these errors were encountered: