-
Notifications
You must be signed in to change notification settings - Fork 689
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
[doc] Example MBM pallet #2119
[doc] Example MBM pallet #2119
Conversation
substrate/frame/migrations/examples/pallets/simple/src/migrations/v0.rs
Outdated
Show resolved
Hide resolved
substrate/frame/migrations/examples/pallets/simple/src/migrations/v0.rs
Outdated
Show resolved
Hide resolved
substrate/frame/migrations/examples/pallets/simple/src/migrations/v0.rs
Outdated
Show resolved
Hide resolved
substrate/frame/migrations/examples/pallets/simple/src/migrations/v0.rs
Outdated
Show resolved
Hide resolved
substrate/frame/migrations/examples/pallets/simple/src/migrations/mod.rs
Outdated
Show resolved
Hide resolved
@liamaharon as you are working on a migration example/documentation PR #1554 I would appreciate you input here |
substrate/frame/examples/multi-block-migrations/pallet/src/lib.rs
Outdated
Show resolved
Hide resolved
substrate/frame/examples/multi-block-migrations/pallet/src/lib.rs
Outdated
Show resolved
Hide resolved
substrate/frame/examples/multi-block-migrations/pallet/src/lib.rs
Outdated
Show resolved
Hide resolved
substrate/frame/examples/multi-block-migrations/pallet/src/lib.rs
Outdated
Show resolved
Hide resolved
substrate/frame/examples/multi-block-migrations/pallet/src/migrations/mod.rs
Outdated
Show resolved
Hide resolved
bot fmt |
@juangirini https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/4251201 was started for your command Comment |
@juangirini Command |
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
## Basic example showcasing a migration using the MBM framework This PR has been built on top of #1781 and adds two new example crates to the `examples` pallet ### Changes Made: Added the `pallet-example-mbm` crate: This crate provides a minimal example of a pallet that uses MBM. It showcases a storage migration where values are migrated from a `u32` to a `u64`. --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
## Basic example showcasing a migration using the MBM framework This PR has been built on top of paritytech#1781 and adds two new example crates to the `examples` pallet ### Changes Made: Added the `pallet-example-mbm` crate: This crate provides a minimal example of a pallet that uses MBM. It showcases a storage migration where values are migrated from a `u32` to a `u64`. --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
Basic example showcasing a migration using the MBM framework
This PR has been built on top of #1781 and adds two new example crates to the
examples
palletChanges Made:
Added the
pallet-example-mbm
crate: This crate provides a minimal example of a pallet that uses MBM. It showcases a storage migration where values are migrated from au32
to au64
.