Skip to main content

No project description provided

Project description

CoW Protocol Python SDK

Help the herd ๐Ÿฎ

๐Ÿ„ Introduction

Welcome to the CoW Protocol Python SDK (cowdao_cowpy), a developer-friendly Python library for interacting with the CoW Protocol. This SDK provides tools for querying on-chain data, managing orders, and integrating with the CoW Protocol's smart contracts. Whether you're building a DeFi application, a solver, or just exploring the CoW Protocol, this SDK aims to make your development journey smoother and more enjoyable. ๐Ÿš€

๐Ÿ„ Features

  • Querying CoW Protocol subgraph.
  • Managing orders on the CoW Protocol.
  • Interacting with CoW Protocol smart contracts.
  • Encoding orders metadata and pinning to CID.
  • Fetching and decoding blockchain data.

๐Ÿ„ Installation

Get started by installing cowdao_cowpy:

pip install cowdao_cowpy

๐Ÿ„ Getting Started

Here's a simple example to get your hooves dirty:

from cowdao_cowpy.order_book.api import OrderBookApi, UID

# Initialize the OrderBookApi
order_book_api = OrderBookApi()

# Fetch and display orders
orders = order_book.get_order_by_uid(UID("0x..."))
print(orders)

๐Ÿ„ Project Structure

  • common/: Utilities and configurations, the backbone of the SDK.
  • contracts/(TODO): A pasture of Smart contract ABIs for interaction.
  • order_book/: Functions to wrangle orders on the CoW Protocol.
  • order_signing/(TODO): Tools for signing and validating orders. Anything inside this module should use higher level modules, and the process of actually signing (ie. calling the web3 function to generate the signature, should be handled in contracts, not here).
  • subgraph/: GraphQL client for querying CoW Protocol's Subgraph.
  • web3/: Web3 providers for blockchain interactions.

๐Ÿ„ How to Use

Querying the Subgraph

Using the built-in GraphQL client, you can query the CoW Protocol's Subgraph to get real-time data on the CoW Protocol. You can query the Subgraph by using the SubgraphClient class and passing in the URL of the Subgraph.

from cowdao_cowpy.subgraph.client import SubgraphClient
from cowdao_cowpy.subgraph.deployments import build_subgraph_url

url = build_subgraph_url() # Default network is Chain.SEPOLIA and env SubgraphEnvironment.PRODUCTION
client = SubgraphClient(url=url)

# Fetch the total supply of the CoW Protocol, defined in a query in cowdao_cowpy/subgraph/queries
totals = await client.totals()
print(totals) # Pydantic model, defined in cowdao_cowpy/subgraph/graphql_client/{query_name}.py

Or you can leverage SubgraphClient to use a custom query and get the results as JSON:

from pprint import pprint
from cowdao_cowpy.subgraph.client import SubgraphClient
from cowdao_cowpy.subgraph.deployments import build_subgraph_url

url = build_subgraph_url() # Default network is Chain.SEPOLIA and env SubgraphEnvironment.PRODUCTION
client = SubgraphClient(url=url)

response = await client.execute(query="""
            query LastDaysVolume($days: Int!) {
              dailyTotals(orderBy: timestamp, orderDirection: desc, first: $days) {
                timestamp
                volumeUsd
              }
            }
            """, variables=dict(days=2)
            )

data = client.get_data(response)
pprint(data)

Or you can leverage SubgraphClient to use a custom query and get the results as JSON:

from pprint import pprint
from cowdao_cowpy.subgraph.client import SubgraphClient
from cowdao_cowpy.subgraph.deployments import build_subgraph_url

url = build_subgraph_url() # Default network is Chain.SEPOLIA and env SubgraphEnvironment.PRODUCTION
client = SubgraphClient(url=url)

response = await client.execute(query="""
            query LastDaysVolume($days: Int!) {
              dailyTotals(orderBy: timestamp, orderDirection: desc, first: $days) {
                timestamp
                volumeUsd
              }
            }
            """, variables=dict(days=2)
            )

data = client.get_data(response)
pprint(data)

๐Ÿ„ Development

๐Ÿ„ Tests

Run tests to ensure everything's working:

make test # or poetry run pytest

๐Ÿ„ Formatting/Linting

Run the formatter and linter:

make format # or ruff check . --fix
make lint # or ruff format

๐Ÿ„ Codegen

Generate the SDK from the CoW Protocol smart contracts, Subgraph, and Orderbook API:

make codegen

๐Ÿ„ Development

๐Ÿ„ Tests

Run tests to ensure everything's working:

make test # or poetry run pytest

๐Ÿ„ Formatting/Linting

Run the formatter and linter:

make format # or ruff check . --fix
make lint # or ruff format

๐Ÿ„ Codegen

Generate the SDK from the CoW Protocol smart contracts, Subgraph, and Orderbook API:

make codegen

๐Ÿ„ Development

๐Ÿ„ Tests

Run tests to ensure everything's working:

make test # or poetry run pytest

๐Ÿ„ Formatting/Linting

Run the formatter and linter:

make format # or ruff check . --fix
make lint # or ruff format

๐Ÿ„ Codegen

Generate the SDK from the CoW Protocol smart contracts, Subgraph, and Orderbook API:

make codegen

๐Ÿ„ Contributing to the Herd

Interested in contributing? Here's how you can help:

git clone https://github.com/cowdao-grants/cow-py
cd cow-py
poetry install

After making changes, make sure to run the appropriate code generation tasks and tests:

make codegen
make test

๐Ÿ„ Need Help?

Got questions, bug reports, or feature requests? Open an issue in our GitHub repository.

๐Ÿ„ License

cowdao_cowpy is released under the GNU License. For more details, check out the LICENSE file.


Happy coding, and may the herd be with you! ๐Ÿ„๐Ÿ’ป

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

cowdao_cowpy_kongzii-1.0.0rc2.tar.gz (63.7 kB view details)

Uploaded Source

Built Distribution

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

cowdao_cowpy_kongzii-1.0.0rc2-py3-none-any.whl (82.4 kB view details)

Uploaded Python 3

File details

Details for the file cowdao_cowpy_kongzii-1.0.0rc2.tar.gz.

File metadata

  • Download URL: cowdao_cowpy_kongzii-1.0.0rc2.tar.gz
  • Upload date:
  • Size: 63.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.10.10 Darwin/23.5.0

File hashes

Hashes for cowdao_cowpy_kongzii-1.0.0rc2.tar.gz
Algorithm Hash digest
SHA256 b78ef90e4e0ca4f1f37bae4d8f62af7270828df93b4677f5f6532432d617dab5
MD5 bf9eb3f2ec8a970c4102024242ed7cfc
BLAKE2b-256 d204a8e02ec5f92e5a065f4dcf175863d420df441f364aebe5dba634a72c174e

See more details on using hashes here.

File details

Details for the file cowdao_cowpy_kongzii-1.0.0rc2-py3-none-any.whl.

File metadata

File hashes

Hashes for cowdao_cowpy_kongzii-1.0.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 359d22d06faff41e3e84ec47c7ce7729f9f46a5af22b41cd04b4c9361c3e0628
MD5 636aac1cf6135f5115fc4eb21eb0e7db
BLAKE2b-256 a50e93ec1582156d57ce40a3e523a59c5a26718890c3a3727f1a0285d5dc9d9d

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