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

Bifrost v0.11.0 #1271

Merged
merged 22 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0db3c43
feat: 🎸 add buy-back
yooml Jun 4, 2024
171f9e9
Bifrost v0.10.001
SunTiebing Jun 4, 2024
fcc6100
feat: 🎸 benchmark
yooml Jun 5, 2024
08aa1c2
Merge pull request #1257 from bifrost-finance/add-buy-back
SunTiebing Jun 5, 2024
5b892b4
SLPx mint support commission id (#1261)
SunTiebing Jun 11, 2024
66b0ab0
Add vtoken exchange rate rpc (#1260)
SunTiebing Jun 11, 2024
d87b49b
fix: 🐛 add event (#1263)
yooml Jun 11, 2024
fec4a12
add update_currency_metadata function (#1259)
SunTiebing Jun 11, 2024
96aa7fb
add the use of Vec (#1264)
SunTiebing Jun 12, 2024
a62b6e0
Upgrade to Polkadot-SDK v1.7.0 (#1262)
hqwangningbo Jun 12, 2024
489fc9c
feat: 🎸 add metadata-hash-extension (#1265)
yooml Jun 13, 2024
3fe0b79
Fix compile (#1266)
hqwangningbo Jun 13, 2024
7b0aaaf
Fix/fix vtoken voting unlock (#1267)
SunTiebing Jun 13, 2024
3f7d6b2
Revert "feat: 🎸 add metadata-hash-extension (#1265)" (#1268)
yooml Jun 18, 2024
d03e60d
rename the version number to 0.11.0
SunTiebing Jun 18, 2024
fa21d8e
Slp supports XCMv4 and reconstruct integration tests (#1272)
hqwangningbo Jun 19, 2024
75df8c6
Feat/slpx mint add commission (#1273)
SunTiebing Jun 19, 2024
ecc906a
Feat/add vtoken exchange rate rpc (#1274)
SunTiebing Jun 20, 2024
66a3ce7
fix bug: storage migration anomaly (#1276)
SunTiebing Jun 21, 2024
b4fdc81
Slp removes refund (#1275)
hqwangningbo Jun 21, 2024
7e58dc5
Feat/add vtoken exchange rate rpc (#1277)
SunTiebing Jun 21, 2024
299d779
Remove dmp queue (#1279)
hqwangningbo Jun 24, 2024
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
1,549 changes: 858 additions & 691 deletions Cargo.lock

Large diffs are not rendered by default.

321 changes: 163 additions & 158 deletions Cargo.toml

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@ copy-genesis-config-release:

.PHONY: format # cargo fmt
format:
cargo +nightly fmt --all

.PHONY: format-check # cargo fmt check
format-check:
cargo +nightly fmt --all -- --check

.PHONY: clippy # cargo clippy
clippy:
clippy: format-check
SKIP_WASM_BUILD= cargo clippy --all --all-targets --features=with-all-runtime -- -D warnings

.PHONY: benchmarking-staking # benchmarking staking pallet
Expand Down
50 changes: 50 additions & 0 deletions integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[package]
name = "bifrost-integration-tests"
version = "0.8.0"
authors = ["hqwangningbo <[email protected]>"]
edition = "2021"

[dev-dependencies]
bifrost-asset-registry = { workspace = true }
bifrost-currencies = { workspace = true }
bifrost-polkadot-runtime = { workspace = true }
bifrost-primitives = { workspace = true }
bifrost-runtime-common = { workspace = true }
bifrost-slp = { workspace = true }
bifrost-vtoken-voting = { workspace = true }
bifrost-xcm-interface = { workspace = true }
cumulus-primitives-core = { workspace = true }
env_logger = { workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
hex-literal = { workspace = true }
log = { workspace = true }
orml-tokens = { workspace = true }
orml-traits = { workspace = true }
orml-xtokens = { workspace = true }
pallet-assets = { workspace = true }
pallet-balances = { workspace = true }
pallet-conviction-voting = { workspace = true }
pallet-message-queue = { workspace = true }
pallet-referenda = { workspace = true }
pallet-staking = { workspace = true }
pallet-xcm = { workspace = true }
parachain-info = { workspace = true }
parachains-common = { workspace = true }
parity-scale-codec = { workspace = true }
polkadot-core-primitives = { workspace = true }
polkadot-parachain-primitives = { workspace = true, features = ["std"] }
polkadot-runtime-common = { workspace = true, features = ["std"] }
polkadot-runtime-parachains = { workspace = true, features = ["std"] }
scale-info = { workspace = true }
serde = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-staking = { workspace = true }
sp-std = { workspace = true }
xcm = { workspace = true }
xcm-builder = { workspace = true }
xcm-emulator = { workspace = true }
xcm-executor = { workspace = true }
xcm-simulator = { workspace = true }
45 changes: 0 additions & 45 deletions integration-tests/bifrost-kusama/Cargo.toml

This file was deleted.

185 changes: 0 additions & 185 deletions integration-tests/bifrost-kusama/src/account_id.rs

This file was deleted.

Loading
Loading