Skip to content

Commit

Permalink
Merge pull request #103 from KasarLabs/sync
Browse files Browse the repository at this point in the history
Sync
  • Loading branch information
antiyro authored Jan 23, 2024
2 parents 8f746a9 + 959bd4e commit 9200856
Show file tree
Hide file tree
Showing 49 changed files with 265,877 additions and 1,320 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-contrib/features/protoc-asdf:1": {}
"ghcr.io/devcontainers-contrib/features/protoc-asdf:1": {},
},
"hostRequirements": {
"cpus": 8,
"memory": "16gb",
"storage": "128gb"
}
"storage": "128gb",
},
}
4 changes: 3 additions & 1 deletion .github/workflows/configs-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install sha3sum
run: sudo apt-get install libdigest-sha3-perl
- name: Verify hashes
run: |
for f in $(find configs/genesis-assets -type f -not -path configs/index.json); do
cat configs/index.json | grep $(md5sum $f | awk '{print $1}')
cat configs/index.json | grep $(sha3sum -a 256 $f | awk '{print $1}')
done
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Next release

- feat: types in `mp-transactions` impl a method to get their version
- feat: make L1 gas price a `const` of the `RuntimeConfig`
- fix: broken class hashes and contracts in genesis
- refactor: rename LAST_SYNCED_L1_BLOCK to be more clear
- chore: add headers to da calldata, fix eth da in sovereign mode
- refacto(simulate_tx): move logic to the client
- chore: added ca-certificate in DockerFile for SSL related issues
- chore(primitives/commitment): remove crate
- chore(primitives/block/header): remove starknet-trie dependent fields
- refacto(primitives/db): add a temporary way to get a fake global state root
- feat(rpc): add starknet_version and eth_l1_gas_fee on block header
- fix(spec_version): spec version now returning 0.5.1
- chore: feature flags for avail and celestia DA
Expand Down Expand Up @@ -45,6 +55,8 @@
- 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
- dev: replace md5 with sha3_256 hash function
- feat: fixing getNonce Rpc Call and adding a new test

## v0.6.0

Expand Down
Loading

0 comments on commit 9200856

Please sign in to comment.