-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom child trie #2605
Comments
We clearly need other storage types. You might check out Tuxedo, which should presumably be using both the substrate one for messaging, and something optimized for UTXOs. cc @JoshOrndorff |
Maybe you could start with explaining what you need. Currently this is not supported and the code base is currently more evolving into a different direction. However, please explain what you need and then we can discuss it. |
Sure. I'm working on Madara, which uses Substrate to build a Starknet chain, in the same way frontier does for Ethereum. Starknet specification also ask yo use a modified MPT for the multiple different storages we have. Here they are: https://docs.starknet.io/documentation/architecture_and_concepts/Network_Architecture/starknet-state/#merkle_patricia_tree. This trie is of an other type than the Substrate one. Which mean that I have to build it myself at some other point in order to get it's root hash. Also the spec is that the contracts storage is a tree, with each leave being the root hash of each single individual contract own trie. Meaning I would also need nested-child-tries in order to achieve that, which I believe are not implemented either. So right now, what I will do is compute those roots values asynchronously, outside of the runtime. |
Yeah, depending on the size of the individual trees, this is also something I would have proposed. A proper way forward would be something like this: #245 So, you would store the individual items, but then build the trie in the runtime as you would do it with your one storage value right now, but hopefully more performant. |
Thanks for the resource. |
It doesn't require anything from the relay chain. It's doable now by manually using |
In this case, you should ask how parachains provide their own hostcalls which cannot be confused with relay chain PVF host calls. |
@burdges I looked at the link and the PR but this is unclear to me. Also I don't plan to be a parachain. Our settlement is done in an other way, using the provable nature of our VM execution. |
Hey,
After watching this talk by @shawntabrizi, I was under the impression that Substrate offered a smooth API in order to implement our own Trie logic. Like a trait I would be able to implement and that will be injected into the rest of the execution logic.
The core feature being the way the root hash would be computed.
After looking through the code I'm now thinking that it is not possible without forking Substrate. The code is designed to only work with the specific struct used and not some abstracted interface. We can see it here: https://github.com/paritytech/substrate/blob/367dab0d4bd7fd7b6c222dd15c753169c057dd42/primitives/state-machine/src/trie_backend_essence.rs#L497 and here
where there can be only one type of
ChildTrie
.What is the situation for this feature. Is it something parity plan on implementing at some point? What is my best path if I need something like this right now?
The text was updated successfully, but these errors were encountered: