substrate
substrate copied to clipboard
Substrate: The platform for blockchain innovators
An interesting feature for chains using the assets pallet is the chance to vest those assets, similar to what is possible now with DOT and KSM on their respective relay...
Implement GenesisConfig for `uniques` pallet. maybe relate to paritytech/polkadot-sdk#327
Now it's really hard to decode `system::Events` outside the runtime (e.g. in Subxt, or third party Substrate client like GSRPC). A very common problem is, the client may miss some...
It's not infrequent that users only want metadata for specific pallets. For instance, the `cargo-contract` and `staking-miner` tools both use `Subxt` to generate an interface, but both only care about...
complementing https://github.com/paritytech/substrate/pull/14275 related paritytech/polkadot-sdk#198 - [x] Improve docs for all hooks - [ ] Tests - [ ] closes https://github.com/paritytech/polkadot-sdk/issues/258 - [ ] TODOs Diagram of hooks after this: https://mermaid.live/edit#pako:eNqFk8tuwjAQRX8l8hpQXkCSRaXSl5BaUUFRpSobN56A1WQcOY7EQ_x7jVMgRQS8ss_cGc_cxFuSCAYkIgtJi6X1Oo3R0qusvmswSdNkSTlaNd-vA_oU8gfkiX_I9UxRBTUBZDGeFXsBhJKXp5Q_MKp4xtrT7lMF8kNSLGmiuMBGAcYlGHbs3HSIY5aB1e3e6e0zR5rxzZW2JvhwNmJL2WKPaGYKjyAVEp5WSnIsedLo6Txi5GNcggRUDd0RGcG7yLJTbH8y-PLYTWpkLRZdnPZvCo1jVbs1rVDxHOaFVrArRrXPrB1HrvgNo28O45hh5rr4AoE1Au65GZ5ltd9zxWzn39dwjzVIh-Qgc8qZfgvbPY6JWkIOMYn0lkFKq0zFJMadltJKidkaExIpWUGHVAXTP_4jp_r-nEQpzUpNC4pfQuQHkT6SaEtWJHL8njvsB-Fg4Hi2Zwde0CFrjftBzw4HXt_1Q993fDfYdcjGVLB7oe-Fru17Ouq4Q1tnAONKyLf6-ZpXvPsFM80w5g
Fixes https://github.com/paritytech/polkadot-sdk/issues/232 This PR introduces outer-macro approach for `construct_runtime` as discussed in the linked issue. It looks like the following: ```rust #[frame_support::construct_runtime_v2] mod runtime { #[frame::runtime] pub struct Runtime; #[frame::pallets]...
Fixes paritytech/polkadot-sdk#207 Partially addresses paritytech/polkadot-sdk#226 This includes a transition and lazy-migration for Preimages pallet.
It might be a good idea to allow a reserve and lock functionality to the `pallet_assets` module. It is currently only possible to freeze an account completely and not to...
Fixes paritytech/polkadot-sdk#206
I started by performing an exercise that I have suggested myself a few weeks ago: start writing a pallet, from scratch, with minimal copy-pasting. I have two goals: 1. find...