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!: Integrate EMA Oracle (deprecated) #557

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fde12d4
add EmaOracle pallet to Basilisk runtime
apopiak Aug 31, 2022
6bb25bf
update ema oracle
apopiak Aug 31, 2022
eab8d3f
update warehouse deps
apopiak Sep 5, 2022
63b6ae0
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Sep 5, 2022
1b0fd74
update warehouse deps
apopiak Sep 5, 2022
a548520
update warehouse deps
apopiak Sep 5, 2022
938cb5d
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Sep 20, 2022
238a7dd
update ema oracle to pass source identifier with trades
apopiak Sep 20, 2022
702c538
notify oracle of liquidity changes
apopiak Sep 20, 2022
38b7002
Merge branch 'polkadot-v0.9.28' of github.com:galacticcouncil/Basilis…
apopiak Oct 4, 2022
a16f8c7
update warehouse, substrate and polkadot deps
apopiak Nov 22, 2022
e1db239
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Nov 23, 2022
0699771
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Jan 17, 2023
db7f11b
formatting
apopiak Jan 17, 2023
6c7fa16
remove unused import
apopiak Jan 17, 2023
b9862c7
bump spec_version
apopiak Jan 20, 2023
05b54c1
add ema oracle to testing runtime
apopiak Jan 23, 2023
475d09a
bump warehouse to fixed ema oracle pallet
apopiak Jan 23, 2023
9a81577
activate try-runtime feature for ema pallet if it is selected
apopiak Jan 23, 2023
455de60
add integration test for oracle and bump versions
apopiak Jan 23, 2023
74a5cc2
make clippy happy
apopiak Jan 23, 2023
58fc782
update warehouse and math deps
apopiak Jan 24, 2023
c71ab99
bump package and runtime spec versions
apopiak Jan 24, 2023
48efdb3
update warehouse crates
apopiak Jan 27, 2023
fe5a771
Merge branch 'master' of github.com:galacticcouncil/Basilisk-node int…
apopiak Jan 27, 2023
528e4fb
bump crate versions
apopiak Jan 27, 2023
0a24839
bump xyk LM benchmarking pallet version
apopiak Jan 27, 2023
a22157e
update cargo.lock after version bump
apopiak Jan 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
102 changes: 56 additions & 46 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions integration-tests/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "runtime-integration-tests"
version = "0.8.8"
version = "0.9.0"
description = "Integration tests"
authors = ["GalacticCouncil"]
edition = "2021"
Expand All @@ -10,13 +10,13 @@ repository = "https://github.com/galacticcouncil/Basilisk-node"

[dependencies]
# Warehouse dependencies
pallet-transaction-multi-payment = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false}
pallet-price-oracle = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false}
pallet-nft = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false }
pallet-currencies = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false }
pallet-route-executor = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false }
pallet-transaction-multi-payment = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false}
pallet-nft = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false }
pallet-currencies = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false }
pallet-route-executor = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false }
pallet-asset-registry = { git = "https://github.com/galacticcouncil/warehouse", rev = "fcebd285141ce9ed15136f6102fa6396605d96af", default-features = false }
hydradx-traits = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a", default-features = false }
pallet-ema-oracle = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false }
hydradx-traits = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1", default-features = false }

pallet-xyk = { path = "../pallets/xyk",default-features = false}
pallet-duster= { path = "../pallets/duster",default-features = false}
Expand Down Expand Up @@ -108,7 +108,7 @@ parachain-runtime-mock = { path = "parachain-runtime-mock", default-features = f
[dev-dependencies]
xcm-emulator = { git = "https://github.com/shaunxw/xcm-simulator", rev = "0460d04c798028e7bef82c907082e11753ed173b" }
hex-literal = "0.3.1"
pallet-relaychain-info = { git = "https://github.com/galacticcouncil/warehouse", rev = "654b06312c800c4fbdd052e5b3a83ca15efed63a" }
pallet-relaychain-info = { git = "https://github.com/galacticcouncil/warehouse", rev = "76f57f90735432f1e38321e3bd94c531f59942a1" }
pretty_assertions = "1.2.1"
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
test-case = "2.2.1"
Expand Down Expand Up @@ -176,5 +176,5 @@ std = [
"pallet-authorship/std",
"basilisk-runtime/std",
"hydradx-traits/std",
"pallet-price-oracle/std",
"pallet-ema-oracle/std",
]