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.15.tar.gz
(14.6 kB
view hashes)
Built Distribution
Close
Hashes for py_order_utils-0.0.15-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ec3704a71ff3332efc60fd2a9685f9ab5619950886c004b4269c46a89819cca |
|
MD5 | ee9aa0065f55faa7b0e74408519f7f26 |
|
BLAKE2b-256 | 083564c1888786ed1c524ba994928fbc4f52869c368b01d693b800416c3d19b0 |