Skip to content

Commit

Permalink
rest api: make RawTransactionAsync developer api (#6069)
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy committed Jul 15, 2024
1 parent 8a44d87 commit 48a539f
Show file tree
Hide file tree
Showing 5 changed files with 266 additions and 234 deletions.
4 changes: 4 additions & 0 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1565,6 +1565,7 @@
"/v2/transactions/async": {
"post": {
"tags": [
"public",
"experimental"
],
"consumes": [
Expand Down Expand Up @@ -1603,6 +1604,9 @@
"$ref": "#/definitions/ErrorResponse"
}
},
"404": {
"description": "Developer or Experimental API not enabled"
},
"500": {
"description": "Internal Error",
"schema": {
Expand Down
5 changes: 5 additions & 0 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7012,6 +7012,10 @@
},
"description": "Invalid API Token"
},
"404": {
"content": {},
"description": "Developer or Experimental API not enabled"
},
"500": {
"content": {
"application/json": {
Expand Down Expand Up @@ -7039,6 +7043,7 @@
},
"summary": "Fast track for broadcasting a raw transaction or transaction group to the network through the tx handler without performing most of the checks and reporting detailed errors. Should be only used for development and performance testing.",
"tags": [
"public",
"experimental"
],
"x-codegen-request-body-name": "rawtxn"
Expand Down
Loading

0 comments on commit 48a539f

Please sign in to comment.