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.16.0 #1512

Open
wants to merge 32 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8edea8c
Bifrost v0.16.0
SunTiebing Nov 22, 2024
bed79d4
Migrated benchmarking of cross-in-out from v1 to v2. (#1519)
MJLNSN Nov 28, 2024
be436eb
Migrated benchmarking of stable-pool from v1 to v2. (#1520)
MJLNSN Nov 28, 2024
e349f5e
Migrated benchmarking of flexible-fee from v1 to v2. (#1523)
MJLNSN Nov 28, 2024
9fdeab7
[skip ci]: update bifrost-polkadot chain spec for evm (#1526)
TomatoAres Nov 29, 2024
11996e8
Merge branch 'develop' into v0.16.0
ark930 Dec 2, 2024
9ae532e
Set the number of active collators to 4 (#1529)
SunTiebing Dec 2, 2024
1d957bc
init channel commission cleared_commission (#1527)
SunTiebing Dec 2, 2024
fe53050
system-staking auto payout (#1528)
SunTiebing Dec 2, 2024
cc8ab6f
Refactor farming gauge (#1509)
yooml Dec 3, 2024
d3ed22d
Evm supports native tokens as gas fee (#1530)
hqwangningbo Dec 3, 2024
6fa2ce2
Migrated benchmarking of vstoken-conversion from v1 to v2. (#1535)
MJLNSN Dec 3, 2024
2c83d77
upgrade to stable2407 (#1533)
SunTiebing Dec 3, 2024
76ae42f
Use BlockNumberProvider trait (#1532)
hqwangningbo Dec 4, 2024
d8efb1d
Set ss58 prefix to 0 (#1537)
hqwangningbo Dec 4, 2024
5acb018
Migrated benchmarking of buy-back from v1 to v2. (#1539)
MJLNSN Dec 4, 2024
32570fd
Merge branch 'develop' into v0.16.0
ark930 Dec 5, 2024
53b43ca
Use stable rustfmt (#1542)
hqwangningbo Dec 6, 2024
4dd2b83
Remove precompile-utils (#1544)
hqwangningbo Dec 7, 2024
026a9c5
fix: 🐛 add listen port (#1548)
yooml Dec 10, 2024
db4a148
test: 💍 add tests (#1549)
yooml Dec 12, 2024
1da8744
Resolve merge conflicts (#1550)
SunTiebing Dec 13, 2024
c08014f
Resolve merge conflict: Update polkadot_common_test.rs
SunTiebing Dec 13, 2024
c4d72b3
Sora fix (#1546)
yooml Dec 16, 2024
bffbef4
Change block number to relaychain (#1551)
SunTiebing Dec 16, 2024
51bf31c
Update current block (#1552)
yooml Dec 17, 2024
c7ef441
Fix evm validate (#1553)
hqwangningbo Dec 17, 2024
a728bbf
change vtoken-minting blocknumber type (#1556)
SunTiebing Dec 18, 2024
4953b45
Support veth (#1557)
hqwangningbo Dec 18, 2024
1b9a2e7
feat: 🎸 add BoundedVec bench (#1558)
yooml Dec 18, 2024
af3d472
Migrated benchmarking of system-staking from v1 to v2. (#1560)
MJLNSN Dec 18, 2024
acfb48a
correct authors (#1559)
SunTiebing Dec 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 5 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
rustflags = [
"-Aclippy::all",
"-Dclippy::correctness",
"-Dclippy::complexity",
"-Aclippy::if-same-then-else",
"-Aclippy::manual-inspect",
"-Asuspicious-double-ref-op",
"-Dclippy::complexity",
"-Aclippy::clone_on_copy", # Too common
"-Aclippy::needless_lifetimes", # Backward compat?
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
"-Aclippy::nonminimal-bool", # maybe
Expand All @@ -28,5 +31,5 @@ rustflags = [
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::stable_sort_primitive", # prefer stable sort
"-Aclippy::explicit_counter_loop" # irrelevant
]
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
components: rustfmt
target: wasm32-unknown-unknown
toolchain: 1.77.0
toolchain: 1.81.0
- name: Generate WeightInfo Files
run: make generate-bifrost-weights
- name: Commit Automatically
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77.0
toolchain: 1.81.0
components: rustfmt, clippy
target: wasm32-unknown-unknown
- name: Cargo check-all
run: |
make check-all

- name: Cargo clippy
run: |
make clippy
make clippy-all

- name: Test All
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
components: rustfmt
target: wasm32-unknown-unknown
toolchain: 1.77.0
toolchain: 1.81.0

- name: Download kusama strool result
uses: actions/download-artifact@v4
Expand Down
Loading