| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-15 | 1.3 kB | |
| v2.41.3 source code.tar.gz | 2026-05-15 | 1.8 MB | |
| v2.41.3 source code.zip | 2026-05-15 | 2.0 MB | |
| Totals: 3 Items | 3.8 MB | 0 | |
Fixed
- Polymarket: market orders now use FOK instead of fake GTC limit orders with fallback prices.
createOrder({ type: 'market' })now calls the CLOB's nativecreateMarketOrder()and posts withFOK(fill-or-kill), matching how all other exchanges handle market orders. - Polymarket: fill amounts no longer divided by 1e6. The CLOB response's
makingAmount/takingAmountare already human-readable values, not raw 6-decimal units. Dividing by 1e6 was turning 12-share fills into 0.000012 dust. This was the root cause of all dust fills on Polymarket.
Added
- SDK (TypeScript + Python): non-custodial SOR trading.
createOrder()on the SOR exchange now does build/sign/submit internally. The SDK callsbuildOrder(SOR plans fills), signs locally with the user's private key, then callssubmitOrder(SOR records fills). No signer webhook needed. Private key never leaves the SDK.
Installation
npm:
:::bash
npm install pmxtjs@2.41.3
PyPI:
:::bash
pip install pmxt==2.41.3
Links
Full Changelog: https://github.com/pmxt-dev/pmxt/compare/v2.41.1f...v2.41.3f