-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from hummingbot/staging
gateway sync / gateway staging -> main for Hummingbot version 1.16.0
- Loading branch information
Showing
75 changed files
with
5,893 additions
and
2,264 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,73 @@ | ||
paths: | ||
/algorand/poll: | ||
post: | ||
tags: | ||
- 'algorand' | ||
summary: 'Poll the status of a transaction' | ||
consumes: | ||
- 'application/json' | ||
produces: | ||
- 'application/json' | ||
parameters: | ||
- in: 'body' | ||
name: 'body' | ||
required: true | ||
schema: | ||
$ref: '#/definitions/AlgorandPollRequest' | ||
responses: | ||
'200': | ||
schema: | ||
$ref: '#/definitions/AlgorandPollResponse' | ||
/algorand/balances: | ||
post: | ||
tags: | ||
- 'algorand' | ||
summary: 'Get the balances of an account' | ||
consumes: | ||
- 'application/json' | ||
produces: | ||
- 'application/json' | ||
parameters: | ||
- in: 'body' | ||
name: 'body' | ||
required: true | ||
schema: | ||
$ref: '#/definitions/BalancesRequest' | ||
responses: | ||
'200': | ||
schema: | ||
$ref: '#/definitions/BalancesResponse' | ||
/algorand/assets: | ||
get: | ||
tags: | ||
- 'algorand' | ||
summary: 'Get assets info' | ||
consumes: | ||
- 'application/json' | ||
produces: | ||
- 'application/json' | ||
parameters: | ||
- in: 'query' | ||
name: 'query' | ||
required: true | ||
schema: | ||
$ref: '#/definitions/AlgorandAssetsRequest' | ||
/algorand/opt-in: | ||
post: | ||
tags: | ||
- 'algorand' | ||
summary: 'Opt into an asset' | ||
consumes: | ||
- 'application/json' | ||
produces: | ||
- 'application/json' | ||
parameters: | ||
- in: 'body' | ||
name: 'body' | ||
required: true | ||
schema: | ||
$ref: '#/definitions/AlgorandOptInRequest' | ||
responses: | ||
'200': | ||
schema: | ||
$ref: '#/definitions/AlgorandOptInResponse' |
Oops, something went wrong.