Python utilities used to generate and sign limit and market orders on Polymarket's CLOB
Project description
Polymarket CLOB 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
from pprint import pprint
def main():
exchange_address = "0x...."
chain_id = 80001
signer = Signer("0x....")
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 API
pprint(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.21.tar.gz
(14.4 kB
view hashes)
Built Distribution
Close
Hashes for py_order_utils-0.0.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d080b4f8f709d755b1b16e0954aeb28a1fa8488c5c5a1634115ef161ae80189a |
|
MD5 | 34c535e3ea10d8b90efe8226ce520373 |
|
BLAKE2b-256 | ad9b6f10449557eac7978bfe08fe59bd35503f310961f401e6cd3d664d79440f |