Skip to main content

A Python library to retrieve smart contract function metadata and data from EVM-compatible blockchains

Project description

🦉 Owl - Smart Contract Data Retrieval

A Python library to easily retrieve function metadata and data from any smart contract on EVM-compatible blockchains.

Installation

pip install -e .

Or install with dependencies:

pip install web3 requests

Quick Start

import owl

# Configure the library
owl.configure(
    etherscan_api_key="YOUR_ETHERSCAN_API_KEY",
    rpc_url="https://eth.public-rpc.com",  # or your preferred RPC
    chain="ethereum"  # ethereum, polygon, bsc, arbitrum, etc.
)

# Get all functions from a contract (USDT example)
functions = owl.get_functions("0xdAC17F958D2ee523a2206206994597C13D831ec7")
for fn in functions:
    print(f"📌 {fn['name']}")
    print(f"   Inputs: {fn['inputs']}")
    print(f"   Outputs: {fn['outputs']}")

# Call a function and get data
result = owl.get_data(
    "0xdAC17F958D2ee523a2206206994597C13D831ec7",
    "totalSupply",
    []
)
print(f"Total Supply: {result['result']}")

Environment Variables

Instead of calling configure(), you can set these environment variables:

export OWL_ETHERSCAN_API_KEY="your_key"
export OWL_RPC_URL="https://eth.public-rpc.com"
export OWL_CHAIN="ethereum"

API Reference

owl.get_functions(contract_address, abi=None, include_events=False, only_view=False)

Get all functions from a smart contract.

Parameters:

  • contract_address (str): The contract address
  • abi (list, optional): Provide custom ABI instead of fetching
  • include_events (bool): Include contract events (default: False)
  • only_view (bool): Only return view/pure functions (default: False)

Returns: List of function definitions with signatures, inputs, and outputs.


owl.get_data(contract_address, function_name, inputs=None, start_date=None, end_date=None)

Call a contract function and get the result.

Parameters:

  • contract_address (str): The contract address
  • function_name (str): Name of the function to call
  • inputs (list, optional): Input arguments for the function
  • start_date (str, optional): Start date for historical data ("YYYY-MM-DD")
  • end_date (str, optional): End date for historical data ("YYYY-MM-DD")

Returns:

  • Without date range: {"result": ..., "block": 12345, "timestamp": "..."}
  • With date range: List of results at sampled blocks

Supported Chains

Chain Explorer API
Ethereum Etherscan
Polygon Polygonscan
BSC BscScan
Arbitrum Arbiscan
Optimism OP Etherscan
Avalanche Snowtrace
Fantom FTMScan
Base BaseScan

Error Handling

from owl.exceptions import (
    OwlConfigurationError,    # Missing API key or RPC
    ContractNotFoundError,    # Invalid contract address
    ABINotFoundError,         # Contract not verified
    FunctionNotFoundError,    # Function doesn't exist
    InvalidInputError,        # Wrong input parameters
    HistoricalDataUnavailableError,  # Archive node required
    DateRangeError,           # Invalid date format
)

try:
    result = owl.get_data("0x...", "unknownFunc", [])
except FunctionNotFoundError as e:
    print(f"Function not found! Available: {e.available_functions}")

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

owl_contracts-0.1.5.tar.gz (18.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

owl_contracts-0.1.5-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file owl_contracts-0.1.5.tar.gz.

File metadata

  • Download URL: owl_contracts-0.1.5.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.4

File hashes

Hashes for owl_contracts-0.1.5.tar.gz
Algorithm Hash digest
SHA256 11ea24aea0a2b9e59545c85fb4d7855880c492d2f17d61c779e8bcdbdb14ebab
MD5 42eac2f2aedec36c21e770355ceea49b
BLAKE2b-256 c967565dee31d6d7a13cd3603742af11b123459e9de37b5d515cd44ca2694fcd

See more details on using hashes here.

File details

Details for the file owl_contracts-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: owl_contracts-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.4

File hashes

Hashes for owl_contracts-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 bf7ba50afdac234bef937c1e739a671a049c9778403f322eadb308e8b0f78ff4
MD5 0a6ddaaab8f6cfb5c874cb543474a195
BLAKE2b-256 ba789f350b32ba06cbc1d7cbab7c1dd13a65774f7e59ff28f549ca9a0de9b9c5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page