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

Add integrity to Scarb registry #160

Merged
merged 4 commits into from
Nov 22, 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
9 changes: 9 additions & 0 deletions .scarbignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
audit
benches
deployment
examples
runner
serializer
rust-toolchain.toml
*.sh
snfoundry.toml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Since integrity is deployed on Starknet, other contracts can call FactRegistry t

```toml
[dependencies]
integrity = { git = "https://github.com/HerodotusDev/integrity" }
integrity = "2.0.0"
```

The package provides many utility functions for interacting with the verifier. For contract calls, you can use `Integrity` struct which provides following methods:
Expand Down
8 changes: 7 additions & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[package]
name = "integrity"
version = "0.1.0"
version = "2.0.0"
authors = ["HerodotusDev"]
description = "STARK proof verifier for Starknet"
readme = "README.md"
repository = "https://github.com/HerodotusDev/integrity"
license = "Apache-2.0"
keywords = ["STARK proof", "verifier", "cairo_verifier"]

[dependencies]
starknet = "2.8.4"
Expand Down
2 changes: 1 addition & 1 deletion deployment/proxy/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
echo -n "Owner account address: "
read OWNER

CLASSHASH=0x42e2c9fcdaac0d8d368b1665ff220bbf2203080229f0f506d1a9b84966ca497
CLASSHASH=0x1890dd57c85c08c56f452a68801a969afb9eb9bdc337d336c37d7670723bb4e

sncast \
deploy \
Expand Down
Loading