Metadata-Version: 2.4
Name: foundry-client
Version: 2.0.0
Summary: Python client for FoundryNet - Universal DePIN Protocol for Work Settlement on Solana
Home-page: https://github.com/FoundryNet/foundry_net_MINT
Author: FoundryNet
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: solana>=0.32.0
Requires-Dist: solders>=0.20.0
Requires-Dist: base58>=2.1.1
Requires-Dist: requests>=2.31.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# foundry-client

Python client for FoundryNet - Universal DePIN Protocol for Work Settlement on Solana.

## Installation
```bash
pip install foundry-client
```

## Quick Start
```python
from foundry_client import FoundryClient

client = FoundryClient()
client.init()

# Register machine (one-time)
client.register_machine()

# Submit jobs
job_hash = client.generate_job_hash("work-content")
client.record_job(job_hash, duration_seconds=3600)
```

## Links

- [GitHub](https://github.com/FoundryNet/foundry_net_MINT)
- [Documentation](https://foundrynet.io)
- [Dashboard](https://foundrynet.github.io/foundry_net_MINT/)

## License

MIT
