fix: include eas-abi.json in package distribution#6
Merged
cyberstorm-daemon merged 1 commit intomainfrom Sep 9, 2025
Merged
Conversation
- Add explicit package configuration in pyproject.toml to fix package discovery - Configure package-data to include JSON files in contracts directory - Bump version to 0.1.4 - Add comprehensive regression test suite with proper formatting Fixes issue where eas-abi.json was missing from built wheel packages, causing web3.exceptions.NoABIFunctionsFound errors on Base Sepolia testnet. The root cause was setuptools auto-discovery creating ambiguous package structures on case-insensitive filesystems (macOS), preventing proper inclusion of package data files.
09297a3 to
74f63f1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes critical packaging issue where
eas-abi.jsonwas missing from built wheel packages, causingweb3.exceptions.NoABIFunctionsFounderrors when creating attestations on Base Sepolia testnet.Root Cause
The issue was caused by setuptools auto-discovery creating ambiguous package structures on case-insensitive filesystems (macOS), which prevented proper inclusion of package data files configured in
pyproject.toml.Changes Made
packageslist inpyproject.tomlto resolve auto-discovery conflictsTesting
eas/contracts/eas-abi.jsonImpact
NoABIFunctionsFounderror prevented any attestation creationResolves the downstream bug report from the Cyberstorm Attestor development team.
🤖 Generated with Claude Code