Skip to content

Commit 45a0806

Browse files
authored
Merge pull request #1941 from hirosystems/develop
Release v7.10.0 stable
2 parents c7c9869 + 49a4d25 commit 45a0806

File tree

103 files changed

+5071
-1504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+5071
-1504
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ STACKS_NODE_TYPE=L1
178178
# IBD_MODE_UNTIL_BLOCK=
179179

180180
# Folder with events to be imported by the event-replay.
181-
STACKS_EVENTS_DIR=./eventssds
181+
STACKS_EVENTS_DIR=./events

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,6 @@ jobs:
855855
- lint
856856
- lint-docs
857857
- test
858-
- test-2_5
859858
- test-bns
860859
- test-rosetta
861860
- test-rosetta-cli-construction

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks:
1212
- init: npm ci
1313
command: npm run dev
1414
- openMode: split-right
15-
command: stacks-node start --config=stacks-blockchain/Stacks-dev.toml
15+
command: stacks-node start --config stacks-blockchain/Stacks-dev.toml
1616

1717
github:
1818
prebuilds:

.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"skipFiles": [
5656
"<node_internals>/**"
5757
],
58+
"runtimeVersion": "20",
5859
"runtimeArgs": ["-r", "ts-node/register/transpile-only", "-r", "tsconfig-paths/register"],
5960
"args": ["${workspaceFolder}/src/index.ts"],
6061
"outputCapture": "std",

client/src/generated/models/RosettaOptions.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* eslint-disable */
33
/**
44
* Stacks Blockchain API
5-
* Welcome to the API reference overview for the <a href=\"https://docs.hiro.so/get-started/stacks-blockchain-api\">Stacks Blockchain API</a>. <a href=\"https://hirosystems.github.io/stacks-blockchain-api/collection.json\" download=\"stacks-api-collection.json\">Download Postman collection</a>
5+
* Welcome to the API reference overview for the [Stacks Blockchain API](https://docs.hiro.so/get-started/stacks-blockchain-api). [Download Postman collection](https://hirosystems.github.io/stacks-blockchain-api/collection.json)
66
*
77
* The version of the OpenAPI document: STACKS_API_VERSION
88
*
@@ -139,6 +139,12 @@ export interface RosettaOptions {
139139
* @memberof RosettaOptions
140140
*/
141141
pox_addr?: string;
142+
/**
143+
* The hex-encoded signer key (buff 33) for PoX.
144+
* @type {string}
145+
* @memberof RosettaOptions
146+
*/
147+
signer_key?: string;
142148
}
143149

144150
export function RosettaOptionsFromJSON(json: any): RosettaOptions {
@@ -171,6 +177,7 @@ export function RosettaOptionsFromJSONTyped(json: any, ignoreDiscriminator: bool
171177
'burn_block_height': !exists(json, 'burn_block_height') ? undefined : json['burn_block_height'],
172178
'delegate_to': !exists(json, 'delegate_to') ? undefined : json['delegate_to'],
173179
'pox_addr': !exists(json, 'pox_addr') ? undefined : json['pox_addr'],
180+
'signer_key': !exists(json, 'signer_key') ? undefined : json['signer_key'],
174181
};
175182
}
176183

@@ -203,6 +210,7 @@ export function RosettaOptionsToJSON(value?: RosettaOptions | null): any {
203210
'burn_block_height': value.burn_block_height,
204211
'delegate_to': value.delegate_to,
205212
'pox_addr': value.pox_addr,
213+
'signer_key': value.signer_key,
206214
};
207215
}
208216

docker/docker-compose.dev.stacks-blockchain-follower.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
stacks-blockchain:
44
build:
55
context: ../stacks-blockchain/docker
6-
command: stacks-node start --config=/app/config/Stacks-follower.toml
6+
command: stacks-node start --config /app/config/Stacks-follower.toml
77
restart: on-failure
88
environment:
99
STACKS_EVENT_OBSERVER: host.docker.internal:3700
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
image: "hirosystems/stacks-api-e2e:stacks3.0-800259e"
4+
image: 'hirosystems/stacks-api-e2e:stacks3.0-4d11d85'
55
restart: on-failure
66
environment:
77
STACKS_EVENT_OBSERVER: host.docker.internal:3700
88
BLOCKSTACK_USE_TEST_GENESIS_CHAINSTATE: 1
99
NOP_BLOCKSTACK_DEBUG: 1
1010
ports:
11-
- "20443:20443"
12-
- "20444:20444"
11+
- '20443:20443'
12+
- '20444:20444'
1313
volumes:
1414
- ../stacks-blockchain/:/app/config
1515
- ../stacks-blockchain/.chaindata:/tmp/stacks-blockchain-data
1616
extra_hosts:
17-
- "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts
17+
- 'host.docker.internal:host-gateway' # fixes `host.docker.internal` on linux hosts
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
image: "hirosystems/stacks-api-e2e:stacks3.0-800259e"
4+
image: 'hirosystems/stacks-api-e2e:stacks3.0-4d11d85'
55
ports:
6-
- "18443:18443" # bitcoin regtest JSON-RPC interface
7-
- "18444:18444" # bitcoin regtest p2p
8-
- "20443:20443" # stacks-node RPC interface
9-
- "20444:20444" # stacks-node p2p
6+
- '18443:18443' # bitcoin regtest JSON-RPC interface
7+
- '18444:18444' # bitcoin regtest p2p
8+
- '20443:20443' # stacks-node RPC interface
9+
- '20444:20444' # stacks-node p2p
1010
environment:
1111
MINE_INTERVAL: 0.1s
1212
STACKS_EVENT_OBSERVER: host.docker.internal:3700
1313
# STACKS_LOG_TRACE: 1
1414
# STACKS_LOG_DEBUG: 1
1515
extra_hosts:
16-
- "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts
16+
- 'host.docker.internal:host-gateway' # fixes `host.docker.internal` on linux hosts

docker/docker-compose.dev.subnets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
image: "hirosystems/stacks-subnets:7012d22"
2323
# build:
2424
# dockerfile: ./subnet-node.Dockerfile
25-
command: subnet-node start --config=/app/config/Stacks-subnet.toml
25+
command: subnet-node start --config /app/config/Stacks-subnet.toml
2626
ports:
2727
- "30443:30443" # subnet-node RPC interface
2828
- "30444:30444" # subnet-node p2p

docker/docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version: '3.7'
22
services:
33
stacks-blockchain:
4-
command: stacks-node start --config=/app/config/Stacks-mocknet.toml
4+
command: stacks-node start --config /app/config/Stacks-mocknet.toml

0 commit comments

Comments
 (0)