Skip to main content

Python SDK for interacting with the Open Labels Initiative; A framework for address labels in the blockchain space. Read & write labels into the OLI Label Pool, check your labels for OLI compliance.

Project description

OLI Python Package

Python SDK for interacting with the Open Labels Initiative; A framework for address labels in the blockchain space. Read & write labels into the OLI Label Pool, check your labels for OLI compliance.

Installation

pip install oli-python

Submitting New Labels

from oli import OLI
import os

# Initialize the client
# Make sure to pull in your private key from an .env file
oli = OLI(private_key=os.environ['OLI_PRIVATE_KEY'], is_production=True)

# Create an offchain label
address = "0x9438b8B447179740cD97869997a2FCc9b4AA63a2"
chain_id = "eip155:1" # Ethereum Mainnet
tags = {
    "contract_name": "growthepie donation address",
    "is_eoa": True,
    "owner_project": "growthepie"
}

# Validate if your label is OLI compliant
possible_to_attest = oli.validate_label_correctness(address, chain_id, tags)
print(f"You can attest your label: {possible_to_attest}")

# Submit a label as an offchain attestation
response = oli.submit_offchain_label(address, chain_id, tags)
print(f"Attestation created: {response.text}")

# Submit a label as an onchain attestation
tx_hash, uid = oli.submit_onchain_label(address, chain_id, tags)
print(f"Transaction hash: {tx_hash}")
print(f"Attestation UID: {uid}")

# Batch submit multiple labels as one onchain attestation
labels = [
    {'address': address, 'chain_id': chain_id, 'tags': tags},
    {'address': address, 'chain_id': chain_id, 'tags': tags}
]
tx_hash, uids = oli.submit_multi_onchain_labels(labels)
print(f"Batch transaction hash: {tx_hash}")
print(f"Attestation UIDs: {uids}")

# Revoke an attestation (revoking onchain attestations here)
trx_hash = oli.revoke_attestation(uid, onchain=True)

# Revoke multiple attestations (revoking onchain attestations here)
trx_hash, count = oli.multi_revoke_attestations(uids, onchain=True)

Querying Existing Labels

from oli import OLI
import os

# Initialize the client (read only mode doesn't require a private key)
oli = OLI(is_production=True)

# Query attestations for a specific address
result = oli.graphql_query_attestations(address=address)
print(result)

# Download parquet export of raw attestations
oli.get_full_raw_export_parquet()

# Download parquet export of decoded attestations
oli.get_full_decoded_export_parquet()

Wallet Requirements

The OLI Label Pool lives on Base as an Ethereum Attestation schema.

Make sure your wallet contains ETH on Base Mainnet to pay for onchain transaction (including offchain revocations). Offchain attestations are free.

For testing purposes, you can use Base Sepolia Testnet by setting is_production=False when initializing the client.

Features

  • Submit onchain (single or batch) and offchain (single) labels into the OLI Label Pool
  • Revoke your own labels (single or batch)
  • Validate if your label is OLI compliant
  • Query attestations using GraphQL
  • Download full dataset exports in Parquet format

Documentation

For more details, see the OLI Documentation.

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

oli_python-1.0.0.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

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

oli_python-1.0.0-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file oli_python-1.0.0.tar.gz.

File metadata

  • Download URL: oli_python-1.0.0.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for oli_python-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a8bf3231599cbb2e1d2781882be352d9a5336143584a3283ba55edc27b408ee8
MD5 64aa1b9062765704d60359566c6f6e88
BLAKE2b-256 bcc482e1d40c28be62236d9ee225cfc1c83d2c52cdf007f6287564cf49508e08

See more details on using hashes here.

File details

Details for the file oli_python-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: oli_python-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for oli_python-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3741006ca4deca73c34ac830060264350a5120ed61906b86b2f2def0ab34e11a
MD5 2c06da4918ad4f08fe8d567f7e0bb19e
BLAKE2b-256 bd9130e13dba883a3c40fa3cefe955f1b230c03e4c2d6a2f42f0e98b89ce7b67

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