How to create or cancel orders
Sections:
How to install the SDK
"@predictdotfun/sdk": "^1.0.0"
).yarn add @predictdotfun/sdk ethers
npm install @predictdotfun/sdk ethers
OrderBuilder
class for more in-depth details on each function.How to set approvals
ConditionalTokens
) and ERC-20 (USDB
). This can be achieved by sending a transaction to the respective contracts (see the How to interface with contracts section) and approving both the CTF_EXCHANGE
and the NEG_RISK_CTF_EXCHANGE
or via the SDK utils.Constants.ts
file or in the Deployed Contracts documentation.
How to use a Predict account
1.
2.
3.
OrderBuilder
: Instantiate the OrderBuilder
class by calling OrderBuilder.make
.predictAccount
address, which is also known as the deposit address.4.
5.
getLimitOrderAmounts
to calculate order amounts.6.
buildOrder
to generate a LIMIT
strategy order.feeRateBps
via the GET /markets
endpoint on the REST APIsigner
and maker
to the predictAccount
address, NOT the signer/privy wallet address.7.
buildTypedData
to generate typed data for the order.8.
SignedOrder
object by calling signTypedDataOrder
.9.
buildTypedDataHash
.
How to create a LIMIT order (recommended)
LIMIT
strategy buy order:1.
2.
OrderBuilder
: Instantiate the OrderBuilder
class by calling OrderBuilder.make
.3.
4.
getLimitOrderAmounts
to calculate order amounts.5.
buildOrder
to generate a LIMIT
strategy order.feeRateBps
via the GET /markets
endpoint on the REST API6.
buildTypedData
to generate typed data for the order.7.
SignedOrder
object by calling signTypedDataOrder
.8.
buildTypedDataHash
.
How to create a MARKET order
MARKET
sell order:1.
2.
OrderBuilder
: Instantiate the OrderBuilder
class by calling OrderBuilder.make
.3.
4.
5.
getMarketOrderAmounts
to calculate order amounts.6.
buildOrder
to generate a MARKET
strategy order.feeRateBps
via the GET /markets
endpoint on the REST API7.
buildTypedData
to create typed data for the order.8.
SignedOrder
object by calling signTypedDataOrder
.9.
buildTypedDataHash
.
How to cancel orders
1.
GET /orders
.2.
isNegRisk
: Separate orders based on the isNegRisk
property.3.
isNegRisk
).4.
How to interface with contracts
Modified at 2024-10-17 15:49:15