Skip to content

Commit

Permalink
Bifrost v0.9.30 (#481)
Browse files Browse the repository at this point in the history
* staking integration without nimbus

* Update weight for asgard

* Revamp spec&runtime param for staking

* Document usage and apis

* Inflation as configurable

* Fix for test

* Release v0.9.23

* Sync with develop

* Fix benchmark in ci

* Add to bifrost runtime

* Improve doc&Tweak staking params

* Fix staging spec&some staking params

* Release v0.9.30

* Bump to v0.9.30

* Remove unused

* For staking migration

* Params for quick test only

* Try runtime test for staking migration

* Revamp reward account

* Upgrade to v0.9.16

* Add SignedExtra check&Fix dev chain

* Fix salp unlock issue

* [skip ci] Update bootnodes for bifrost-kusama runtime (#493)

* Fix per review

* Bifrost v0.9.25 (#492)

* Bump to v0.9.15

* Bump and integrate merkle-distributor

* Fix integration test

* Fix check failed

* Fix salp unlock issue

* Fix for CanonicalLocation compatibility

* Bump to v0.9.25

* Remove merkle-distributor from repo

* Fix per review

* Bump depencencies

* Fix salp xcm weight&Bump zenlink

Co-authored-by: yrong <[email protected]>
Co-authored-by: ubuntu <[email protected]>
Co-authored-by: Edwin Wang <[email protected]>

* [skip ci] Fix bootnodes (#495)

* Revamp staking params per review

* [skip ci] Update bootnodes for bifrost-kusama runtime (#493)

* Fix per review

* [skip ci] Fix bootnodes (#495)

* Fix salp xcm weight&Bump zenlink&Fix statemine xcm

* Allow issue when fund success

* Fix break test

* [skip ci] Some fixes

* Fix build wasm

* fix try-runtime

* Fix benchmark

* For fast test and rococo as relaychain

* Allow statemine asset back to arbitary account

* For sibling chain test

* Move staking to seperated repo

for merge upstream changes without pain

* Bifrost v0.9.26 (#494)

* staking integration without nimbus

* Update weight for asgard

* Revamp spec&runtime param for staking

* Document usage and apis

* Inflation as configurable

* Fix for test

* Release v0.9.23

* Sync with develop

* Fix benchmark in ci

* Add to bifrost runtime

* Improve doc&Tweak staking params

* Fix staging spec&some staking params

* Release v0.9.30

* Bump to v0.9.30

* Remove unused

* For staking migration

* Params for quick test only

* Try runtime test for staking migration

* Revamp reward account

* Upgrade to v0.9.16

* Add SignedExtra check&Fix dev chain

* Fix salp unlock issue

* Fix per review

* Remove staking for 0.9.26

* Bump to 0.9.26

* Bifrost v0.9.25 (#492)

* Bump to v0.9.15

* Bump and integrate merkle-distributor

* Fix integration test

* Fix check failed

* Fix salp unlock issue

* Fix for CanonicalLocation compatibility

* Bump to v0.9.25

* Remove merkle-distributor from repo

* Fix per review

* Bump depencencies

* Fix salp xcm weight&Bump zenlink

Co-authored-by: yrong <[email protected]>
Co-authored-by: ubuntu <[email protected]>
Co-authored-by: Edwin Wang <[email protected]>

* [skip ci] Fix bootnodes (#495)

* Fix salp xcm weight&Bump zenlink&Fix statemine xcm

* Allow issue when fund success

* Fix break test

* [skip ci] Some fixes

* Fix build wasm

* fix try-runtime

* Fix benchmark

* For fast test and rococo as relaychain

* Allow statemine asset back to arbitary account

* For sibling chain test

Co-authored-by: ubuntu <[email protected]>
Co-authored-by: Kadokura <[email protected]>
Co-authored-by: Edwin Wang <[email protected]>

* Fix staking benchmark

* add dependabot.yml (#468)

* Bump staking

* Bump serde_json from 1.0.78 to 1.0.79 (#496)

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.78 to 1.0.79.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.78...v1.0.79)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add stage chain spec

* Bump staking&Add some fast params for test

* Add endowed accounts for staging

* update stage chain spec

* Add two more collator in stage chain spec

* add a length constraint to the asset_order_list in flexible module (#500)

* fix unsafe math (#502)

* Fix telemetry for Bifrost stage spec

* [skip ci] update bootNodes for stage spec

* Reorder staking in runtime

* [skip ci] update stage spec

* [skip ci] update stage spec

* [skip ci] update stage spec

* [skip ci] update stage spec

* Fix ci

* Refact xcm interface and fee charge (#503)

* Refact xcm interface and fee charge

* Bump version

* Remove migration

* Clean packages

* Refact xcm interface and fee charge

* Bump parachain-staking & Add runtime params for migration

* Bump staking to sync with upstream

* Bump staking with benchmark&migration

* Seperate staking benchmark

* Add fast wasm build script

* Fix integration test

* Staking params for production

* Bump staking with updated weight

* Add try-runtime for staking

* Increase MaxTopDelegations

Co-authored-by: ubuntu <[email protected]>
Co-authored-by: Edwin <[email protected]>
Co-authored-by: Kadokura <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Herry Ho <[email protected]>
  • Loading branch information
6 people committed Mar 18, 2022
1 parent d7bc685 commit 2400e85
Show file tree
Hide file tree
Showing 24 changed files with 1,144 additions and 604 deletions.
8 changes: 7 additions & 1 deletion .maintain/build-wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,19 @@ RUSTC_VERSION="1.57.0"
EXTRA_ARGS='--json'
BIN_PATH=$(dirname $(readlink -f $0))
WORK_PATH=${BIN_PATH}/..
BUILD_OPTS_PARAMS="--features on-chain-release-build"

RUNTIME=$1
BUILD_TYPE=$2

if [ "$BUILD_TYPE" == "fast" ]; then
BUILD_OPTS_PARAMS="--features on-chain-release-build,fast-runtime"
fi

cd runtime && ln -fsn $RUNTIME bifrost
docker run --rm -i \
-e PACKAGE=$RUNTIME-runtime \
-e BUILD_OPTS="--features on-chain-release-build" \
-e BUILD_OPTS="$BUILD_OPTS_PARAMS" \
-e VERBOSE=1 \
-e CARGO_TERM_COLOR=always \
-v ${TMPDIR}/cargo:/cargo-home \
Expand Down
2 changes: 1 addition & 1 deletion .maintain/publish-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ BIN_PATH=$(dirname $(readlink -f $0))
WORK_PATH=${BIN_PATH}/../

###### build binary
make build-bifrost-release
make build-bifrost-kusama-release

cp target/release/bifrost ${WORK_PATH}/resources
chmod +x ${WORK_PATH}/resources/bifrost
Expand Down
Loading

0 comments on commit 2400e85

Please sign in to comment.