Skip to content

Commit 8d6b1cb

Browse files
authoredNov 22, 2024··
Merge pull request #160 from HerodotusDev/scarb_registry
Add integrity to Scarb registry
2 parents 7e8b49a + 029ba38 commit 8d6b1cb

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed
 

‎.scarbignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
audit
2+
benches
3+
deployment
4+
examples
5+
runner
6+
serializer
7+
rust-toolchain.toml
8+
*.sh
9+
snfoundry.toml

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Since integrity is deployed on Starknet, other contracts can call FactRegistry t
7474

7575
```toml
7676
[dependencies]
77-
integrity = { git = "https://github.com/HerodotusDev/integrity" }
77+
integrity = "2.0.0"
7878
```
7979

8080
The package provides many utility functions for interacting with the verifier. For contract calls, you can use `Integrity` struct which provides following methods:

‎Scarb.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[package]
22
name = "integrity"
3-
version = "0.1.0"
3+
version = "2.0.0"
4+
authors = ["HerodotusDev"]
5+
description = "STARK proof verifier for Starknet"
6+
readme = "README.md"
7+
repository = "https://github.com/HerodotusDev/integrity"
8+
license = "Apache-2.0"
9+
keywords = ["STARK proof", "verifier", "cairo_verifier"]
410

511
[dependencies]
612
starknet = "2.8.4"

‎deployment/proxy/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
echo -n "Owner account address: "
22
read OWNER
33

4-
CLASSHASH=0x42e2c9fcdaac0d8d368b1665ff220bbf2203080229f0f506d1a9b84966ca497
4+
CLASSHASH=0x1890dd57c85c08c56f452a68801a969afb9eb9bdc337d336c37d7670723bb4e
55

66
sncast \
77
deploy \

0 commit comments

Comments
 (0)
Please sign in to comment.