Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 2.41 KB

File metadata and controls

45 lines (28 loc) · 2.41 KB

QuoteOffer

Properties

Name Type Description Notes
via AccessType [default to undefined]
id string The unique identifier of the quote. [default to undefined]
quoteAssetId string The target asset identifier. [default to undefined]
baseAssetId string The source asset identifier. [default to undefined]
baseAmount string The amount of the base asset. [default to undefined]
quoteAmount string The amount of the quote asset. [default to undefined]
side Side [default to undefined]
expiresAt string The expiration time of the quote in ISO 8601 format. [default to undefined]
type string The type of the quote. [default to undefined]
offerType string The type of offer — QUOTE for executable committed quotes. [default to undefined]
quoteAssetRail TransferRail [optional] [default to undefined]
baseAssetRail TransferRail [optional] [default to undefined]
priceImpact number The estimated price impact as a decimal fraction. [optional] [default to undefined]
quoteMinAmount string The minimum guaranteed amount of the quote asset. [optional] [default to undefined]
isSlippageApplied boolean Indicates if slippage was applied to the quote. [optional] [default to false]
executionSteps Array<QuoteExecutionStep> Ordered list of execution steps for the quote. [optional] [default to undefined]
generalFees Array<Fee> General fees associated with the quote. [optional] [default to undefined]
orderCreationRequirements string A JSON Schema Draft-7 document in string format describing the fields required when creating an order so clients can validate their order payload before sending. [optional] [default to undefined]

Enum: QuoteOfferTypeEnum

  • Committed (value: 'COMMITTED')

  • Indicative (value: 'INDICATIVE')

Enum: QuoteOfferOfferTypeEnum

  • Quote (value: 'QUOTE')

[Back to top] [Back to API list] [Back to Model list] [Back to README]