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

Features/clean release update #419

Open
wants to merge 21 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c8d2251
validate-block: Fix `TrieCache` implementation (#2214)
bkchr Nov 8, 2023
39482e7
`CheckMetadataHash` extension backport to 1.1.0 (#4585)
bkchr May 27, 2024
53996df
Fix the order of the variables
bkchr Jul 5, 2024
e51a91f
sp-api: Use macro to detect if `frame-metadata` is enabled (#4117)
bkchr Apr 15, 2024
65a434a
Remove bandersnatch in a hacky way
bkchr Oct 9, 2024
62e2b75
BLOCKCHAIN-552 start clean update
jindra12 Dec 15, 2024
02a6788
BLOCKCHAIN-552 add config
jindra12 Dec 15, 2024
dfa276f
BLOCKCHAIN-552 add submodule for update mechanism
jindra12 Dec 15, 2024
72212ed
Merge remote-tracking branch 'polkadot-sdk-upstream/release-polkadot-…
jindra12 Dec 15, 2024
a809471
BLOCKCHAIN-552 add our versioning
jindra12 Dec 15, 2024
bb42138
BLOCKCHAIN-552 use branch reference instead of rev
jindra12 Dec 15, 2024
510bbcc
BLOCKCHAIN-552 Remove unused libs
jindra12 Dec 15, 2024
5ab8341
BLOCKCHAIN-552 remove unused deps
jindra12 Dec 15, 2024
06ceea2
BLOCKCHAIN-552 try fix build
jindra12 Dec 15, 2024
58d0e7b
BLOCKCHAIN-552 Add correct sora + EVM to cargo.toml, revert lock
jindra12 Jan 12, 2025
3bb2494
BLOCKCHAIN-551 Forced upgrade of rust version, upgrade cargo.lock
jindra12 Jan 12, 2025
8d47149
BLOCKCHAIN-552 Switch to pallet-ethereum
jindra12 Jan 12, 2025
6139eb6
BLOCKCHAIN-552 Fix STD build
jindra12 Jan 26, 2025
dadc278
BLOCKCHAIN-552 Fix broken depndencies
jindra12 Jan 26, 2025
af986ee
BLOCKCHAIN-552 Reset rust version
jindra12 Jan 26, 2025
414cdd2
BLOCKCHAIN-552 Use 1.81 rust version
jindra12 Jan 26, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/test-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- name: Install Rust toolchain
run: |
rustup set profile minimal
rustup update --no-self-update 1.78.0
rustup component add --toolchain 1.78.0 rustfmt rust-src
rustup update --no-self-update 1.81.0
rustup component add --toolchain 1.81.0 rustfmt rust-src
rustup target add wasm32-unknown-unknown
rustup default 1.78.0
rustup default 1.81.0

- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pwasm-libc/target/
pwasm-alloc/Cargo.lock
pwasm-libc/Cargo.lock
bin/node/runtime/wasm/target/
merger/node_modules
**/._*
**/.criterion/
.vscode
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
[submodule "substrate/eth-bridge/contracts/lib/openzeppelin-contracts"]
path = substrate/eth-bridge/contracts/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "merger/polkadot-sdk"]
path = merger/polkadot-sdk
url = https://github.com/paritytech/polkadot-sdk.git
Loading
Loading