Skip to content

Commit

Permalink
Merge pull request #160 from HerodotusDev/scarb_registry
Browse files Browse the repository at this point in the history
Add integrity to Scarb registry
  • Loading branch information
fmkra authored Nov 22, 2024
2 parents 7e8b49a + 029ba38 commit 8d6b1cb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
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

0 comments on commit 8d6b1cb

Please sign in to comment.