Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: stack-stx through bitcoin transaction #14

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions settings/Devnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ bitcoin_controller_automining_disabled = true
# postgres_password = "postgres"
# postgres_database = "postgres"
# bitcoin_node_image_url = "quay.io/hirosystems/bitcoind:devnet-v2"
# stacks_node_image_url = "quay.io/hirosystems/stacks-node:v3-beta2"
# stacks_node_env_vars = ["STACKS_LOG_DEBUG=1"]
stacks_node_image_url = "quay.io/hirosystems/stacks-node:devnet-v3-beta3"
stacks_node_env_vars = ["STACKS_LOG_DEBUG=1"]
# stacks_api_image_url = "hirosystems/stacks-blockchain-api:latest"
# stacks_explorer_image_url = "hirosystems/explorer:latest"
# bitcoin_explorer_image_url = "quay.io/hirosystems/bitcoin-explorer:devnet"
Expand All @@ -117,7 +117,7 @@ bitcoin_controller_automining_disabled = true
# subnet_node_p2p_port = 30444
# subnet_events_ingestion_port = 30445
# subnet_node_events_observers = ["host.docker.internal:8002"]
# epoch_2_00 = 100
# epoch_2_05 = 102
# epoch_2_1 = 106
# pox_2_activation = 108
epoch_2_00 = 100
epoch_2_05 = 101
epoch_2_1 = 103
pox_2_activation = 110
6 changes: 6 additions & 0 deletions tests/integration/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ export namespace Accounts {
secretKey:
"d655b2523bcd65e34889725c73064feb17ceb796831c0e111ba1a552b0f31b3901",
};
export const FAUCET = {
stxAddress: "STNHKEPYEPJ8ET55ZZ0M5A34J0R3N5FM2CMMMAZ6",
btcAddress: "mjSrB3wS4xab3kYqFktwBzfTdPg367ZJ2d",
secretKey:
"de433bdfa14ec43aa1098d5be594c8ffb20a31485ff9de2923b2689471c401b801",
};
}
2 changes: 1 addition & 1 deletion tests/integration/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface EpochTimeline {
pox_2_activation: number;
}

const DEFAULT_EPOCH_TIMELINE = {
export const DEFAULT_EPOCH_TIMELINE = {
epoch_2_0: Constants.DEVNET_DEFAULT_EPOCH_2_0,
epoch_2_05: Constants.DEVNET_DEFAULT_EPOCH_2_05,
epoch_2_1: Constants.DEVNET_DEFAULT_EPOCH_2_1,
Expand Down
Loading