-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump version to v0.9.58 * fix try-runtime * return error when token not registered * add event CurrencyIdRegistered * System maker (#748) * fix: 🐛 Info * fix: 🐛 fix * feat: 🎸 format * fix: 🐛 add get_minimuns_redeem * fix: 🐛 rename get_minimums_redeem * Change flexible fee implementation (#749) * change-flexible-fee-implementation * fixes * fix register_vsbond_metadata * fix migrations * fix: 🐛 fix MinContribution (#752) * fix: 🐛 fix MinContribution * fix: 🐛 fix dollar * fix: 🐛 fix dollar (#754) * fix: 🐛 fix (#755) * fix warnings * fix: 🐛 convert_to_vtoken * feat: 🎸 add minimum_redeem * fix: 🐛 bifrost-polkadot * fix: 🐛 fix * fix: 🐛 ExistentialDeposits * fix: 🐛 vtoken-minting tests * fix: 🐛 register_vtoken_metadata * fix: 🐛 convert_to_token * Fix integration tests (#761) * feat:add cross polkadot integration tests * Reserve code * fix:fix polkadot-integration-tests * fix:fix kusama-integration-tests Co-authored-by: Kadokura <ymlll0508@gmail.com> Co-authored-by: Herry Ho <45537372+herryho@users.noreply.github.com> Co-authored-by: NingBo Wang <2536935847@qq.com>
- Loading branch information
1 parent
f96d47e
commit 1e4ffdb
Showing
49 changed files
with
5,231 additions
and
4,438 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
[package] | ||
name = "bifrost-kusama-integration-tests" | ||
version = "0.8.0" | ||
authors = ["Ron Yang <yrong1997@gmail.com>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
# third-party dependencies | ||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] } | ||
log = { version = "0.4.17" } | ||
serde = { version = "1.0.143", optional = true } | ||
static_assertions = "1.1.0" | ||
hex = { version = "0.4", optional = true } | ||
hex-literal = { version = "0.3.4" } | ||
smallvec = "1.9.0" | ||
|
||
# primitives | ||
node-primitives = { default-features = false, path = "../../node/primitives" } | ||
|
||
# frame dependencies | ||
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
|
||
# Cumulus dependencies | ||
cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
pallet-collator-selection = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
|
||
# Polkadot dependencies | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
|
||
# bifrost pallets | ||
bifrost-asset-registry = { path = "../../pallets/asset-registry" } | ||
bifrost-flexible-fee = { path = "../../pallets/flexible-fee" } | ||
bifrost-flexible-fee-rpc-runtime-api = { path = "../../pallets/flexible-fee/rpc/runtime-api" } | ||
bifrost-liquidity-mining = { path = "../../pallets/liquidity-mining" } | ||
bifrost-salp = { path = "../../pallets/salp" } | ||
bifrost-salp-rpc-runtime-api = { path = "../../pallets/salp/rpc/runtime-api" } | ||
bifrost-slp = { path = "../../pallets/slp" } | ||
bifrost-vsbond-auction = { path = "../../pallets/vsbond-auction" } | ||
bifrost-vtoken-minting = { path = "../../pallets/vtoken-minting" } | ||
pallet-vesting = { package = "bifrost-vesting", path = "../../pallets/vesting" } | ||
bifrost-runtime-common = { path = "../../runtime/common" } | ||
bifrost-kusama-runtime = { path = "../../runtime/bifrost-kusama" } | ||
bifrost-polkadot-runtime = { path = "../../runtime/bifrost-polkadot" } | ||
|
||
# orml | ||
orml-currencies = { version = "0.4.1-dev" } | ||
orml-tokens = { version = "0.4.1-dev" } | ||
orml-traits = { version = "0.4.1-dev" } | ||
orml-xtokens = { version = "0.4.1-dev" } | ||
orml-unknown-tokens = { version = "0.4.1-dev" } | ||
orml-xcm-support = { version = "0.4.1-dev" } | ||
|
||
zenlink-protocol = { version = "*" } | ||
zenlink-protocol-runtime-api = { version = "*" } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.9.0" | ||
hex = "0.4.0" | ||
|
||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" } | ||
|
||
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
|
||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" } | ||
#statemine-runtime = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.28" } | ||
xcm-emulator = { git = "https://github.com/shaunxw/xcm-simulator", rev = "6c02911a3eeb04c342e4eb273d2ffbedd45dabff" } |
Oops, something went wrong.