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!: Set Transaction Fee Asset on New Account #476

Merged
merged 22 commits into from
Jun 16, 2022
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
be45ed3
set fee currency on new account (and remove on account deletion)
apopiak Jun 7, 2022
4e5d889
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Jun 7, 2022
fd374df
fix compile issues (warehouse deps, testing runtime etc.)
apopiak Jun 7, 2022
ef137eb
add integration test for automatic fee currency
apopiak Jun 7, 2022
b2e3071
add integration test for automatic fee currency on xcm transfer
apopiak Jun 7, 2022
1c104df
formatting
apopiak Jun 7, 2022
f844b7e
add use for basilisk_runtime types
apopiak Jun 10, 2022
fd2f2cb
bump spec_version
apopiak Jun 10, 2022
1ab3526
Merge branch 'master' into apopiak/set-tx-fee-asset-on-new-account
apopiak Jun 10, 2022
22498c6
fix whitespace
apopiak Jun 10, 2022
a0ae425
update orml-tokens weights
enthusiastmartin Jun 11, 2022
21b7c2b
bump spec_version
apopiak Jun 13, 2022
caf3389
point warehouse pallets to specific revision
apopiak Jun 14, 2022
6d83043
bump spec_version
apopiak Jun 14, 2022
62c51b2
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Jun 14, 2022
161886c
integrate new multi tx payment pallet (fee receiver etc.)
apopiak Jun 14, 2022
dd12d78
bump spec_version
apopiak Jun 14, 2022
e1ce54b
Merge branch 'master' into apopiak/set-tx-fee-asset-on-new-account
enthusiastmartin Jun 16, 2022
981e3f4
bump pallet versions due to orml-token update
enthusiastmartin Jun 16, 2022
052ed50
bump versions - again
enthusiastmartin Jun 16, 2022
0ebdb1b
update lock file
enthusiastmartin Jun 16, 2022
e18d351
Merge branch 'master' into apopiak/set-tx-fee-asset-on-new-account
enthusiastmartin Jun 16, 2022
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
Prev Previous commit
Next Next commit
point warehouse pallets to specific revision
  • Loading branch information
apopiak committed Jun 14, 2022
commit caf3389497f579acd4ee74164cac22883889dea9
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ cumulus-relay-chain-interface = { git = "https://github.com/paritytech//cumulus"
cumulus-relay-chain-local = { git = "https://github.com/paritytech//cumulus", rev = "76479e7fef3af7c8828a44647847b01afd5fefe5" }

[patch."https://github.com/galacticcouncil/warehouse"]
pallet-price-oracle = { git = "https://github.com/galacticcouncil//warehouse", branch = "apopiak/set-tx-fee-asset-on-new-account"}
pallet-relaychain-info = { git = "https://github.com/galacticcouncil//warehouse", branch = "apopiak/set-tx-fee-asset-on-new-account"}
pallet-transaction-multi-payment = { git = "https://github.com/galacticcouncil//warehouse", branch = "apopiak/set-tx-fee-asset-on-new-account"}
pallet-asset-registry= { git = "https://github.com/galacticcouncil//warehouse", branch = "apopiak/set-tx-fee-asset-on-new-account"}
hydradx-traits = { git = "https://github.com/galacticcouncil//warehouse", branch = "apopiak/set-tx-fee-asset-on-new-account"}
pallet-price-oracle = { git = "https://github.com/galacticcouncil//warehouse", rev = "9d1a6dc7cf6af6f9f7c76ca9438e3d671097fe90" }
pallet-relaychain-info = { git = "https://github.com/galacticcouncil//warehouse", rev = "9d1a6dc7cf6af6f9f7c76ca9438e3d671097fe90" }
pallet-transaction-multi-payment = { git = "https://github.com/galacticcouncil//warehouse", rev = "9d1a6dc7cf6af6f9f7c76ca9438e3d671097fe90" }
pallet-asset-registry= { git = "https://github.com/galacticcouncil//warehouse", rev = "9d1a6dc7cf6af6f9f7c76ca9438e3d671097fe90" }
hydradx-traits = { git = "https://github.com/galacticcouncil//warehouse", rev = "9d1a6dc7cf6af6f9f7c76ca9438e3d671097fe90" }

[patch."https://github.com/open-web3-stack/open-runtime-module-library"]
orml-currencies = { git = "https://github.com/apopiak/open-runtime-module-library", branch = "apopiak/on-new-account-9-17" }
Expand Down