Skip to content

Commit b42475e

Browse files
authored
chore: small update to overview.md
1 parent 4c6f2a2 commit b42475e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

overview.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
![API architecture!](api-architecture.png)
22

33
* The `stacks-node` has it's own minimal set of http endpoints referred to as `RPC endpoints`
4-
* See: https://github.com/blockstack/stacks-blockchain/blob/master/docs/rpc-endpoints.md
5-
* Some common ones:
6-
`POST /v2/transactions` - broadcast a tx.
7-
`GET /v2/pox` - get current PoX-relevant information.
8-
`GET /v2/accounts/<address>` - used to get the current `nonce` required for creating transactions.
94
* The `stacks-blockchain-api` allows clients to access these endpoints by proxying them through to a load-balanced pool of `stacks-nodes`.
5+
* See: https://github.com/blockstack/stacks-blockchain/blob/master/docs/rpc-endpoints.md -- some common ones:
6+
* `POST /v2/transactions` - broadcast a tx.
7+
* `GET /v2/pox` - get current PoX-relevant information.
8+
* `POST /v2/contracts/call-read/<contract>/<function>` - evaluates and returns the result of calling a Clarity function.
9+
* `POST /v2/fees/transaction` - evaluates a given transaction and returns tx fee estimation data.
10+
* `GET /v2/accounts/<address>` - used to get the current `nonce` required for creating transactions.
1011

1112

1213
* The endpoints implemented by `stacks-blockchain-api` provide data that the `stacks-node` can't due to various constraints.

0 commit comments

Comments
 (0)