Prerequisites
Before you begin, ensure that you have:- Obtained an API key for StableFX from Circle
- Obtained testnet USDC in a supported wallet on Arc
- Installed cURL on your development machine
${YOUR_API_KEY} with your actual API key and any
other placeholder values with the appropriate data for your test.
StableFX uses a single endpoint for all API requests. The base URL is
https://api.circle.com/. The StableFX API uses your API key for authentication
and to determine which environment to use. The TEST environment executes
against Arc testnet and returns mock data.When developing or testing your integration, you should use your TEST API key.
When you are ready to move to production, just update your code to use your
LIVE API key.Step 1: Create a trade
To test your integration, you need to create at least one trade. Use the following steps to request a tradable quote, sign the Permit2 typed data, and create the trade.1.1. Request a tradable quote
Request a tradable quote for a trade from USDC to EURC using the create a quote endpoint. Provide a value for theamount parameter in either the from or to fields, but not
both. Set type to tradable to receive an executable quote. Include a
recipientAddress for tradable quote requests. The recipientAddress is the
wallet address that receives the destination currency (EURC in this example)
after the trade settles:
typedData object
containing the Permit2 EIP-712 typed data you need to sign before creating the
trade.
1.2. Sign the typed data
Using aPermit2-compliant EIP-712 compatible wallet or signing library, sign
the typedData object returned in the quote response. Use the domain,
types, primaryType, and message fields from the response to construct the
EIP-712 signature.
After signing, you have a hex-encoded signature string (for example,
0x1234...). You use this signature in the next step to create the trade.
1.3. Create the trade
Accept the quote and create a trade on StableFX using the create a trade endpoint. You need to provide the quote ID, your wallet address, themessage from the quote
response’s typedData.message field, the signature from the previous step, and
a randomly generated idempotency key in
UUIDv4 format (${randomUUID} in the following example). The following is an
example request:
"status": "pending_settlement". This
confirms that the trade was created and is awaiting settlement. For a full list
of trade states, see Trade States.
Step 2: Fund the trade
Use the following steps to fund the trade onchain.2.1. Get trades that are ready for funding
Before you send funds onchain, confirm that the trade is ready for funding. To do this, call the get all trades endpoint. Filter the response by thepending_settlement status. Your trade ID
should be listed in the response.
2.2. Get the funding signature data
To use the StableFX API to deliver the funds onchain, you must first sign the funding typed data with an EIP-712 signature. To get the data to sign, call the generate funding presign data endpoint. Your request must include the contract ID of the trade (${stablefx_contract_trade_id} in the example, replaced with the
contractTradeId value from the step 1.3 response) and the side of the trade
that you are taking. The following is an example request:
2.3. Sign the funding data
Using aPermit2-compliant EIP-712 compatible wallet or signing library, sign
the data from the typedData field returned in the previous step. Use the
domain, types, primaryType, and message fields to construct the EIP-712
signature. This signature authorizes the Permit2 contract to transfer your funds
to the escrow contract.
After signing, you have a hex-encoded signature string. You submit this
signature in the next step to fund the trade.
2.4. Fund the trade with the StableFX API
The StableFX API can handle the onchain transaction for you. You must submit a permit2-compliant data object along with the signature to the fund trades endpoint. The endpoint allows you to submit either a single object or a batch of objects along with the required signatures. The following is an example request for a single trade:200 response. This
confirms the funding transaction was submitted successfully.
You don’t need to submit the funding transaction through the StableFX API. You
can also submit the transaction onchain using your own web3 provider or
wallet.
2.5. Confirm the trade is funded
To confirm the trade was funded, call the get a trade by ID endpoint. The trade is funded when the status istaker_funded.
"status": "taker_funded". This confirms that
your funding transaction was processed successfully.
After a trade reaches the
taker_funded status, the maker funds their side of
the trade. The trade then transitions to maker_funded, and finally to
settled once the onchain settlement completes and both parties receive their
funds. If either side fails to fund in the required window, the trade
transitions to breaching, then breached and any funded amounts are
returned.Testing trade batches
To test a batch integration where you fund multiple trades at once, repeat Part 1 to create multiple trades. Get thecontractTradeId for each trade that requires funding by calling the
get all trades endpoint filtered by
the pending_settlement status.
Once you have the array of IDs, you can use the same
fund trades endpoint to fund multiple
trades by submitting the permit2 data for each trade along with the appropriate
signatures.