Skip to content

Commit

Permalink
Fix broken imports when installing package (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime authored Aug 25, 2024
1 parent 1d75c78 commit e7eacaa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions hydra/garaga/starknet/cli/smart_contract_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
from starknet_py.hash.sierra_class_hash import compute_sierra_class_hash
from starknet_py.net.account.account import Account

from hydra.garaga.starknet.groth16_contract_generator.calldata import (
from garaga.starknet.groth16_contract_generator.calldata import (
groth16_calldata_from_vk_and_proof,
)
from hydra.garaga.starknet.groth16_contract_generator.parsing_utils import (
from garaga.starknet.groth16_contract_generator.parsing_utils import (
Groth16Proof,
Groth16VerifyingKey,
)
Expand Down
8 changes: 3 additions & 5 deletions hydra/garaga/starknet/cli/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,13 @@
load_account,
voyager_link_tx,
)
from garaga.starknet.groth16_contract_generator.parsing_utils import (
find_item_from_key_patterns,
)
from hydra.garaga.starknet.groth16_contract_generator.calldata import (
from garaga.starknet.groth16_contract_generator.calldata import (
groth16_calldata_from_vk_and_proof,
)
from hydra.garaga.starknet.groth16_contract_generator.parsing_utils import (
from garaga.starknet.groth16_contract_generator.parsing_utils import (
Groth16Proof,
Groth16VerifyingKey,
find_item_from_key_patterns,
)

app = typer.Typer()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "garaga"
version = "0.13.2"
version = "0.13.2.1"
requires-python = ">=3.10,<3.11"
dependencies = [
"fastecdsa",
Expand Down
2 changes: 1 addition & 1 deletion tests/contracts_e2e/fixtures/accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from starknet_py.net.models import StarknetChainId
from starknet_py.net.signer.stark_curve_signer import KeyPair

import hydra.garaga.hints.io as io
import garaga.hints.io as io
from tests.contracts_e2e.fixtures.constants import (
DEVNET_PRE_DEPLOYED_ACCOUNT_ADDRESS,
DEVNET_PRE_DEPLOYED_ACCOUNT_PRIVATE_KEY,
Expand Down

0 comments on commit e7eacaa

Please sign in to comment.