mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-28 12:55:41 +08:00
* feat: beta release with subnets support * chore(release): 7.1.0-beta.1 [skip ci] ## [7.1.0-beta.1](https://github.com/hirosystems/stacks-blockchain-api/compare/v7.0.0...v7.1.0-beta.1) (2023-02-14) ### Features * beta release with subnets support ([06164eb](06164eb1dd)) * support for subnets ([#1549](https://github.com/hirosystems/stacks-blockchain-api/issues/1549)) ([5d7056c](5d7056c1ba)) ### Bug Fixes * fixed the order of microblocks_streamed returned in reverse order in block endpoint ([#1528](https://github.com/hirosystems/stacks-blockchain-api/issues/1528)) ([764f64a](764f64a538)) * Merge master into beta * chore: update l1 and l2 subnet contracts * chore: update subnets docker compose to latest 2.1 image * chore: enable subnet STX transfer tests * chore: progress on fixing test for subnet to L1 FT withdrawal * feat: support register asset event synthetic tx parsing (#1583) * feat: support register asset event synthetic tx parsing * test: integration tests for register-new-ft-contract and register-new-nft-contract synthetic txs * feat: update 'register-asset-contract' event parsing * chore: bump to latest subnet docker image (also include subnets.Dockerfile for local dev) * chore(release): 7.1.0-beta.2 [skip ci] ## [7.1.0-beta.2](https://github.com/hirosystems/stacks-blockchain-api/compare/v7.1.0-beta.1...v7.1.0-beta.2) (2023-03-16) ### Features * support register asset event synthetic tx parsing ([#1583](https://github.com/hirosystems/stacks-blockchain-api/issues/1583)) ([57d58f2](57d58f2f8d)) --------- Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net>
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
|
|
version: '3.7'
|
|
services:
|
|
stacks-blockchain:
|
|
image: "hirosystems/stacks-api-e2e:stacks2.1-a50d830"
|
|
command: |
|
|
bash -c "rm /event-log.ndjson && /root/run.sh"
|
|
ports:
|
|
- "18443:18443" # bitcoin regtest JSON-RPC interface
|
|
- "18444:18444" # bitcoin regtest p2p
|
|
- "20443:20443" # stacks-node RPC interface
|
|
- "20444:20444" # stacks-node p2p
|
|
environment:
|
|
MINE_INTERVAL: 1s
|
|
STACKS_EVENT_OBSERVER: host.docker.internal:30445
|
|
# STACKS_LOG_TRACE: 1
|
|
# STACKS_LOG_DEBUG: 1
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts
|
|
stacks-subnet:
|
|
# restart: on-failure
|
|
image: "hirosystems/stacks-subnets:7012d22"
|
|
# build:
|
|
# dockerfile: ./subnet-node.Dockerfile
|
|
command: subnet-node start --config=/app/config/Stacks-subnet.toml
|
|
ports:
|
|
- "30443:30443" # subnet-node RPC interface
|
|
- "30444:30444" # subnet-node p2p
|
|
- "30445:30445" # subnet-node event-observer
|
|
environment:
|
|
STACKS_EVENT_OBSERVER: host.docker.internal:3700
|
|
# STACKS_LOG_TRACE: 1
|
|
# STACKS_LOG_DEBUG: 1
|
|
volumes:
|
|
- ../stacks-blockchain/:/app/config
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts
|