stacks-blockchain-api
stacks-blockchain-api copied to clipboard
API for the Stacks blockchain
**Is your feature request related to a problem? Please describe.** We are working on implementation of rosetta-apis. For validation of req/res, we are using [rosetta-cli](https://github.com/coinbase/rosetta-cli). When I start the validation...
Currently, the API response for a contract call needs to deserialized manually: ```js const isEligible = await ; const response = deserializeCV(Buffer.from(isEligible.result.slice(2), "hex")); ``` It would be better if the...
When the API and stacks-node are both started, the API immediately boots the event observer http server in order to prevent an inter-process deadlock. However, the API waits until the...
Query for micro-fork rates. This can be a one-time task using the db for the microblock mainnet deployment that has been running for a couple months now. It would be...
> Would be helpful to use a common format when describing amounts of currency, potentially even [Rossetta's schema](https://www.rosetta-api.org/docs/models/Amount.html), as to avoid satoshis getting confused with uSTX. _Originally posted by @kyranjamie...
From conversation with @rafaelcr and related issue: https://github.com/stacks-network/stacks-blockchain-docker/issues/90 With the release of v5.0.0, `BNS_IMPORT_DIR` is no longer used during starting the API normally. In previous versions of the API, with...
Fixes #1325
To avoid and/or reduce OOM errors, we should consider reducing the maximum page size we allow in all of our requests. We don't have a standardized page size across all...
* [x] https://github.com/hirosystems/stacks-blockchain-api/issues/1281 * [x] https://github.com/hirosystems/stacks-blockchain-api/issues/1274 * [x] https://github.com/hirosystems/stacks-blockchain-api/issues/1275 - Note: done on the API side, bug needs fixed in stacks-node, see issue details. * [x] https://github.com/hirosystems/stacks-blockchain-api/issues/1276 * [ ]...
Now that the new NFT endpoints have been around for a long time, we should remove support for the old `/nft_events` endpoint completely. It uses a very old and inefficient...