Skip to content

Commit d5fcaa8

Browse files
authored
Merge pull request #1135 from MinaProtocol/2025-09-v3-upgrade
upgrade docusaurus to v3
2 parents 84ab609 + 4e448d8 commit d5fcaa8

File tree

25 files changed

+15331
-8901
lines changed

25 files changed

+15331
-8901
lines changed

docs/exchange-operators/rosetta/build-from-sources.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you already have mina-archive up and running, you can also build and run the
2121

2222
:::tip
2323

24-
To run mina daemon and mina-archive natively, follow the [Archive Node page](node-operators/archive-node/getting-started) instructions.
24+
To run mina daemon and mina-archive natively, follow the [Archive Node page](/node-operators/archive-node/getting-started) instructions.
2525

2626
:::
2727

docs/exchange-operators/rosetta/samples/requests.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ In Mina implementation, each operation object has following fields:
137137
- `account`: the account identifier which the operation relates to
138138
- `amount`: an object with `value` - a signed number representing of the accounts' balance
139139

140-
<details><summary>A sample JSON object that represents an operation</summary>
140+
<details>
141+
<summary>A sample JSON object that represents an operation</summary>
141142

142143
```json
143144
{
@@ -180,7 +181,8 @@ In Mina, each operation represents an [Account Update](/zkapps/writing-a-zkapp/i
180181
- for decreasing sender account balance
181182
- for increasing receiver account balance
182183

183-
<details><summary>A sample object that represents a transfer transaction</summary>
184+
<details>
185+
<summary>A sample object that represents a transfer transaction</summary>
184186

185187
```json
186188
{

docs/exchange-operators/rosetta/samples/using-signer.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To generate a private key, run:
3232

3333
To derive public key, run:
3434

35-
signer derive-public-key --private-key <private key>
35+
signer derive-public-key --private-key `<private key>`
3636

3737
In the output you will also get a Mina account address associated with this key pair.
3838

@@ -56,7 +56,7 @@ See [Sending Transactions](send-transactions) page to learn more.
5656

5757
To sign a transaction, run:
5858

59-
signer sign --private-key <private key> --unsigned-transaction <tx>
59+
signer sign --private-key `<private key>` --unsigned-transaction `<tx>`
6060

6161
:::note
6262

docs/mina-protocol/sending-a-payment.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Additionally you can use the `mina accounts create` command to generate new acco
7777

7878
Since the public key is quite long and difficult to remember, let's save it as an environment variable. Use the following command but replace `<YOUR-PUBLIC-KEY>` with the public key output from the previous command:
7979

80-
export MINA_PUBLIC_KEY=<YOUR-PUBLIC-KEY>
80+
export MINA_PUBLIC_KEY=`<YOUR-PUBLIC-KEY>`
8181

8282
Now we can access this everywhere as `$MINA_PUBLIC_KEY` -- check if it saved properly by trying `echo $MINA_PUBLIC_KEY`.
8383

@@ -87,15 +87,15 @@ Note that these environment variables will only be saved for the current shell s
8787

8888
If you are running the node on a cloud virtual machine, make sure to export and save the key file. You can export the key with:
8989

90-
mina accounts export --public-key <PUBLIC-KEY> --privkey-path <EXPORT-PATH>
90+
mina accounts export --public-key `<PUBLIC-KEY>` --privkey-path `<EXPORT-PATH>`
9191

9292
Then save it to your local machine, maybe using [scp](https://linux.die.net/man/1/scp):
9393

94-
scp <EXPORT-PATH> <LOCAL-DESTINATION>
94+
scp `<EXPORT-PATH>` `<LOCAL-DESTINATION>`
9595

9696
Later, when starting up a new VM, you can upload the key and then import it:
9797

98-
mina accounts import --privkey-path <PRIVATE-KEY-FILE>
98+
mina accounts import --privkey-path `<PRIVATE-KEY-FILE>`
9999

100100
:::
101101

docs/mina-protocol/whats-in-a-block.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ When a [block producer](/mina-protocol/block-producers) wins a slot to produce a
125125
* A list of SNARK proofs generated by [SNARK workers](/mina-protocol/snark-workers) for prior transactions added
126126
* Pending coinbase
127127

128-
A staged ledger can be regarded as a pending accounts database that has transactions(payments, coinbase, and proof fee payments) applied for which there are no SNARKs available yet. A staged ledger consists of the accounts state (a ledger) and a transaction queue for transactions without SNARK proofs, which is the [scan state](/node-operators/scan-state).
128+
A staged ledger can be regarded as a pending accounts database that has transactions(payments, coinbase, and proof fee payments) applied for which there are no SNARKs available yet. A staged ledger consists of the accounts state (a ledger) and a transaction queue for transactions without SNARK proofs, which is the [scan state](/mina-protocol/scan-state).
129129

130130
### Delta Transition Chain Proof
131131

docs/node-developers/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Other documents relevant to contributing code include:
1313

1414
- [Style Guide](/node-developers/style-guide)
1515
- [Code Review Guidelines](/node-developers/code-review-guidelines)
16-
- [Repository Structure](/node-developers/directory-structure)
17-
- [BIP44 Information](/node-developers/bip44-information)
16+
- [Repository Structure](/node-developers/repository-structure)
17+
- [BIP44 Information](/node-developers/bip44)
1818

1919
Mina is entirely open source. The code is distributed under the terms of the [Apache License 2.0](https://github.com/MinaProtocol/mina/blob/master/LICENSE).

docs/node-developers/sandbox-node.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ And stop mina by running.
4444
docker stop mina
4545
```
4646

47-
You can use the Mina CLI to interact with the sandbox node. The following command opens a shell inside the docker container from where you can issue any of the available [cli commands](/node-operators/cli-reference).
47+
You can use the Mina CLI to interact with the sandbox node. The following command opens a shell inside the docker container from where you can issue any of the available [cli commands](/node-operators/mina-cli-reference).
4848

4949
```
5050
docker exec -it mina bash

docs/node-operators/archive-node/archive-redundancy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Similarly, it is possible to have multiple archive processes write to the same d
3737

3838
However, multiple archive processes concurrently writing to a database could cause data inconsistencies (explained in https://github.com/MinaProtocol/mina/issues/7567). To avoid this, set the transaction isolation level of the archive database to `Serializable` with the following query:
3939

40-
ALTER DATABASE <DATABASE NAME> SET DEFAULT_TRANSACTION_ISOLATION TO SERIALIZABLE ;
40+
ALTER DATABASE `<DATABASE NAME>` SET DEFAULT_TRANSACTION_ISOLATION TO SERIALIZABLE ;
4141

4242
Set the transaction level after you create the [database](/node-operators/archive-node/getting-started) and before you connect an archive process to it.
4343

docs/node-operators/archive-node/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To run a local archive node to run it in the foreground for testing:
114114
115115
```
116116

117-
To connect to an archive process on another machine, specify a hostname with <ipaddress:portnumber> i.e. `154.97.53.97:3086`.
117+
To connect to an archive process on another machine, specify a hostname with `<ipaddress:portnumber>` i.e. `154.97.53.97:3086`.
118118

119119
## Set up the archive node using Docker
120120

@@ -195,7 +195,7 @@ short lived network created mainly for testing, local development or experimenta
195195
--archive-address 3086
196196
197197
```
198-
To connect to an archive process on another machine, specify a hostname with <ipaddress:portnumber> i.e. `154.97.53.97:3086`.
198+
To connect to an archive process on another machine, specify a hostname with `<ipaddress:portnumber>` i.e. `154.97.53.97:3086`.
199199

200200

201201
## Set up the archive node using Docker Compose
@@ -267,7 +267,7 @@ To run the archive node using Docker Compose:
267267
268268
```
269269

270-
To connect to an archive process on another machine, specify a hostname with <ipaddress:portnumber> i.e. `154.97.53.97:3086`.
270+
To connect to an archive process on another machine, specify a hostname with `<ipaddress:portnumber>` i.e. `154.97.53.97:3086`.
271271

272272

273273
## Using the Archive Node

docs/node-operators/data-and-history/rosetta.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ To run docker-start.sh and connect to the live Devnet:
9898
-e MINA_ARCHIVE_DUMP_URL=https://storage.googleapis.com/mina-archive-dumps \
9999
-e MINA_GENESIS_LEDGER_URL=http://673156464838-mina-genesis-ledgers.s3-website-us-west-2.amazonaws.com/devnet/genesis_ledger.json \
100100
-e BLOCKS_BUCKET=https://storage.googleapis.com/mina_network_block_data \
101-
minaprotocol/mina-rosetta:<TAG>
101+
minaprotocol/mina-rosetta:`<TAG>`
102102

103103
Please replace `<TAG>` with the latest release tag compatible with the network you are trying to connect to.
104104

0 commit comments

Comments
 (0)