Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions docs/reference/dapi-endpoints-core-grpc-endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ client.core.getBlockByHeight(1)
```
:::

:::{tab-item} JavaScript (dapi-grpc)
:::{tab-item} JavaScript (dapi-grpc, by height)
:sync: js-dapi-gprc
```javascript
const {
Expand All @@ -682,7 +682,7 @@ corePromiseClient.client.getBlock({ height: 1 })
```
:::

:::{tab-item} JavaScript (dapi-grpc)
:::{tab-item} JavaScript (dapi-grpc, by hash)
```javascript
const {
v0: {
Expand Down Expand Up @@ -822,6 +822,16 @@ Note: The gRPCurl response `proTxHash` data is Base64 encoded.
:::
::::

```{eval-rst}
..
Commented out info
[block:html]
{
"html": "<div></div>\n<!--\nDefined in proto but never implemented server-side - getEstimatedTransactionFee\n-->\n<style></style>"
}
[/block]
```

## Deprecated Endpoints

The following endpoints were recently deprecated. See the [previous version of documentation](https://docs.dash.org/projects/platform/en/2.0.0/docs/reference/dapi-endpoints-core-grpc-endpoints.html) for additional information on these endpoints.
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/dapi-endpoints-grpc-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The gRPC endpoints provide access to information from Dash Platform as well as s

### Auto-generated Clients

Clients for a number of languages are built automatically from the protocol definitions and are available in the `packages/dapi-grpc/clients` folder of the [platform](https://github.com/dashpay/platform/) repository. The protocol definitions are available in the [`packages/dapi-grpc/protos` folder]. Pull requests are welcome to add support for additional languages that are not currently being built.
Clients for a number of languages are built automatically from the protocol definitions and are available in the `packages/dapi-grpc/clients` folder of the [platform](https://github.com/dashpay/platform/) repository. The protocol definitions are available in the [`packages/dapi-grpc/protos` folder](https://github.com/dashpay/platform/tree/master/packages/dapi-grpc/protos). Pull requests are welcome to add support for additional languages that are not currently being built.

### Command Line Examples

Expand Down
Loading