Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
83f240a
staking integration without nimbus
yrong Jan 7, 2022
fb294cc
Merge branch 'develop' into collator-staking-without-nimbus
yrong Jan 17, 2022
7440a63
Update weight for asgard
yrong Jan 18, 2022
752f5fd
Revamp spec&runtime param for staking
yrong Jan 19, 2022
993ab99
Document usage and apis
yrong Jan 19, 2022
3735fb3
Inflation as configurable
yrong Jan 21, 2022
8b28e9c
Fix for test
yrong Jan 21, 2022
582ee5f
Release v0.9.23
yrong Jan 24, 2022
4cac8a5
Merge branch 'develop' into collator-staking-without-nimbus
yrong Jan 24, 2022
2e3b45f
Sync with develop
yrong Jan 24, 2022
db0c1d8
Merge branch 'develop' into v0.9.23
yrong Jan 24, 2022
767bc19
Fix benchmark in ci
yrong Jan 24, 2022
3a9cee3
Merge branch 'v0.9.23' into collator-staking-without-nimbus
yrong Jan 25, 2022
3e6343b
Add to bifrost runtime
yrong Jan 25, 2022
fe23628
Improve doc&Tweak staking params
invalid-email-address Jan 26, 2022
e8b39fd
Merge branch 'develop' into collator-staking-without-nimbus
invalid-email-address Jan 27, 2022
c6c8399
Fix staging spec&some staking params
invalid-email-address Jan 27, 2022
10188df
Release v0.9.30
invalid-email-address Jan 26, 2022
15309b0
Bump to v0.9.30
invalid-email-address Jan 27, 2022
c8a1025
Merge branch 'v0.9.30' into collator-staking-without-nimbus
invalid-email-address Jan 27, 2022
7062b68
Remove unused
invalid-email-address Jan 27, 2022
aa8ab1b
For staking migration
yrong Jan 28, 2022
2865cf3
Merge branch 'v0.9.30-migration' into collator-staking-without-nimbus
yrong Jan 28, 2022
08943b6
Params for quick test only
invalid-email-address Jan 28, 2022
fb4e6c1
Merge quick-test&Fix migration
invalid-email-address Feb 3, 2022
525e403
Try runtime test for staking migration
invalid-email-address Feb 3, 2022
0911a77
Revamp reward account
invalid-email-address Feb 3, 2022
a72588a
Upgrade to v0.9.16
invalid-email-address Feb 6, 2022
8475e60
Add SignedExtra check&Fix dev chain
invalid-email-address Feb 6, 2022
d494afc
Merge branch 'develop' into polkadot-v0.9.16&Fix benchmark
invalid-email-address Feb 7, 2022
5a06f9d
Fix salp unlock issue
invalid-email-address Feb 7, 2022
92fd24c
Fix per review
invalid-email-address Feb 8, 2022
40042c5
Remove staking for 0.9.26
invalid-email-address Feb 8, 2022
edfccf1
Bump to 0.9.26
invalid-email-address Feb 8, 2022
5e191a4
Bifrost v0.9.25 (#492)
yooml Feb 9, 2022
5fb6059
[skip ci] Fix bootnodes (#495)
ark930 Feb 9, 2022
d4202d0
Fix salp xcm weight&Bump zenlink&Fix statemine xcm
invalid-email-address Feb 9, 2022
ddeca91
Allow issue when fund success
yrong Feb 10, 2022
ddee25d
Merge branch 'v0.9.26' into v0.9.26-pre
invalid-email-address Feb 10, 2022
47a3204
Fix break test
yrong Feb 10, 2022
62e50e3
[skip ci] Some fixes
ark930 Feb 10, 2022
9f030a8
Fix build wasm
yrong Feb 10, 2022
c9d4e81
fix try-runtime
ark930 Feb 10, 2022
4b164d8
Fix benchmark
yrong Feb 11, 2022
47fee24
For fast test and rococo as relaychain
yrong Feb 11, 2022
131f2f2
Allow statemine asset back to arbitary account
yrong Feb 11, 2022
d0024f4
For sibling chain test
yrong Feb 12, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ deploy
snapshot.bin
*.wasm
data
moonbeam
snowbridge
runtime/bifrost
1 change: 1 addition & 0 deletions .maintain/build-wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RUNTIME=$1
cd runtime && ln -fsn $RUNTIME bifrost
docker run --rm -i \
-e PACKAGE=$RUNTIME-runtime \
-e BUILD_OPTS="--features on-chain-release-build" \
-e VERBOSE=1 \
-e CARGO_TERM_COLOR=always \
-v ${TMPDIR}/cargo:/cargo-home \
Expand Down
Loading