Skip to content

Commit 48a539f

Browse files
authored
rest api: make RawTransactionAsync developer api (algorand#6069)
1 parent 8a44d87 commit 48a539f

File tree

5 files changed

+266
-234
lines changed

5 files changed

+266
-234
lines changed

daemon/algod/api/algod.oas2.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1565,6 +1565,7 @@
15651565
"/v2/transactions/async": {
15661566
"post": {
15671567
"tags": [
1568+
"public",
15681569
"experimental"
15691570
],
15701571
"consumes": [
@@ -1603,6 +1604,9 @@
16031604
"$ref": "#/definitions/ErrorResponse"
16041605
}
16051606
},
1607+
"404": {
1608+
"description": "Developer or Experimental API not enabled"
1609+
},
16061610
"500": {
16071611
"description": "Internal Error",
16081612
"schema": {

daemon/algod/api/algod.oas3.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7012,6 +7012,10 @@
70127012
},
70137013
"description": "Invalid API Token"
70147014
},
7015+
"404": {
7016+
"content": {},
7017+
"description": "Developer or Experimental API not enabled"
7018+
},
70157019
"500": {
70167020
"content": {
70177021
"application/json": {
@@ -7039,6 +7043,7 @@
70397043
},
70407044
"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.",
70417045
"tags": [
7046+
"public",
70427047
"experimental"
70437048
],
70447049
"x-codegen-request-body-name": "rawtxn"

0 commit comments

Comments
 (0)