Skip to content

Commit

Permalink
Merge branch 'alpha' into dbsyncscript
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlrt committed Oct 13, 2021
2 parents af5a21e + b44e5da commit 2d8675a
Show file tree
Hide file tree
Showing 11 changed files with 864 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-latest.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
token: ${{ secrets.REPO_SCOPED_TOKEN }}
- name: Fetch node release version
run: |
curl -sL https://github.com/input-output-hk/cardano-node/releases/latest | grep "tag" | head -1 | sed -n -e 's/^.*tag\///p' | cut -d "\"" -f 1 > files/docker/node/release-versions/cardano-node-latest.txt
curl -sL https://api.github.com/repos/input-output-hk/cardano-node/releases/latest | grep tag_name | awk '{print $2}' | cut -d\" -f 2 > files/docker/node/release-versions/cardano-node-latest.txt
- name: Assigns release version
run: |
VERSION=$(cat ./files/docker/node/release-versions/cardano-node-latest.txt)
Expand Down
16 changes: 14 additions & 2 deletions docs/Build/grestsvcs.json
Expand Up @@ -334,7 +334,7 @@
}
}
},
"/rpc/account_list": {
"/account_list": {
"post": {
"tags": ["Account Queries"],
"summary": "Get a list of all accounts",
Expand Down Expand Up @@ -449,7 +449,7 @@
}
}
},
"/rpc/blocks": {
"/blocks": {
"post": {
"tags": ["Block Queries"],
"summary": "Get detailed information about all blocks (paginated - latest first)",
Expand Down Expand Up @@ -732,6 +732,18 @@
"description": "OK"
}
}
},
"/rpc/tx_metalabels": {
"post": {
"tags": ["Transaction Queries"],
"summary": "Get a list of all transaction metalabels",
"produces": ["application/json", "application/vnd.pgrst.object+json"],
"responses": {
"200": {
"description": "OK"
}
}
}
}
},
"definitions": {
Expand Down

0 comments on commit 2d8675a

Please sign in to comment.