curl --request POST \
--url https://combos-rfq-api.polymarket.com/v1/maker/quotes \
--header 'Content-Type: application/json' \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>' \
--data '
{
"quote_id": "quote_<id>",
"rfq_id": "rfq_<id>",
"signer_address": "0xYourSigner",
"maker_address": "0xYourQuoterWallet",
"signature_type": 0,
"price_e6": "450000",
"size_e6": "1000000",
"signed_order": {
"salt": "<order_salt>",
"maker": "0xYourQuoterWallet",
"signer": "0xYourSigner",
"tokenId": "<yes_or_no_position_id>",
"makerAmount": "<amount_to_pay>",
"takerAmount": "<taker_amount>",
"side": 0,
"signatureType": 0,
"timestamp": "<unix_seconds>",
"metadata": "0x0000000000000000000000000000000000000000000000000000000000000000",
"builder": "0x0000000000000000000000000000000000000000000000000000000000000000",
"signature": "0x..."
}
}
'import requests
url = "https://combos-rfq-api.polymarket.com/v1/maker/quotes"
payload = {
"quote_id": "quote_<id>",
"rfq_id": "rfq_<id>",
"signer_address": "0xYourSigner",
"maker_address": "0xYourQuoterWallet",
"signature_type": 0,
"price_e6": "450000",
"size_e6": "1000000",
"signed_order": {
"salt": "<order_salt>",
"maker": "0xYourQuoterWallet",
"signer": "0xYourSigner",
"tokenId": "<yes_or_no_position_id>",
"makerAmount": "<amount_to_pay>",
"takerAmount": "<taker_amount>",
"side": 0,
"signatureType": 0,
"timestamp": "<unix_seconds>",
"metadata": "0x0000000000000000000000000000000000000000000000000000000000000000",
"builder": "0x0000000000000000000000000000000000000000000000000000000000000000",
"signature": "0x..."
}
}
headers = {
"POLY_API_KEY": "<api-key>",
"POLY_ADDRESS": "<api-key>",
"POLY_SIGNATURE": "<api-key>",
"POLY_PASSPHRASE": "<api-key>",
"POLY_TIMESTAMP": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
POLY_API_KEY: '<api-key>',
POLY_ADDRESS: '<api-key>',
POLY_SIGNATURE: '<api-key>',
POLY_PASSPHRASE: '<api-key>',
POLY_TIMESTAMP: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
quote_id: 'quote_<id>',
rfq_id: 'rfq_<id>',
signer_address: '0xYourSigner',
maker_address: '0xYourQuoterWallet',
signature_type: 0,
price_e6: '450000',
size_e6: '1000000',
signed_order: {
salt: '<order_salt>',
maker: '0xYourQuoterWallet',
signer: '0xYourSigner',
tokenId: '<yes_or_no_position_id>',
makerAmount: '<amount_to_pay>',
takerAmount: '<taker_amount>',
side: 0,
signatureType: 0,
timestamp: '<unix_seconds>',
metadata: '0x0000000000000000000000000000000000000000000000000000000000000000',
builder: '0x0000000000000000000000000000000000000000000000000000000000000000',
signature: '0x...'
}
})
};
fetch('https://combos-rfq-api.polymarket.com/v1/maker/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://combos-rfq-api.polymarket.com/v1/maker/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'quote_id' => 'quote_<id>',
'rfq_id' => 'rfq_<id>',
'signer_address' => '0xYourSigner',
'maker_address' => '0xYourQuoterWallet',
'signature_type' => 0,
'price_e6' => '450000',
'size_e6' => '1000000',
'signed_order' => [
'salt' => '<order_salt>',
'maker' => '0xYourQuoterWallet',
'signer' => '0xYourSigner',
'tokenId' => '<yes_or_no_position_id>',
'makerAmount' => '<amount_to_pay>',
'takerAmount' => '<taker_amount>',
'side' => 0,
'signatureType' => 0,
'timestamp' => '<unix_seconds>',
'metadata' => '0x0000000000000000000000000000000000000000000000000000000000000000',
'builder' => '0x0000000000000000000000000000000000000000000000000000000000000000',
'signature' => '0x...'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"POLY_ADDRESS: <api-key>",
"POLY_API_KEY: <api-key>",
"POLY_PASSPHRASE: <api-key>",
"POLY_SIGNATURE: <api-key>",
"POLY_TIMESTAMP: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://combos-rfq-api.polymarket.com/v1/maker/quotes"
payload := strings.NewReader("{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("POLY_API_KEY", "<api-key>")
req.Header.Add("POLY_ADDRESS", "<api-key>")
req.Header.Add("POLY_SIGNATURE", "<api-key>")
req.Header.Add("POLY_PASSPHRASE", "<api-key>")
req.Header.Add("POLY_TIMESTAMP", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://combos-rfq-api.polymarket.com/v1/maker/quotes")
.header("POLY_API_KEY", "<api-key>")
.header("POLY_ADDRESS", "<api-key>")
.header("POLY_SIGNATURE", "<api-key>")
.header("POLY_PASSPHRASE", "<api-key>")
.header("POLY_TIMESTAMP", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://combos-rfq-api.polymarket.com/v1/maker/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["POLY_API_KEY"] = '<api-key>'
request["POLY_ADDRESS"] = '<api-key>'
request["POLY_SIGNATURE"] = '<api-key>'
request["POLY_PASSPHRASE"] = '<api-key>'
request["POLY_TIMESTAMP"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}"
response = http.request(request)
puts response.read_body{
"request": {
"rfq_id": "<string>",
"leg_position_ids": [
"<string>"
],
"auth_address": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"signature_type": 0,
"requestor_public_id": "<string>",
"condition_id": "<string>",
"yes_position_id": "<string>",
"no_position_id": "<string>",
"requested_size": {
"value_e6": "1000000"
},
"created_at": 123
},
"competition_started_at": 123,
"competition_ends_at": 123,
"confirmation_started_at": 123,
"confirmation_ends_at": 123,
"quote_id": "<string>",
"bundle": {
"requested_shares_e6": "<string>",
"blended_price_e6": "<string>",
"allocations": [
{
"maker_quote_id": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"size_e6": "<string>",
"price_e6": "<string>",
"received_at": 123
}
],
"requested_notional_e6": "<string>"
},
"maker_confirmations": [
{
"quote_id": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"reason": "<string>",
"responded_at": 123
}
]
}{
"error": "invalid quote"
}{
"error": "unauthenticated"
}{
"error": "auth address mismatch"
}{
"error": "unknown rfq"
}{
"error": "competition window closed"
}{
"error": "rate limited"
}{
"error": "service unavailable"
}Submit a quote
Submit a signed maker quote for an active RFQ. Requires CLOB L2 authentication for the maker role.
REST does not assign a quote ID — generate quote_id client-side.
curl --request POST \
--url https://combos-rfq-api.polymarket.com/v1/maker/quotes \
--header 'Content-Type: application/json' \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>' \
--data '
{
"quote_id": "quote_<id>",
"rfq_id": "rfq_<id>",
"signer_address": "0xYourSigner",
"maker_address": "0xYourQuoterWallet",
"signature_type": 0,
"price_e6": "450000",
"size_e6": "1000000",
"signed_order": {
"salt": "<order_salt>",
"maker": "0xYourQuoterWallet",
"signer": "0xYourSigner",
"tokenId": "<yes_or_no_position_id>",
"makerAmount": "<amount_to_pay>",
"takerAmount": "<taker_amount>",
"side": 0,
"signatureType": 0,
"timestamp": "<unix_seconds>",
"metadata": "0x0000000000000000000000000000000000000000000000000000000000000000",
"builder": "0x0000000000000000000000000000000000000000000000000000000000000000",
"signature": "0x..."
}
}
'import requests
url = "https://combos-rfq-api.polymarket.com/v1/maker/quotes"
payload = {
"quote_id": "quote_<id>",
"rfq_id": "rfq_<id>",
"signer_address": "0xYourSigner",
"maker_address": "0xYourQuoterWallet",
"signature_type": 0,
"price_e6": "450000",
"size_e6": "1000000",
"signed_order": {
"salt": "<order_salt>",
"maker": "0xYourQuoterWallet",
"signer": "0xYourSigner",
"tokenId": "<yes_or_no_position_id>",
"makerAmount": "<amount_to_pay>",
"takerAmount": "<taker_amount>",
"side": 0,
"signatureType": 0,
"timestamp": "<unix_seconds>",
"metadata": "0x0000000000000000000000000000000000000000000000000000000000000000",
"builder": "0x0000000000000000000000000000000000000000000000000000000000000000",
"signature": "0x..."
}
}
headers = {
"POLY_API_KEY": "<api-key>",
"POLY_ADDRESS": "<api-key>",
"POLY_SIGNATURE": "<api-key>",
"POLY_PASSPHRASE": "<api-key>",
"POLY_TIMESTAMP": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
POLY_API_KEY: '<api-key>',
POLY_ADDRESS: '<api-key>',
POLY_SIGNATURE: '<api-key>',
POLY_PASSPHRASE: '<api-key>',
POLY_TIMESTAMP: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
quote_id: 'quote_<id>',
rfq_id: 'rfq_<id>',
signer_address: '0xYourSigner',
maker_address: '0xYourQuoterWallet',
signature_type: 0,
price_e6: '450000',
size_e6: '1000000',
signed_order: {
salt: '<order_salt>',
maker: '0xYourQuoterWallet',
signer: '0xYourSigner',
tokenId: '<yes_or_no_position_id>',
makerAmount: '<amount_to_pay>',
takerAmount: '<taker_amount>',
side: 0,
signatureType: 0,
timestamp: '<unix_seconds>',
metadata: '0x0000000000000000000000000000000000000000000000000000000000000000',
builder: '0x0000000000000000000000000000000000000000000000000000000000000000',
signature: '0x...'
}
})
};
fetch('https://combos-rfq-api.polymarket.com/v1/maker/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://combos-rfq-api.polymarket.com/v1/maker/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'quote_id' => 'quote_<id>',
'rfq_id' => 'rfq_<id>',
'signer_address' => '0xYourSigner',
'maker_address' => '0xYourQuoterWallet',
'signature_type' => 0,
'price_e6' => '450000',
'size_e6' => '1000000',
'signed_order' => [
'salt' => '<order_salt>',
'maker' => '0xYourQuoterWallet',
'signer' => '0xYourSigner',
'tokenId' => '<yes_or_no_position_id>',
'makerAmount' => '<amount_to_pay>',
'takerAmount' => '<taker_amount>',
'side' => 0,
'signatureType' => 0,
'timestamp' => '<unix_seconds>',
'metadata' => '0x0000000000000000000000000000000000000000000000000000000000000000',
'builder' => '0x0000000000000000000000000000000000000000000000000000000000000000',
'signature' => '0x...'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"POLY_ADDRESS: <api-key>",
"POLY_API_KEY: <api-key>",
"POLY_PASSPHRASE: <api-key>",
"POLY_SIGNATURE: <api-key>",
"POLY_TIMESTAMP: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://combos-rfq-api.polymarket.com/v1/maker/quotes"
payload := strings.NewReader("{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("POLY_API_KEY", "<api-key>")
req.Header.Add("POLY_ADDRESS", "<api-key>")
req.Header.Add("POLY_SIGNATURE", "<api-key>")
req.Header.Add("POLY_PASSPHRASE", "<api-key>")
req.Header.Add("POLY_TIMESTAMP", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://combos-rfq-api.polymarket.com/v1/maker/quotes")
.header("POLY_API_KEY", "<api-key>")
.header("POLY_ADDRESS", "<api-key>")
.header("POLY_SIGNATURE", "<api-key>")
.header("POLY_PASSPHRASE", "<api-key>")
.header("POLY_TIMESTAMP", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://combos-rfq-api.polymarket.com/v1/maker/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["POLY_API_KEY"] = '<api-key>'
request["POLY_ADDRESS"] = '<api-key>'
request["POLY_SIGNATURE"] = '<api-key>'
request["POLY_PASSPHRASE"] = '<api-key>'
request["POLY_TIMESTAMP"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"quote_id\": \"quote_<id>\",\n \"rfq_id\": \"rfq_<id>\",\n \"signer_address\": \"0xYourSigner\",\n \"maker_address\": \"0xYourQuoterWallet\",\n \"signature_type\": 0,\n \"price_e6\": \"450000\",\n \"size_e6\": \"1000000\",\n \"signed_order\": {\n \"salt\": \"<order_salt>\",\n \"maker\": \"0xYourQuoterWallet\",\n \"signer\": \"0xYourSigner\",\n \"tokenId\": \"<yes_or_no_position_id>\",\n \"makerAmount\": \"<amount_to_pay>\",\n \"takerAmount\": \"<taker_amount>\",\n \"side\": 0,\n \"signatureType\": 0,\n \"timestamp\": \"<unix_seconds>\",\n \"metadata\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"builder\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"signature\": \"0x...\"\n }\n}"
response = http.request(request)
puts response.read_body{
"request": {
"rfq_id": "<string>",
"leg_position_ids": [
"<string>"
],
"auth_address": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"signature_type": 0,
"requestor_public_id": "<string>",
"condition_id": "<string>",
"yes_position_id": "<string>",
"no_position_id": "<string>",
"requested_size": {
"value_e6": "1000000"
},
"created_at": 123
},
"competition_started_at": 123,
"competition_ends_at": 123,
"confirmation_started_at": 123,
"confirmation_ends_at": 123,
"quote_id": "<string>",
"bundle": {
"requested_shares_e6": "<string>",
"blended_price_e6": "<string>",
"allocations": [
{
"maker_quote_id": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"size_e6": "<string>",
"price_e6": "<string>",
"received_at": 123
}
],
"requested_notional_e6": "<string>"
},
"maker_confirmations": [
{
"quote_id": "<string>",
"signer_address": "<string>",
"maker_address": "<string>",
"reason": "<string>",
"responded_at": 123
}
]
}{
"error": "invalid quote"
}{
"error": "unauthenticated"
}{
"error": "auth address mismatch"
}{
"error": "unknown rfq"
}{
"error": "competition window closed"
}{
"error": "rate limited"
}{
"error": "service unavailable"
}Authorizations
CLOB API key
Wallet address associated with the API key
HMAC-SHA256 signature of the request
CLOB API key passphrase
Unix timestamp of the request
Body
A signed maker quote.
Maker-generated quote ID (required for REST submissions).
"quote_<id>"
RFQ ID from the RFQ_REQUEST.
"rfq_<id>"
"0xYourSigner"
"0xYourQuoterWallet"
CLOB signature type:
0EOA1POLY_PROXY2GNOSIS_SAFE3POLY_1271
0, 1, 2, 3 0
Quote price in six-decimal fixed-point units (must be positive).
"450000"
Fillable share count in six-decimal fixed-point units (must be positive). Note this differs from the request's size field, which may be notional or shares.
"1000000"
Signed Exchange v3 order. Combinatorial RFQ trades settle through Exchange v3.
Show child attributes
Show child attributes
Optional quote expiry in Unix milliseconds.
Response
Current RFQ snapshot after the quote was accepted
Point-in-time view of an RFQ and its competition/confirmation windows.
The RFQ request as stored by the engine.
Show child attributes
Show child attributes
Lifecycle status of the RFQ
CREATED, COLLECTING_QUOTES, AWAITING_REQUESTER_ACCEPTANCE, AWAITING_MAKER_CONFIRMATION, EXECUTING, FILLED, FAILED, EXPIRED, CANCELED, REJECTED Unix milliseconds.
Unix milliseconds.
Unix milliseconds.
Unix milliseconds.
The selected executable bundle of maker allocations.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?