Skip to content
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
4 changes: 2 additions & 2 deletions examples/full_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root / "src" / "main"))

from EAS import EAS
from EAS.config import get_network_config
from eas import EAS
from eas.config import get_network_config
from eth_abi import encode


Expand Down
4 changes: 2 additions & 2 deletions examples/quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root / "src" / "main"))

from EAS import EAS
from eas import EAS


def main():
Expand All @@ -50,7 +50,7 @@ def main():

# Example 2: List supported chains
print("\n2. List available chains")
from EAS.config import list_supported_chains, get_mainnet_chains, get_testnet_chains
from eas.config import list_supported_chains, get_mainnet_chains, get_testnet_chains

all_chains = list_supported_chains()
mainnet_chains = get_mainnet_chains()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@ markers = [
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503", "C901"]
exclude = ["src/main/eas/v1/messages_pb2.py", "src/main/eas/v1/messages_pb2_grpc.py"]
exclude = ["src/main/eas/v1/messages_pb2.py", "src/main/eas/v1/messages_pb2_grpc.py", "examples/"]
Loading