Skip to content

Commit

Permalink
Merge pull request #422 from multiversx/merge-rc-1-7-into-staking-v4-…
Browse files Browse the repository at this point in the history
…30-jan-2024

Merge rc 1 7 into staking v4 30 jan 2024
  • Loading branch information
mariusmihaic authored Jan 30, 2024
2 parents 3a20414 + df034f2 commit b97fb70
Showing 1 changed file with 11 additions and 45 deletions.
56 changes: 11 additions & 45 deletions cmd/proxy/config/swagger/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2081,15 +2081,15 @@
}
}
},
"/transaction/{txhash}": {
"/transaction/{txHash}": {
"get": {
"tags": [
"transaction"
],
"summary": "returns the transaction which corresponds to the hash",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand Down Expand Up @@ -2162,7 +2162,7 @@
"summary": "returns the transaction and results which correspond to the hash",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand All @@ -2180,7 +2180,7 @@
"schema": {
"type": "object",
"items": {
"$ref": "#/components/schemas/AddressEsdtToken"
"$ref": "#/components/schemas/Transaction"
}
}
}
Expand All @@ -2197,7 +2197,7 @@
"summary": "returns the transaction which corresponds to the hash (faster because will ask for transaction from the observer which is in the shard in which the address is part).",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand Down Expand Up @@ -2239,7 +2239,7 @@
"summary": "returns the transaction which corresponds to the hash (faster because will ask for transaction from the observer which is in the shard in which the address is part).",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand Down Expand Up @@ -2281,7 +2281,7 @@
"summary": "returns the status of the transaction which corresponds to the hash (faster because will ask for transaction status from the observer which is in the shard in which the address is part).",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand Down Expand Up @@ -2315,15 +2315,15 @@
}
}
},
"/transaction/{txhash}/status": {
"/transaction/{txHash}/status": {
"get": {
"tags": [
"transaction"
],
"summary": "returns the status of the transaction which corresponds to the hash",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand All @@ -2347,15 +2347,15 @@
}
}
},
"/transaction/{txhash}/process-status": {
"/transaction/{txHash}/process-status": {
"get": {
"tags": [
"transaction"
],
"summary": "returns the processing status of the transaction which corresponds to the hash. It searches for SCRs generated by the transaction and computes the actual processing status",
"parameters": [
{
"name": "txhash",
"name": "txHash",
"in": "path",
"description": "the transaction hash to search for",
"required": true,
Expand Down Expand Up @@ -2494,40 +2494,6 @@
}
}
},
"/transaction/{hash}": {
"get": {
"tags": [
"transaction"
],
"summary": "retrieves the transaction with the provided hash",
"parameters": [
{
"name": "hash",
"in": "path",
"required": true,
"description": "the hash of the transaction to look after",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResponse"
}
}
}
},
"400": {
"description": "validation error"
}
}
}
},
"/validator/statistics": {
"get": {
"tags": [
Expand Down

0 comments on commit b97fb70

Please sign in to comment.