Skip to content
Merged
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
53 changes: 42 additions & 11 deletions docs/reference/README (1).md
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,23 @@ events_keys = ["*"]
{% code title="stacks-node-testnet.toml" %}
```toml
[node]

rpc_bind = "0.0.0.0:20443"
p2p_bind = "0.0.0.0:20444"
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:30444"
prometheus_bind = "127.0.0.1:9153"
working_dir = "/stacks-blockchain"
prometheus_bind = "0.0.0.0:9153"

# Explicitly not a miner or signer.
miner = false
stacker = false

pox_5_sbtc_contract = "SN3VMHXEN64ZZF71JQ5VESXDWTR301XTTXGF4J8F1.sbtc-token"
pox_5_sbtc_registry_contract = "SN3VMHXEN64ZZF71JQ5VESXDWTR301XTTXGF4J8F1.sbtc-registry"
pox_5_bond_admin = "ST1V2ASRWGR81W7GBN1Z4W2JQKXJWCADPVZG30X45"

[burnchain]
chain = "bitcoin"
mode = "krypton"
peer_host = "bitcoin.regtest.hiro.so"
rpc_port = 18443
peer_port = 18444
pox_prepare_length = 100
pox_reward_length = 900
Expand All @@ -185,8 +191,29 @@ amount = 10000000000000000
address = "ST2TFVBMRPS5SSNP98DQKQ5JNB2B6NZM91C4K3P7B"
amount = 10000000000000000

[fee_estimation]
fee_estimator = "fuzzed_weighted_median_fee_rate"
[[ustx_balance]]
address = "ST31XHNM0GZ2K978FPP4QA3STNQ73Z8C9G9MJEPK2"
amount = 10000000000000000

[[ustx_balance]]
address = "ST1B38CGQRPXEMRH7B66VXTS22DQTNMSW4YJJ7QK1"
amount = 10000000000000000

[[ustx_balance]]
address = "STDMN71Z0H9EF8CRKAWTGBB5YS0BNV26HZ79QFFP"
amount = 1000000000000000

[[ustx_balance]]
address = "ST1E0PSCH72JMQH9QCH293ZTEEH7BPA40Y3F39XQ"
amount = 10000000000000

[[ustx_balance]]
address = "ST3QBTK0Q438YVNX8EG6Z85HN0WKQPXYT25H5SPPK"
amount = 10000000000000

[[ustx_balance]]
address = "ST10BX04F9PC6N1WBXKW3H7CG0NS0A3PK650T3P3R"
amount = 10000000000000

[[burnchain.epochs]]
epoch_name = "1.0"
Expand Down Expand Up @@ -222,22 +249,26 @@ start_height = 6

[[burnchain.epochs]]
epoch_name = "3.0"
start_height = 1_900
start_height = 1802

[[burnchain.epochs]]
epoch_name = "3.1"
start_height = 2000
start_height = 1803

[[burnchain.epochs]]
epoch_name = "3.2"
start_height = 71525
start_height = 1804

[[burnchain.epochs]]
epoch_name = "3.3"
start_height = 109280
start_height = 1805

[[burnchain.epochs]]
epoch_name = "3.4"
start_height = 159350
start_height = 1806

[[burnchain.epochs]]
epoch_name = "4.0"
start_height = 2702
```
{% endcode %}
39 changes: 34 additions & 5 deletions docs/reference/node-operations/signer-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ chain = "bitcoin"
mode = "krypton"
peer_host = "bitcoin.regtest.hiro.so"
peer_port = 18444
rpc_port = 18443
pox_prepare_length = 100
pox_reward_length = 900

Expand Down Expand Up @@ -143,6 +144,30 @@ amount = 10000000000000000
address = "ST2TFVBMRPS5SSNP98DQKQ5JNB2B6NZM91C4K3P7B"
amount = 10000000000000000

[[ustx_balance]]
address = "ST31XHNM0GZ2K978FPP4QA3STNQ73Z8C9G9MJEPK2"
amount = 10000000000000000

[[ustx_balance]]
address = "ST1B38CGQRPXEMRH7B66VXTS22DQTNMSW4YJJ7QK1"
amount = 10000000000000000

[[ustx_balance]]
address = "STDMN71Z0H9EF8CRKAWTGBB5YS0BNV26HZ79QFFP"
amount = 1000000000000000

[[ustx_balance]]
address = "ST1E0PSCH72JMQH9QCH293ZTEEH7BPA40Y3F39XQ"
amount = 10000000000000

[[ustx_balance]]
address = "ST3QBTK0Q438YVNX8EG6Z85HN0WKQPXYT25H5SPPK"
amount = 10000000000000

[[ustx_balance]]
address = "ST10BX04F9PC6N1WBXKW3H7CG0NS0A3PK650T3P3R"
amount = 10000000000000

[fee_estimation]
fee_estimator = "fuzzed_weighted_median_fee_rate"

Expand Down Expand Up @@ -180,23 +205,27 @@ start_height = 6

[[burnchain.epochs]]
epoch_name = "3.0"
start_height = 1_900
start_height = 1802

[[burnchain.epochs]]
epoch_name = "3.1"
start_height = 2000
start_height = 1803

[[burnchain.epochs]]
epoch_name = "3.2"
start_height = 71525
start_height = 1804

[[burnchain.epochs]]
epoch_name = "3.3"
start_height = 109280
start_height = 1805

[[burnchain.epochs]]
epoch_name = "3.4"
start_height = 159350
start_height = 1806

[[burnchain.epochs]]
epoch_name = "4.0"
start_height = 2702
```

#### Mainnet signer
Expand Down
Loading