-
Notifications
You must be signed in to change notification settings - Fork 6
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
Introduced Treasury Funding Pallet with Runtime Integration and Tests #906
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/describe |
github-actions
bot
changed the title
Feature/pallet treasury funding
Introduced Dec 10, 2024
treasury-funding
pallet for fund management and runtime integration.
PR Description updated to latest commit (18f7a83) |
/describe |
github-actions
bot
changed the title
Introduced
Introduced Dec 11, 2024
treasury-funding
pallet for fund management and runtime integration.
treasury-funding
pallet for treasury management and runtime integration.
PR Description updated to latest commit (a3c23ab) |
/describe |
/describe |
github-actions
bot
changed the title
Introduced treasury-funding pallet and integrated it into the runtime.
Introduced Treasury Funding Pallet with Runtime Integration and Tests
Dec 12, 2024
PR Description updated to latest commit (c6657a4) |
tsenovilla
requested changes
Dec 13, 2024
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
luispdm
requested changes
Dec 13, 2024
tsenovilla
requested changes
Dec 13, 2024
Co-authored-by: Tomás Senovilla Polo <117524919+tsenovilla@users.noreply.github.com>
luispdm
approved these changes
Dec 13, 2024
tsenovilla
approved these changes
Dec 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
Enhancement, Tests, Documentation
Description
pallet_treasury_funding
with functionality to transfer funds from a vault to the treasury.fund_treasury
function.Changes walkthrough 📝
6 files
laos.rs
Updated genesis configuration to include treasury account.
node/src/chain_spec/laos.rs
TREASURY
with an initial balance.predefined_accounts.rs
Added predefined treasury account.
node/src/chain_spec/predefined_accounts.rs
TREASURY
.benchmarks.rs
Added treasury funding pallet to runtime benchmarks.
runtime/laos/src/benchmarks.rs
pallet_treasury_funding
into runtime benchmarks.mod.rs
Integrated treasury funding configuration into runtime.
runtime/laos/src/configs/mod.rs
pallet_treasury_funding
.treasury_funding.rs
Added configuration for treasury funding pallet.
runtime/laos/src/configs/treasury_funding.rs
pallet_treasury_funding
.mod.rs
Integrated treasury funding weights into runtime.
runtime/laos/src/weights/mod.rs
pallet_treasury_funding
.3 files
benchmarking.rs
Introduced benchmarking for treasury funding pallet.
pallets/treasury-funding/src/benchmarking.rs
fund_treasury
function.mock.rs
Added mock runtime for treasury funding pallet tests.
pallets/treasury-funding/src/mock.rs
tests.rs
Added unit tests for treasury funding functionality.
pallets/treasury-funding/src/tests.rs
fund_treasury
function.4 files
lib.rs
Added treasury funding pallet with core functionality.
pallets/treasury-funding/src/lib.rs
pallet_treasury_funding
with afund_treasury
function.weights.rs
Added weights for treasury funding pallet.
pallets/treasury-funding/src/weights.rs
fund_treasury
function.lib.rs
Integrated treasury funding pallet into runtime.
runtime/laos/src/lib.rs
pallet_treasury_funding
in the runtime.pallet_treasury_funding.rs
Added weights for treasury funding runtime integration.
runtime/laos/src/weights/pallet_treasury_funding.rs
pallet_treasury_funding
.2 files
Cargo.toml
Updated dependencies to include treasury funding pallet.
Cargo.toml
pallet-treasury-funding
as a dependency.Cargo.toml
Added Cargo configuration for treasury funding pallet.
pallets/treasury-funding/Cargo.toml
pallet-treasury-funding
.