Metadata-Version: 2.4
Name: alkahest-py
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# alkahest-py

## build

0. install [uv](https://docs.astral.sh/uv/) & [the rust toolchain](https://rustup.rs). install maturin with `uv tool install maturin`

1. clone this repo and https://github.com/coophive/alkahest-rs into parallel directories

```bash
mkdir alkahest-sdks && cd alkahest-sdks
git clone https://github.com/coophive/alkahest-rs
git clone https://github.com/coophive/alkahest-py
```
2. build alkahest-py

```bash
cd alkahest-py
uv run maturin build
```

3. generate docs via `cargo doc --open`

## usage

1. install into any python project via the wheel, e.g. `pip install path-to-alkahest-py/target/wheels/alkahest_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl` (or `uv pip install ...`). your exact file might be different by system, but should be in the same directory.

2. import the module and create an AlkahestClient instance

```python
from alkahest_py import AlkahestClient

client = AlkahestClient(
        "0xprivatekey",
        "https://rpc_url.com"
)

async def main():
    hash = await client.erc20.approve(
        {"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "value": 100},
        "escrow",
    )

    print(hash)

if __name__ == "__main__":
    asyncio.run(main())
```

3. see the `cargo doc` generated docs for API details. most functions are in the submodules Erc20Client, Erc721Client etc. the alkahest-rs docs will probably be more useful than the alkahest-py docs, since many rust types get wrangled into python strings. FixedBytes<32> and Address are strings starting with "0x" in python, but Bytes is python bytes (b"..."). structs (ArbiterData, Erc20Data) are dictionaries with item names matching the struct's fields. ApprovalPurpose can be "escrow" or "payment".

note that ArbiterData ({"arbiter": "0x...", "demand": b"..."}) expects demand as abi encoded bytes. for arbiters that aren't explicitly supported, you'll have to manually encode the Solidity struct, e.g. with [eth_abi](https://eth-abi.readthedocs.io/en/latest/encoding.html). passing a dictionary matching the solidity struct's format isn't supported.

see alkahest_py/test.py for a usage example.

