Skip to content

Commit 3adb570

Browse files
Release v0.18.1 (#399)
1 parent be864fd commit 3adb570

File tree

17 files changed

+1996
-2166
lines changed

17 files changed

+1996
-2166
lines changed

.github/scripts/declare_maintained_contracts.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,8 @@ async def declare_contract_from_path_both_networks(path: Path):
6767
Path("src/contracts/autogenerated/risc0_verifier_bn254")
6868
)
6969
)
70+
asyncio.run(
71+
declare_contract_from_path_both_networks(
72+
Path("src/contracts/autogenerated/sp1_verifier_bn254")
73+
)
74+
)

.github/scripts/verify_contracts.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ def get_class_hash_from_generator():
3434
async def verify_network(network: Network, class_hash: str):
3535
class_hash = io.to_hex_str(class_hash)
3636
print(f"\nVerifying class hash {class_hash} on {network.value}...")
37-
client = FullNodeClient(f"https://free-rpc.nethermind.io/{network.value}-juno")
37+
rpc_url = f"https://starknet-{network.value}.public.blastapi.io/rpc/v0_8"
38+
39+
print(f"Using RPC URL: {rpc_url}")
40+
client = FullNodeClient(rpc_url)
3841
try:
3942
result = await client.get_class_by_hash(class_hash)
4043
if not result:
@@ -72,3 +75,8 @@ async def verify_contract_from_path(path: Path):
7275
Path("src/contracts/autogenerated/risc0_verifier_bn254")
7376
)
7477
)
78+
asyncio.run(
79+
verify_contract_from_path(
80+
Path("src/contracts/autogenerated/sp1_verifier_bn254")
81+
)
82+
)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "garaga"
7-
version = "0.18.0"
7+
version = "0.18.1"
88
requires-python = ">=3.10,<3.11"
99
dependencies = [
1010
"fastecdsa>=3.0.0",

src/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "garaga"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2023_10"
55
licence = "MIT"
66
keywords = ["zk", "snarks", "curve", "pairing", "groth16", "plonk", "bls", "elliptic", "signature"]

0 commit comments

Comments
 (0)