Joshy Orndorff
Joshy Orndorff
This is a feature request from @chevdor to make the identity judgement process safer and also more similar to Polakdot/Kusama.
Now that https://github.com/paritytech/cumulus/pull/1083 landed, it should be possible to use the relay chain's randomness beacon instead of the parachain's collective flip (which should be removed). cc @4meta5
`algorythmns` should be `algorithms` in the Credits section.
Hello everyone. I've gotten a lot of use out of this action, including in https://github.com/purestake/moonbeam . We are intending to upgrade our `rust-toolchain` file to use the new complete toml...
This is a revival of a project I started a long time ago but never finished. (https://github.com/JoshOrndorff/recipes/pull/144) This demonstrates a simple runtime written entirely without FRAME. It directly implements the...
This PR addresses #131 by demonstrating a runtime that does not use Frame. The runtime is as minimal as reasonable and has a single boolean storage value. Transaction can either...
There are like a million broken ones now. Some just need simply updated. We also need a reliable place to link rustdocs now. @NukeManDan does parity host versioned rustdocs anymore?...
As discussed in this seminar https://www.crowdcast.io/e/substrate-seminar/44, it is no longer necessary to have this import rename https://github.com/substrate-developer-hub/recipes/blob/master/runtimes/super-runtime/src/lib.rs#L17. `construct_runtime!` will just work as expected now.
Substrate has the notion of host functions. They are code that runs on the client-side and can be called by the runtime. The standard ones are for cryptography. It is...
Recipes is pretty good about having tests that cover pallets, but not that test the entire runtime which includes how pallets are coupled together as well as the constants in...