Skip to content

Commit

Permalink
Merge pull request #95 from KasarLabs/sync
Browse files Browse the repository at this point in the history
Sync
  • Loading branch information
antiyro authored Jan 11, 2024
2 parents ec47d6e + 5ebb6e0 commit 9e548cf
Show file tree
Hide file tree
Showing 58 changed files with 1,867 additions and 4,160 deletions.
104 changes: 0 additions & 104 deletions .github/workflows/benchmarks.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/configs-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
genesis-docs:
name: Genesis documentation
runs-on: ubuntu-latest
if: ${{ github.event.label.name != 'ignore-docs' }}
if: startsWith(github.event.ref, 'refs/tags/ignore-docs')
steps:
- uses: actions/checkout@v3
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/madara-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
with:
path: |
target/release/madara
configs
key:
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{
github.run_id }}
Expand All @@ -24,10 +23,10 @@ jobs:
target/release/madara setup --chain local --from-local=configs
- name: Create build-spec (plain)
run: |
target/release/madara build-spec --chain local > chain-plain.json
RUST_LOG=debug target/release/madara build-spec --chain local > chain-plain.json
- name: Create build-spec (raw)
run: |
target/release/madara build-spec --chain chain-plain.json --raw > chain-raw.json
RUST_LOG=debug target/release/madara build-spec --chain chain-plain.json --raw > chain-raw.json
- name: Generate Sr25519 key for Aura (Leader Election)
id: key-gen
run: |
Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,3 @@ jobs:
SCARB_VERSION: "2.3.1"
steps:
- uses: keep-starknet-strange/starknet-foundry-compatibility-tests@main

# https://github.com/keep-starknet-strange/madara/issues/1097
# benchmark:
# name: Run benchmarks
# uses: ./.github/workflows/benchmarks.yml
# needs: [rust_build, tests]
# permissions:
# # deployments permission to deploy GitHub pages website
# deployments: write
# # contents permission to update benchmark contents in gh-pages branch
# contents: write
# # post on the pull-request page
# pull-requests: write
13 changes: 0 additions & 13 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,6 @@ jobs:
steps:
- uses: keep-starknet-strange/starknet-foundry-compatibility-tests@main

# https://github.com/keep-starknet-strange/madara/issues/1097
# benchmark:
# name: Run benchmarks
# uses: ./.github/workflows/benchmarks.yml
# needs: [rust_build, tests]
# permissions:
# # deployments permission to deploy GitHub pages website
# deployments: write
# # contents permission to update benchmark contents in gh-pages branch
# contents: write
# # post on the pull-request page
# pull-requests: write

rustdoc:
name: Deploy docs to GitHub Pages
uses: ./.github/workflows/rustdoc.yml
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/rust-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
with:
path: |
target/release/madara
configs
key:
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{
github.run_id }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/starknet-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
with:
path: |
target/release/madara
configs
key:
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{
github.run_id }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/starknet-rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
with:
path: |
target/release/madara
configs
key:
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{
github.run_id }}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Next release

- chore: feature flags for avail and celestia DA
- feat(rpc): added support for v0.5.1 JSON-RPC specs
- feat(rpc): added ordered messages/events in trace fields
- feat(rpc): support for starknet.rs v0.5.1 version
- feat(rpc): added execution resources in trace fields
- feat(rpc): added state diff field in trace fields
- refactor: removed benchmarking folder and traces of CI pipeline
- fix: decouple is_query into is_query and offset_version
- feat: add sierra to casm class hash mapping to genesis assets
- chore: remove ArgentMulticall from genesis assets
- feat: remove `seq_addr_updated` from `GenesisData`
Expand Down Expand Up @@ -34,6 +42,7 @@
- feat(settlement): e2e test with Madara node settling on Ethereum contract
- refactor: use `map` in `estimate_fee` to stop computation on error
- fix: `tempdir` crate has been deprecated; use `tempfile` instead
- dev: add avail and celestia crates behind a feature flag

## v0.6.0

Expand Down
Loading

0 comments on commit 9e548cf

Please sign in to comment.