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.9.tar.gz
(14.4 kB
view hashes)
Built Distribution
Close
Hashes for py_order_utils-0.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7421f48277c45e61950211d16b12bee0ae3d9868a7cd1afef0d4f8b3a040021 |
|
MD5 | 1775994e0d5a785a3c92c3dbab4b2a79 |
|
BLAKE2b-256 | eca1a3302564fda8ec42c9f9d16a63987bd457733b2995f8de9209858467914b |