Members
# cost
Gets the cost for the quoted operation in unil units. The payment associated for the quoted operation must transfer this amount for it to be considered a valid payment.
Example
const cost = quote.cost;
# expires_at
Get the expiration time for this price quote.
The payment and the operation execution must be invoked before this deadline is hit, otherwise the network will reject the operation request.
Example
const expiration_time = quote.expires_at;
# nonce
Gets the nonce for this quote. This nonce must be used as part of the payment transaction.
Example
const nonce = quote.nonce;