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.9.90 #1092

Merged
merged 12 commits into from
Dec 29, 2023
132 changes: 121 additions & 11 deletions Cargo.lock

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

30 changes: 17 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -274,28 +274,32 @@ cumulus-primitives-utility = { git = "https://github.com/paritytech/p
parachain-info = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }

# Other
paste = { version = "1.0.14" }
strum_macros = { version = "0.24.3" }
async-trait = { version = "0.1.73" }
bstringify = { version = "0.1.2" }
clap = { version = "4.4.2" }
hex-literal = { version = "0.4.1" }
similar-asserts = { version = "1.1.0" }
smallvec = { version = "1.11.0" }
static_assertions = { version = "1.1.0" }
async-trait = { version = "0.1.73" }
env_logger = { version = "0.10.0" }
jsonrpsee = { version = "0.16.3" }
ethabi = { version = "18.0.0", default-features = false }
ethereum = { version = "0.14.0", default-features = false, features = ["with-codec"] }
futures = { version = "0.3.28" }
parity-scale-codec = { version = "3.6.5", default-features = false }
hex = { version = "0.4.3", default-features = false }
hex-literal = { version = "0.4.1" }
impl-trait-for-tuples = { version = "0.2.2" }
jsonrpsee = { version = "0.16.3" }
log = { version = "0.4.20", default-features = false }
num-bigint = { version = "0.4.3", default-features = false }
num-traits = { version = "0.2.15", default-features = false }
parity-scale-codec = { version = "3.6.5", default-features = false }
paste = { version = "1.0.14" }
scale-info = { version = "2.10.0", default-features = false }
serde_json = { version = "1.0.105", default-features = false }
serde = { version = "1.0.188", default-features = false }
serde_json = { version = "1.0.105", default-features = false }
similar-asserts = { version = "1.1.0" }
smallvec = { version = "1.11.0" }
static_assertions = { version = "1.1.0" }
strum = { version = "0.24.1", default-features = false, features = ["derive"] }
num-traits = { version = "0.2.15", default-features = false }
num-bigint = { version = "0.4.3", default-features = false }
impl-trait-for-tuples = { version = "0.2.2" }
strum_macros = { version = "0.24.3" }
tiny-keccak = { version = "2.0", features = ["fips202"] }


[profile.dev]
split-debuginfo = "unpacked"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2022 Liebi Technologies (UK) Ltd.
# Copyright (C) Liebi Technologies PTE. LTD.
# This file is part of Bifrost.

# Bifrost is free software: you can redistribute it and/or modify
Expand Down
20 changes: 15 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,20 +116,30 @@ build-bifrost-polkadot-wasm:
build-bifrost-rococo-fast-wasm:
.maintain/build-wasm.sh bifrost-kusama fast

.PHONY: build-try-runtime # build bifrost rococo wasm
build-try-runtime:
cargo build -p bifrost-cli --locked --features "with-all-runtime,try-runtime" --release

.PHONY: try-kusama-runtime-upgrade # try kusama runtime upgrade
try-kusama-runtime-upgrade:
try-kusama-runtime-upgrade:build-try-runtime
try-runtime \
--runtime \
target/release/wbuild/bifrost-kusama-runtime/bifrost_kusama_runtime.compact.compressed.wasm \
on-runtime-upgrade live \
--uri wss://hk.p.bifrost-rpc.liebi.com:443/ws
on-runtime-upgrade \
--checks none \
--no-weight-warnings \
live \
--uri wss://hk.bifrost-rpc.liebi.com:443/ws

.PHONY: try-polkadot-runtime-upgrade # try polkadot runtime upgrade
try-polkadot-runtime-upgrade:
try-polkadot-runtime-upgrade:build-try-runtime
try-runtime \
--runtime \
target/release/wbuild/bifrost-polkadot-runtime/bifrost_polkadot_runtime.compact.compressed.wasm \
on-runtime-upgrade live \
on-runtime-upgrade \
--checks none \
--no-weight-warnings \
live \
--uri wss://hk.p.bifrost-rpc.liebi.com:443/ws

.PHONY: resources # export genesis resources
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/bifrost-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ parachains-common = { workspace = true }
xcm-emulator = { workspace = true }

# Local
integration-tests-common = { path = "../common", default-features = false}
integration-tests-common = { path = "../common", default-features = false }
bifrost-slp = { workspace = true }
bifrost-vtoken-voting = { workspace = true }
bifrost-primitives = { workspace = true }
Expand Down
Loading
Loading