Python utilities used to generate and sign limit and market orders on Polymarket's CLOB
Project description
python-order-utils
Python utilities used to generate and sign limit and market orders on Polymarket's CLOB
Install
pip install py-order-utils
Usage
from py_order_utils.builders import LimitOrderBuilder
from py_order_utils.signer import Signer
exchange_address = "0x...."
chain_id = 1
signer = Signer("0xMockPrivateKey")
builder = LimitOrderBuilder(exchange_address, chain_id, signer)
# Create and sign the limit order
limit_order = builder.create_limit_order(
LimitOrderData(
maker_asset_address="0x...",
taker_asset_address="0x...",
taker_asset_id=1,
...
)
)
# Generate the Order and Signature json to be sent to the CLOB
d = json.dumps(limit_order.dict())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_order_utils-0.0.10.tar.gz
(14.4 kB
view hashes)
Built Distribution
Close
Hashes for py_order_utils-0.0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dab1e72ff7845ed3917c947c21425ce37007f4733871ed71992feeed36178614 |
|
MD5 | 52ab3686f199ec5d7ffc6ef947c5bd07 |
|
BLAKE2b-256 | c9e35c2ed8fb42b0bf4cfcb69616cd21635086410978bcb0d82b9697555ceea8 |