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

Sync #108

Merged
merged 10 commits into from
Jan 29, 2024
Merged

Sync #108

Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@
[submodule "madara-tsukuyomi"]
path = madara-tsukuyomi
url = https://github.com/keep-starknet-strange/madara-tsukuyomi
[submodule "zaun"]
path = zaun
url = https://github.com/keep-starknet-strange/zaun
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Madara Changelog
git # Madara Changelog

## Next release

- feat: store events in block, return events in call get_transaction_receipt
- fix: don't ignore Sierra to CASM mapping in genesis config
- refacto: early exit txs fee estimation when one fails
- dev: fix linter warning in README.md
- fix: remove waiting loop from `getTxReceipt`
- 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
Expand Down Expand Up @@ -58,6 +62,9 @@
- 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
- refactor: use Zaun crate for Starknet core contract bindings
- refactor: use Anvil sandbox from Zaun crate
- feat(rpc) : estimateMessageFee RPC call implementation

## v0.6.0

Expand Down Expand Up @@ -95,6 +102,7 @@
- chore(data-availability-avail): implement fire and forget, and add ws
reconnection logic
- chore: update `polkadot-sdk` to `release-polkadot-v1.3.0`
- feat: fallback default file for DA and Settlement configuration files

## v0.5.0

Expand Down Expand Up @@ -260,3 +268,4 @@
- feat: add a `genesis_loader` for the node and mocking
- feat: add `madara_tsukuyomi` as a submodule
- branding: use new logo in the README
- dev: Get the block status from the actual block in get_block_with_tx_hashes
29 changes: 18 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ cairo-lang-utils = { git = "https://github.com/keep-starknet-strange/cairo.git",
ethers = { git = "https://github.com/gakonst/ethers-rs", rev = "f0e5b194f09c533feb10d1a686ddb9e5946ec107" }
ethers-solc = { git = "https://github.com/gakonst/ethers-rs", rev = "f0e5b194f09c533feb10d1a686ddb9e5946ec107" }

# Zaun
zaun-sandbox = { git = "https://github.com/keep-starknet-strange/zaun", package = "sandbox" }
starknet-core-contract-client = { git = "https://github.com/keep-starknet-strange/zaun" }

# Other third party dependencies
anyhow = "1.0.75"
flate2 = "1.0.28"
Expand Down
40 changes: 0 additions & 40 deletions Dockerfile

This file was deleted.

Loading
Loading