-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebad19c
commit 2437afc
Showing
3 changed files
with
64 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"components": { | ||
"schemas": { | ||
"AdditionalData": { | ||
"type": "object", | ||
"properties": { | ||
"strategy_id": { | ||
"type": "string", | ||
"description": "Provided by the quote server", | ||
"example": "bre112" | ||
}, | ||
"input_token_price": { | ||
"type": "number", | ||
"format": "double", | ||
"description": "Provided by the quote server", | ||
"example": 97056.37479601552 | ||
}, | ||
"output_token_price": { | ||
"type": "number", | ||
"format": "double", | ||
"description": "Provided by the quote server", | ||
"example": 97056.37479601552 | ||
}, | ||
"deadline": { | ||
"type": "string", | ||
"description": "Validity till the current quote is valid" | ||
}, | ||
"bitcoin_optional_recipient": { | ||
"type": "string", | ||
"description": "An optional Bitcoin address to receive the output token, if specified.", | ||
"example": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" | ||
}, | ||
"sig": { | ||
"type": "string", | ||
"description": "", | ||
"example": "MEYCIQDYfLzU1MxP3RLlY5YXzkKcFvndv3tZyjGtHKqbrFqJ6QIhAMTytBYJ5Fb2+9NdXdHSTHz9BUEtwxE/n9VUwqP1X5fn" | ||
}, | ||
"instant_refund_tx_bytes": { | ||
"type": "string", | ||
"description": "The signature used to derive the transaction hash for an instant refund in case of transaction failure.", | ||
"example": "90a36c9fc942109060165b9db0ada8f6499302288d9d3698c6b4fa9431b5bf22" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters