Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b1e349e
Merge pull request #530 from Cerebellum-Network/feat/thirdparty-mainn…
yahortsaryk Jan 27, 2025
a4f302b
fix: skipping eras without payouts
yahortsaryk Feb 3, 2025
75fc647
fix: genesis initialization for verification pallet
yahortsaryk Feb 3, 2025
43d2577
chore: runtime version bump
yahortsaryk Feb 3, 2025
9326187
fix: clippy issues
yahortsaryk Feb 3, 2025
f6e27e2
ci: replacing v3 of actions/upload-artifact with v4
yahortsaryk Feb 3, 2025
02992a5
chore: addressing PR's comments
yahortsaryk Feb 4, 2025
5faf293
Merge pull request #535 from Cerebellum-Network/fix/empty-era-payout
yahortsaryk Feb 4, 2025
a6298b0
feat: challenging bucket aggregates
yahortsaryk Feb 6, 2025
d2679d6
fix: fetching grouping collector dynamically
yahortsaryk Feb 6, 2025
19afd84
fix: clippy issues
yahortsaryk Feb 6, 2025
85fac81
Merge pull request #536 from Cerebellum-Network/fix/g-dynamic-collectors
yahortsaryk Feb 7, 2025
1da9c48
feat: cutting of unverified activity from customers
yahortsaryk Feb 7, 2025
76098d4
feat: cutting of unverified activity from providers
yahortsaryk Feb 7, 2025
5d26bb9
fix: clippy issues
yahortsaryk Feb 10, 2025
dbc8efb
feat: config variables for verification pallet
yahortsaryk Feb 10, 2025
bf4d28c
fix: formatting issues
yahortsaryk Feb 10, 2025
aa76f26
Update to Crate Polkadot-2409 and Hyperbridge Integration
ayushmishra2005 Feb 10, 2025
ad81b17
Refactoring
ayushmishra2005 Feb 10, 2025
7d72604
Merge pull request #538 from Cerebellum-Network/feat/payouts-cutoff
yahortsaryk Feb 10, 2025
69bd2dc
Refactoring
ayushmishra2005 Feb 10, 2025
711e3e4
Refactoring
ayushmishra2005 Feb 10, 2025
3c56b0c
Addressed PR comments
ayushmishra2005 Feb 11, 2025
912ede7
Addressed PR comments
ayushmishra2005 Feb 11, 2025
6a62cd5
Merge pull request #539 from Cerebellum-Network/hyperbridge-2409
ayushmishra2005 Feb 11, 2025
dfac74d
To accommodate larger GRANDPA proofs, we’re considering increasing it…
ayushmishra2005 Feb 25, 2025
103bcf9
refactoring
ayushmishra2005 Feb 25, 2025
88d2afb
Update runtime/cere-dev/src/lib.rs
ayushmishra2005 Feb 25, 2025
f5ac022
refactoring
ayushmishra2005 Feb 25, 2025
a352be9
Merge pull request #544 from Cerebellum-Network/increase_block_limit
ayushmishra2005 Feb 25, 2025
0324c1e
Update stage.yaml
ayushmishra2005 Feb 26, 2025
41ca097
fix: the latest PHD format is adapted
yahortsaryk Feb 26, 2025
cda5d5c
feat: serde_as converting for EHD and PHD types
yahortsaryk Feb 26, 2025
2940830
feat: serde_ase for PHD nodes map
yahortsaryk Feb 26, 2025
0948ead
feat: try_from for hexadecimal account
yahortsaryk Feb 27, 2025
b6e6b6b
Merge pull request #546 from Cerebellum-Network/fix/phd-format
yahortsaryk Feb 27, 2025
97e0747
feat: inspection assignments table and inspection paths distribution
yahortsaryk Feb 27, 2025
22968d2
Merge pull request #550 from Cerebellum-Network/feat/inspection-paths…
yahortsaryk Mar 6, 2025
95b2b4e
feat: indexing block number where payout was finalized
yahortsaryk Mar 7, 2025
4091aa8
Merge pull request #551 from Cerebellum-Network/feat/payout-nonce
yahortsaryk Mar 12, 2025
41181e4
Changes for Automate DDC Account Top-Up System
ayushmishra2005 Mar 18, 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
19 changes: 8 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ jobs:
- name: Install toolchain and rust-src
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
toolchain: 1.81.0
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install try-runtime
run: cargo install --git https://github.com/paritytech/try-runtime-cli --tag v0.7.0 --locked
run: cargo install --git https://github.com/paritytech/try-runtime-cli --tag v0.8.0 --locked
- name: Check Build
run: |
cargo update -p home --precise 0.5.9 && cargo build --release --features try-runtime
cargo build --release --features try-runtime
- name: Check Try-Runtime
run: |
try-runtime --runtime ./target/release/wbuild/cere-dev-runtime/cere_dev_runtime.compact.compressed.wasm \
on-runtime-upgrade --disable-idempotency-checks live --uri wss://archive.devnet.cere.network:443
on-runtime-upgrade --blocktime 6000 --disable-idempotency-checks live --uri wss://archive.devnet.cere.network:443
- name: Run dev chain
run: |
timeout --preserve-status 30s ./target/release/cere --dev
Expand All @@ -78,15 +78,15 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
toolchain: 1.81.0
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Check with Clippy
run: |
cargo update -p home --precise 0.5.9 && cargo clippy --no-deps --all-targets --features runtime-benchmarks,try-runtime --workspace -- --deny warnings
cargo clippy --no-deps --all-targets --features runtime-benchmarks,try-runtime --workspace -- --deny warnings

