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

layouts optimizations #119

Merged
merged 17 commits into from
Mar 26, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/proof_verification_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
layout: ["dex", "recursive", "recursive_with_poseidon", "small", "starknet"]
layout: ["dex", "recursive", "recursive_with_poseidon", "small", "starknet", "starknet_with_keccak"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cargo run --release --bin snfoundry_proof_serializer < examples/proofs/recursive

```bash
cd examples/starknet
./1-verify-proof.sh 0x069df5a99fa42c37c946c58da0953d721b928078e740fef14da44e0f8c01f0f6 calldata
./1-verify-proof.sh 0x487810706cc0dfdba0c82403d98e9d32dc36793ed2b731231e5ea19f00c5861 calldata
```

[List of deployed Verifier Contracts](deployed_contracts.md)
Expand All @@ -57,7 +57,7 @@ By default, the verifier is configured for recursive layout and keccak hash for
python configure.py -l recursive -s keccak
```

layout types: [dex, recursive, recursive_with_poseidon, small, starknet]
layout types: [dex, recursive, recursive_with_poseidon, small, starknet, starknet_with_keccak]
hash types: [keccak, blake2s]

## Creating a Proof
Expand Down
2 changes: 1 addition & 1 deletion deployed_contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| | **Mainnet** | **starknet** |
| | **Mainnet** | **starknet_with_keccak** |
| | **Sepolia Testnet** | **dex** |
|[0x069df5a99fa42c37c946c58da0953d721b928078e740fef14da44e0f8c01f0f6](https://sepolia.starkscan.co/contract/0x069df5a99fa42c37c946c58da0953d721b928078e740fef14da44e0f8c01f0f6) | **Sepolia Testnet** | **recursive** |
|[0x487810706cc0dfdba0c82403d98e9d32dc36793ed2b731231e5ea19f00c5861](https://sepolia.starkscan.co/contract/0x487810706cc0dfdba0c82403d98e9d32dc36793ed2b731231e5ea19f00c5861) | **Sepolia Testnet** | **recursive** |
| | **Sepolia Testnet** | **recursive_with_poseidon** |
| | **Sepolia Testnet** | **small** |
| | **Sepolia Testnet** | **starknet** |
Expand Down
1,620 changes: 810 additions & 810 deletions src/air/layouts/dex/autogenerated.cairo

Large diffs are not rendered by default.

1,022 changes: 511 additions & 511 deletions src/air/layouts/recursive/autogenerated.cairo

Large diffs are not rendered by default.

1,434 changes: 717 additions & 717 deletions src/air/layouts/recursive_with_poseidon/autogenerated.cairo

Large diffs are not rendered by default.

1,632 changes: 816 additions & 816 deletions src/air/layouts/small/autogenerated.cairo

Large diffs are not rendered by default.

2,060 changes: 1,030 additions & 1,030 deletions src/air/layouts/starknet/autogenerated.cairo

Large diffs are not rendered by default.

7,052 changes: 2,939 additions & 4,113 deletions src/air/layouts/starknet_with_keccak/autogenerated.cairo

Large diffs are not rendered by default.

Loading