-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: use chainhook to listen for chain events instead of a dire…
…ct stacks api connection (#200) * chore: add chainhook client * chore: single predicate draft * fix: remove old code * fix: test builds * test: get contract abi * test: first sip-019 notif * test: print event chainhook observer * feat: consume deployments * test: chain tip * fix: unify chainhook events processors * feat: rollback contract deployments * feat: rollback sft mint * chore: draft for sip-019 storage * feat: keep sip-019 notifs * fix: notifications table inserts * fix: update code * fix: some tests * fix: admin rpc * fix: rollback contracts and sip-013 mints * test: divide into suites * ci: codecov * chore: progress * chore: update deps * fix: remove abi * fix: block cache * chore: migrations * fix: upgrade chainhook client * chore: upgrade api toolkit * chore: divide test files * test: ft, nft * test: sft * fix: notification tests * fix: dynamic refresh * fix: token queue tests * fix: admin rpc tests * fix: api tests * chore: remove contract import admin rpc * feat: start validating with chainhook * fix: eslint * fix: admin rpc tests * ci: run matrix tests properly * fix: skip ingested blocks * feat: return asset_identifier in FT responses (#229) * test: zero token nft * fix: refactor GCS image cache upload script to typescript (#232) * fix: image cache ts * test: more * fix: code * build: use v2 docker compose * fix: admin tests * fix: try finally * test: debug logs * test: only 1 * test: one more * fix: not the timeout * fix: different ports * fix: improve test servers * fix: add cause to error message * fix: try 127.0.0.1 * fix: try timeout sleep * fix: standard close * test: more * fix: improve message * fix: echo status * fix: detect * fix: finally * fix: x * fix: timeouts * fix: revert debug stuff * chore: remove old test * fix: store chainhook predicate in local file for reuse after restart (#233) fix: add tests * fix: process image cache in stages for memory optimization (#234) * fix: try to use native sharp pipeline * fix: job queue controls, profiler * fix: tests * fix: upgrade toolkit * fix: improve error propagation * fix: listen to stream errors * fix: process cached image step by step * fix: report errors retried immediately * fix: image stream * fix: wait for sharp stream correctly * chore: upgrade to node 20 (#235) * feat: provide detailed error responses for tokens with user/contract errors (#236) * chore: demote httperror to usererror * fix: add errors * fix: custom messages * feat: add testnet support
- Loading branch information
Showing
78 changed files
with
4,454 additions
and
16,110 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
20 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:18-alpine | ||
FROM node:20-alpine | ||
|
||
WORKDIR /app | ||
COPY . . | ||
|
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: '3.7' | ||
services: | ||
postgres: | ||
image: "postgres:14" | ||
image: "postgres:15" | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
|
This file contains 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
Oops, something went wrong.