Skip to content

Releases: cyberstorm-dev/eas-sdk-python

Release v0.1.6

13 Sep 20:34
142a1dc

Choose a tag to compare

EAS SDK v0.1.6

Python SDK for Ethereum Attestation Service (EAS)

📦 Installation

From PyPI (recommended):

pip install eas-sdk==0.1.6

From wheel:

pip install ./eas_sdk-0.1.6-py3-none-any.whl

From source:

pip install ./eas-sdk-0.1.6.tar.gz

🚀 Features

  • Create and verify attestations on EAS
  • Multi-chain support (Ethereum, Base, Optimism, Arbitrum, Polygon, etc.)
  • Comprehensive schema management
  • Off-chain attestation support with EIP-712
  • Batch operations for gas efficiency
  • Type-safe Python API with full typing support

📖 Documentation

🔗 Quick Start

from eas import EAS

# Create EAS instance for Base Sepolia testnet
eas = EAS.from_chain("base-sepolia", private_key, from_account)

# Create an attestation
result = eas.create_attestation(
    schema_uid="0x...",
    recipient="0x...",
    data={"message": "Hello EAS!"}
)

print(f"Attestation created: {result.tx_hash}")

What's Changed

Full Changelog: v0.1.1...v0.1.6

Release v0.1.1

07 Sep 05:53
e63344e

Choose a tag to compare

EAS SDK v0.1.1

Python SDK for Ethereum Attestation Service (EAS)

📦 Installation

From PyPI (recommended):

pip install eas-sdk==0.1.1

From wheel:

pip install ./eas_sdk-0.1.1-py3-none-any.whl

From source:

pip install ./eas-sdk-0.1.1.tar.gz

🚀 Features

  • Create and verify attestations on EAS
  • Multi-chain support (Ethereum, Base, Optimism, Arbitrum, Polygon, etc.)
  • Comprehensive schema management
  • Off-chain attestation support with EIP-712
  • Batch operations for gas efficiency
  • Type-safe Python API with full typing support

📖 Documentation

🔗 Quick Start

from main.EAS import EAS

# Create EAS instance for Base Sepolia testnet
eas = EAS.from_chain("base-sepolia", private_key, from_account)

# Create an attestation
result = eas.create_attestation(
    schema_uid="0x...",
    recipient="0x...",
    data={"message": "Hello EAS!"}
)

print(f"Attestation created: {result.tx_hash}")

Full Changelog: https://github.com/cyberstorm-dev/eas-sdk-python/commits/v0.1.1