Skip to content

Commit 420ff8a

Browse files
committed
chore: address changes
1 parent 238fcde commit 420ff8a

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

next.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,11 @@ async function redirects() {
608608
destination: '/start-mining/mainnet',
609609
permanent: true,
610610
},
611+
{
612+
source: '/start-mining',
613+
destination: '/start-mining/mainnet',
614+
permanent: true,
615+
},
611616
{
612617
source: '/smart-contracts/overview',
613618
destination: '/write-smart-contracts/overview',

src/pages/start-mining/mainnet.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ First, download the bitcoind software for your platform from https://bitcoin.org
3636

3737
Next, start bitcoind with the following configuration:
3838

39-
```
39+
```toml
4040
server=1
4141
rpcuser=your-bitcoind-username
4242
rpcpassword=your-bitcoind-password
@@ -65,10 +65,10 @@ First, a keychain needs to be generated. With this keychain, we'll purchase some
6565
To get a keychain, the simplest way is to use the `stacks-cli`. We'll use the `make_keychain` command.
6666

6767
```bash
68-
npx @stacks/cli make_keychain 2>/dev/null
68+
npx @stacks/cli make_keychain 2>/dev/null | json_pp > keychain.txt
6969
```
7070

71-
After this runs, you'll probably see some installation logs, and at the end you should see some JSON that looks like this:
71+
After this runs, you should see some JSON in the new `keychain.txt` file that looks like this:
7272

7373
```json
7474
{

src/pages/start-mining/testnet.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ First, download the bitcoind software for your platform from https://bitcoin.org
3131

3232
Next, start bitcoind with the following configuration:
3333

34-
```
34+
```toml
3535
server=1
3636
rpcuser=your-bitcoind-username
3737
rpcpassword=your-bitcoind-password
@@ -63,10 +63,10 @@ First, a keychain needs to be generated. With this keychain, we'll get some test
6363
To get a keychain, the simplest way is to use the `stacks-cli`. We'll use the `make_keychain` command, and pass `-t` to indicate that we want a testnet keychain.
6464

6565
```bash
66-
npx @stacks/cli make_keychain -t 2>/dev/null
66+
npx @stacks/cli make_keychain -t 2>/dev/null | json_pp > keychain.txt
6767
```
6868

69-
After this runs, you'll probably see some installation logs, and at the end you should see some JSON that looks like this:
69+
After this runs, you should see some JSON in the new `keychain.txt` file that looks like this:
7070

7171
```json
7272
{

0 commit comments

Comments
 (0)