tests:
name: Run tests
Expand All @@ -101,22 +101,19 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
toolchain: 1.81.0
override: true
target: wasm32-unknown-unknown
components: rust-src
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Update dependency
run: |
cargo update -p home --precise 0.5.9
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
version: '0.22.0'
args: '--verbose --locked --no-fail-fast --workspace --features runtime-benchmarks --out "Xml"'
- name: Upload coverage report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tarpaulin coverage
path: ./tarpaulin-report.xml
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ jobs:
docker cp "${CONTAINER_ID}:/home/cere/cere-dev-runtime-artifacts/cere_dev_runtime.compact.compressed.wasm" "./${{ env.CERE_DEV_RUNTIME }}"

- name: Upload cere-runtime wasm artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "cere_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm"
path: "./${{ env.CERE_RUNTIME }}"

- name: Upload cere-dev-runtime wasm artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "cere_dev_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm"
path: "./${{ env.CERE_DEV_RUNTIME }}"
8 changes: 4 additions & 4 deletions .github/workflows/stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release to stage
on:
push:
branches:
- new-dev
- dev
- new-staging
- master
- 'release/**'
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install toolchain and rust-src
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
toolchain: 1.81.0
override: true
target: wasm32-unknown-unknown
components: rust-src
Expand Down Expand Up @@ -90,13 +90,13 @@ jobs:
docker cp "${CONTAINER_ID}:/home/cere/cere-dev-runtime-artifacts/cere_dev_runtime.compact.compressed.wasm" "./${{ env.CERE_DEV_RUNTIME }}"

- name: Upload cere-runtime wasm artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "cere_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm"
path: "./${{ env.CERE_RUNTIME }}"

- name: Upload cere-dev-runtime wasm artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "cere_dev_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm"
path: "./${{ env.CERE_DEV_RUNTIME }}"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [C] Changes is `Cere` Runtime
- [D] Changes is `Cere Dev` Runtime

## [7.3.0]

- [C,D] Update to Polkadot-2409 crate version
- [C,D] Hyperbridge Integration
- [C,D] To accommodate larger GRANDPA proofs, increased `BlockLength` to 7.5MB with 80% for normal extrinsics.

## [7.2.0]

- [C,D] DAC v5 Inspection + Payouts prototype
Expand Down
Loading
Loading