Conversation
zone117x
commented
May 26, 2025
|
Vercel deployment URL: https://stacks-blockchain-em58c98xo-hirosystems.vercel.app 🚀 |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
zone117x
commented
May 26, 2025
zone117x
commented
May 26, 2025
| console.log(`Using REDIS_STREAM_KEY_PREFIX: ${process.env.SNP_REDIS_STREAM_KEY_PREFIX}`); | ||
| const snpContainer = await startContainer({ | ||
| docker, | ||
| image: 'hirosystems/salt-n-pepper:1.1.1', |
Contributor
Author
There was a problem hiding this comment.
This image is private on docker hub so CI isn't working. Need to make it public
hirosystems-release-bot Bot
added a commit
that referenced
this pull request
Aug 6, 2025
## [8.12.0](v8.11.6...v8.12.0) (2025-08-06) ### Features * Add exclude_function_args parameter to reduce transaction response sizes ([#2312](#2312)) ([852a60e](852a60e)) * add replaced_by_tx_id to replaced mempool transactions ([#2271](#2271)) ([a70c3d1](a70c3d1)) * **prometheus:** add chain tip metrics ([#2333](#2333)) ([bde1037](bde1037)) * SNP integration ([#2291](#2291)) ([9a159e1](9a159e1)) ### Bug Fixes * drop redundant db indexes ([#2329](#2329)) ([0ddd6a6](0ddd6a6)) * ensure some ops only run when SNP is not enabled ([fd4717b](fd4717b)) * only ingest snp chain events to avoid db bloat ([287f572](287f572)) * optimize queries to prune and restore mempool rbf txs ([#2327](#2327)) ([0b196f0](0b196f0)) * optimize replace-by-fee mempool calculations ([#2326](#2326)) ([01998bc](01998bc)) * parallelize mempool rbf updates ([#2328](#2328)) ([e7347e5](e7347e5)) * update snp image in tests ([c7c0dbb](c7c0dbb))
Contributor
|
🎉 This PR is included in version 8.12.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #2270
Implements SNP event streaming support in the API. An integration test harness is also implemented which spins up a local SNP server, populates it with events from a tsv (simulating a stacks-node), then ensures the API is able to sync all events from SNP.
This PR uses a new approach to orchestrating service dependencies. Rather than using docker-compose, the docker containers are configured programmatically in test initialization code.