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

refactor homa #1648

Merged
merged 36 commits into from
Jan 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e33a964
refactor homa(WIP)
wangjj9219 Nov 28, 2021
d44505e
update
wangjj9219 Nov 29, 2021
27db7f7
update
wangjj9219 Nov 29, 2021
cd2fe3c
update
wangjj9219 Nov 30, 2021
b0def43
draw commission from staking reward
wangjj9219 Nov 30, 2021
2c5e6c3
update
wangjj9219 Dec 1, 2021
dcf66aa
update comments
wangjj9219 Dec 1, 2021
8804eea
add some tests
wangjj9219 Dec 1, 2021
5d90cce
fix and add some tests
wangjj9219 Dec 3, 2021
a1e2e00
add homa and homa-xcm to karura runtime
wangjj9219 Dec 3, 2021
8528841
Merge remote-tracking branch 'origin/master' into refactor-homa
wangjj9219 Dec 6, 2021
d0c069d
some updates
wangjj9219 Dec 7, 2021
2095998
Added integration test for homa-xcm operations (#1678)
syan095 Dec 7, 2021
667f501
fix integration tests
wangjj9219 Dec 7, 2021
6f6a414
format
wangjj9219 Dec 7, 2021
4afdf02
add benchmarking tests for homa
wangjj9219 Dec 8, 2021
cee25dc
update
wangjj9219 Dec 8, 2021
096902a
resolve conflict
wangjj9219 Dec 8, 2021
38f8927
Added an integration test for the full mint to redeem process (#1689)
syan095 Dec 10, 2021
9f42108
config correct KsmBondingDuration
wangjj9219 Dec 10, 2021
6dc8563
config LiquidStakingExchangeRateProvider from HomaLite to Homa
wangjj9219 Dec 10, 2021
be41204
fix integration tests
wangjj9219 Dec 13, 2021
107351c
Re-adjusted the weight and fee in integration tests
Dec 13, 2021
2c3d464
Updated some comments in homa integration tests
Dec 13, 2021
0291464
update
wangjj9219 Dec 20, 2021
445705b
merge master
wangjj9219 Dec 20, 2021
ebf1cec
cargo run --release --color=never --bin=acala --features=runtime-benc…
Dec 20, 2021
ce15424
cargo run --release --color=never --bin=acala --features=runtime-benc…
Dec 20, 2021
8aa4feb
update
wangjj9219 Dec 23, 2021
6bcc599
update
wangjj9219 Dec 24, 2021
3d1e953
remove homa-lite from mandala
wangjj9219 Dec 29, 2021
53ca1db
update
wangjj9219 Dec 31, 2021
524e8a5
Merge remote-tracking branch 'origin/master' into refactor-homa
wangjj9219 Dec 31, 2021
38f5619
bump mandala runtime version
wangjj9219 Dec 31, 2021
5bb7dda
update
wangjj9219 Dec 31, 2021
9b003f4
update
wangjj9219 Jan 2, 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
98 changes: 39 additions & 59 deletions Cargo.lock

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

54 changes: 54 additions & 0 deletions modules/homa-xcm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[package]
name = "module-homa-xcm"
version = "2.0.3"
authors = ["Acala Developers"]
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", version = "2.3.1", default-features = false, features = ["derive"] }
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false, optional = true}
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12", default-features = false }
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.12", default-features = false }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.12", default-features = false }
primitives = { package = "acala-primitives", path = "../../primitives", default-features = false }
orml-traits = { path = "../../orml/traits", default-features = false }
module-support = { path = "../../modules/support", default-features = false }

[dev-dependencies]
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
module-currencies = { path = "../../modules/currencies" }
orml-tokens = { path = "../../orml/tokens" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.12" }
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.12" }
module-relaychain = { path = "../relaychain", features = ["kusama"] }

[features]
default = ["std"]
std = [
"codec/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"scale-info/std",
"sp-runtime/std",
"sp-core/std",
"sp-std/std",
"pallet-xcm/std",
"xcm/std",
"primitives/std",
"orml-traits/std",
"module-support/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]
Loading