Skip to content
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

feat: Configure Gas Tank for Memberships #437

Merged
merged 22 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4a5e2e8
chore(kreivo-runtime): bump version
pandres95 Dec 2, 2024
9c2daf0
chore: bump patch
pandres95 Dec 7, 2024
5e0f531
chore: update dependencies
pandres95 Dec 15, 2024
d9237f1
feat(pallet-communities-manager): add `set_gas_tank` and `maybe_tank_…
pandres95 Dec 16, 2024
3173de6
feat(kreivo-runtime): `NonFungiblesGasBurner` -> `NonFungiblesGasTank…
pandres95 Dec 16, 2024
00a0ba0
feat(kreivo-runtime): Relax `BlockHashChallenger` to accept challenge…
pandres95 Dec 16, 2024
ec2e125
fix(kreivo-runtime): missing `set_gas_tank` on `WeightInfo` for `pall…
pandres95 Dec 16, 2024
da3a772
feat(kreivo-runtime): handle transfeerring of memberships base attrib…
pandres95 Dec 16, 2024
bae33c8
fix: fmt
pandres95 Dec 16, 2024
94123d9
fix(kreivo-runtime): resolve non-conflicting errors
pandres95 Dec 16, 2024
0cdbe14
fix(kreivo-runtime): add selector to filter out tanks for memberships…
pandres95 Dec 19, 2024
50c1fa7
chore(Cargo): update dependencies
pandres95 Jan 3, 2025
7be22ca
fix(pallet-communities-manager/pallet-communities): replace membershi…
pandres95 Jan 3, 2025
7f9c455
fix(Cargo): update dependencies (again)
pandres95 Jan 5, 2025
6ea51d5
chore(kreivo-runtime): improve documentation for `BlockHashChallenger`
pandres95 Jan 5, 2025
25ae3e1
feat(kreivo-runtime): configure hooks on `CommunitiesMemberships` to …
pandres95 Jan 5, 2025
900fdff
feat(kreivo-runtime): make clippy happy
pandres95 Jan 5, 2025
9d1ee48
fix(Cargo): update dependencies
pandres95 Jan 5, 2025
3dfcfe1
fix(kreivo-runtime): make ci happy
pandres95 Jan 5, 2025
de7bc94
fix(kreivo-runtime): bump version
pandres95 Jan 7, 2025
0adee07
fix(pallet-communities-manager): address review changes suggested by …
pandres95 Jan 7, 2025
f44629d
make ci happy
pandres95 Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 53 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pallets/communities-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ version = "0.1.0"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
fc-traits-gas-tank.workspace = true
fc-traits-tracks.workspace = true

frame-benchmarking = { workspace = true, optional = true }
Expand Down Expand Up @@ -47,6 +48,7 @@ virto-common = { workspace = true, default-features = false, features = [
[features]
default = ["std"]
std = [
"fc-traits-gas-tank/std",
"fc-traits-tracks/std",
"frame-benchmarking?/std",
"frame-support/std",
Expand Down
Loading
Loading