Metadata-Version: 2.4
Name: synthetix
Version: 0.1.24
Summary: Python SDK for interacting with Synthetix V3 smart contracts
Project-URL: Homepage, https://github.com/Synthetixio/python-sdk
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: gql[aiohttp,requests]>=3.4.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: requests>=2.28.0
Requires-Dist: web3>=6.0.0
Description-Content-Type: text/markdown

# Synthetix Python SDK

Python SDK for interacting with Synthetix V3 smart contracts.

## Installation

```bash
pip install synthetix
```

## Quick Start

```python
from synthetix import Synthetix

snx = Synthetix(
    provider_rpc="https://base-mainnet.infura.io/v3/...",
    network_id=8453,
    address="0x...",
)

# Fetch core account IDs
account_ids = snx.core.get_account_ids()

# Get perps markets
markets = snx.perps.get_markets()
```

## License

MIT
