mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 08:34:40 +08:00
* feat: handle pox-3 force unlocks * chore: todo note * feat: handle pox-3 force unlocks, pox-4 events, and revoke-delegate-stx event * chore: rename pox-2 file * chore: simplified pox route paths * feat: add migration to create pox4_events table * test: follow redirects in test fetch helper * chore: fix storing different pox version events * test: fix tests with missing pox4_events * chore: move delegations lookup endpoint into pox router * fix: handle pox4_events during reorgs * test: fix pox4events reorg count * chore: update stacks-node image to stacks 3.0 * test: begin transitioning pox tests to use pox-4 * chore: bump stacks-node to wip nakamoto branch * test: switch more tests from pox-3 to pox-4 * fix: tx fee fall back in faucet * test: update delegation check endpoints * chore: isolate error in delegate-revoke test * chore: pox3 to pox4 misc renames * ci: rename 2.4 to 2.5 * test: remove no-longer applicable delegate-stx while stacking test * chore: remove incorrect commend in pox4 test
18 lines
563 B
YAML
18 lines
563 B
YAML
version: '3.7'
|
|
services:
|
|
stacks-blockchain:
|
|
image: "hirosystems/stacks-api-e2e:stacks3.0-800259e"
|
|
restart: on-failure
|
|
environment:
|
|
STACKS_EVENT_OBSERVER: host.docker.internal:3700
|
|
BLOCKSTACK_USE_TEST_GENESIS_CHAINSTATE: 1
|
|
NOP_BLOCKSTACK_DEBUG: 1
|
|
ports:
|
|
- "20443:20443"
|
|
- "20444:20444"
|
|
volumes:
|
|
- ../stacks-blockchain/:/app/config
|
|
- ../stacks-blockchain/.chaindata:/tmp/stacks-blockchain-data
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts
|