Skip to content

Commit

Permalink
v6.0.0 Release: (#923)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauthamastro authored Mar 8, 2024
2 parents 58f0b26 + 1a40ca7 commit 2de327a
Show file tree
Hide file tree
Showing 68 changed files with 7,157 additions and 2,538 deletions.
89 changes: 58 additions & 31 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ members = [
"rpc/swap",
"rpc/assets/runtime-api",
"pallets/pdex-migration",
"pallets/liquidity-mining",
"pallets/ocex",
"pallets/ocex/rpc",
"pallets/ocex/rpc/runtime-api",
Expand All @@ -40,7 +41,6 @@ members = [
"primitives/thea",
"primitives/bls",
"pallets/thea",
"pallets/liquidity",
"pallets/thea-executor",
"pallets/thea-message-handler",
"pallets/rewards/rpc",
Expand All @@ -61,14 +61,14 @@ default-members = [
"pallets/pdex-migration",
"pallets/ocex",
"pallets/ocex/rpc",
"pallets/liquidity-mining",
"pallets/ocex/rpc/runtime-api",
"pallets/rewards",
"primitives/orderbook",
"primitives/polkadex",
"primitives/thea",
"primitives/bls",
"pallets/thea",
"pallets/liquidity",
"pallets/thea-executor",
"pallets/rewards/rpc",
"pallets/rewards/rpc/runtime-api",
Expand Down
2 changes: 1 addition & 1 deletion check-all-ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ cargo build --features try-runtime || exit
cargo build --features runtime-benchmarks || exit
./target/debug/polkadex-node benchmark pallet --pallet "*" --extrinsic "*" --steps 2 --repeat 1 || exit
cargo clippy -- -D warnings || exit
cargo test || exit
RUSTFLAGS="-D warnings" cargo test || exit
2 changes: 1 addition & 1 deletion nodes/mainnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadex-node"
version = "5.5.0"
version = "6.0.0"
authors = ["Polkadex OÜ <https://polkadex.trade>"]
description = "Polkadex main blockchain"
edition = "2021"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,54 +1,60 @@
[package]
name = "liquidity"
authors = ["Polkadex Authors"]
description = "Pallet for adding liquidity through governance"
name = "pallet-lmp"
version = "1.0.0"
authors = ["Gautham J <gautham@polkadex.trade>"]
edition = "2021"
license = "GNU GPL v3"
homepage = "https://polkadex.trade"
version = "1.1.0"
repository = "https://github.com/Polkadex-Substrate/Polkadex/"
description = "Polkadex Liquidity Mining pallet"
readme = "README.md"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
log = "0.4.20"
parity-scale-codec = { workspace = true, default-features = false }
scale-info = { workspace = true, default-features = false, features = ["derive"] }
frame-support = { default-features = false, workspace = true }
frame-system = { default-features = false, workspace = true }
sp-runtime = { default-features = false, workspace = true }
frame-system = { workspace = true, default-features = false }
frame-support = { workspace = true, default-features = false }
sp-std = { workspace = true, default-features = false }
polkadex-primitives = { workspace = true, default-features = false }
frame-benchmarking = { workspace = true, default-features = false, optional = true }
pallet-timestamp = { workspace = true, default-features = false }
sp-io = { workspace = true, default-features = false }
sp-runtime = { workspace = true, default-features = false }
orderbook-primitives = { path = "../../primitives/orderbook", default-features = false }
polkadex-primitives = { path = "../../primitives/polkadex", default-features = false }
rust_decimal = { workspace = true, default-features = false }

[dev-dependencies]
pallet-ocex-lmp = { path = "../ocex", default-features = false }
pallet-assets = { workspace = true, default-features = false }
pallet-balances = { workspace = true, default-features = false }
pallet-ocex-lmp = { path = "../ocex", default-features = false }
sp-core = { workspace = true, default-features = false }
pallet-timestamp = { workspace = true, default-features = false }
sp-application-crypto = { workspace = true }
sp-io = { workspace = true, default-features = false }
sp-core = { workspace = true, default-features = false }

[features]
default = ["std"]
std = [
"sp-core/std",
"sp-io/std",
"pallet-assets/std",
"pallet-balances/std",
"pallet-ocex-lmp/std",
"frame-benchmarking?/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"frame-support/std",
"frame-system/std",
"frame-support/std",
"scale-info/std",
"orderbook-primitives/std",
"polkadex-primitives/std",
"rust_decimal/std",
"sp-runtime/std",
"sp-std/std",
"polkadex-primitives/std",
"pallet-ocex-lmp/std",
"pallet-assets/std",
"pallet-balances/std",
"pallet-timestamp/std",
"sp-io/std",
"sp-application-crypto/std",
"sp-io/std",
"sp-core/std",
]
runtime-benchmarks = [
"sp-runtime/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
]
runtime-benchmarks = ["sp-runtime/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]
try-runtime = ["frame-support/try-runtime"]
Loading

0 comments on commit 2de327a

Please sign in to comment.