Skip to content

Commit 80d12a6

Browse files
Merge branch 'master' of https://github.com/input-output-hk/cardano-documentation into testnets-merge
2 parents e24c931 + eed1df8 commit 80d12a6

File tree

3 files changed

+55
-55
lines changed

3 files changed

+55
-55
lines changed

content/02-new-to-cardano/08-types-of-wallets.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ Here is a list of hardware wallets to consider for storing and transacting with
9898
ada:
9999

100100
1. Trezor Model T
101-
2. Ledger Nano S
102-
3. Ledger Nano X
101+
2. [Ledger Nano S Plus](https://shop.ledger.com/pages/ledger-nano-s-plus)
102+
3. [Ledger Nano X](https://shop.ledger.com/pages/ledger-nano-x)
103103

104104
See
105105
[how to use hardware wallets with Daedalus.](https://iohk.zendesk.com/hc/en-us/articles/900004722083-How-to-use-Ledger-and-Trezor-HW-with-Daedalus)

content/06-development-guidelines/01-installing-the-cardano-node.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metaTitle: Installing the Cardano node
66
## Downloading pre-compiled executables
77

88
You can install the Cardano node and cli using
9-
[pre-compiled executable files](https://github.com/input-output-hk/cardano-node#linux-executable)
9+
[pre-compiled executable files](https://github.com/input-output-hk/cardano-node#executables)
1010
for your platform.
1111

1212
## Building from source

content/07-cardano-components/05-cardano-db-sync/05-big-query.mdx

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -76,36 +76,36 @@ Usually, the cost is $5 per terabyte (TB) of the data queried. Find more informa
7676

7777
The following tables are available in the dataset:
7878

79-
1. Table: [block](#1-Table-block)
80-
2. Table: [block_hash](#2-Table-block_hash)
81-
3. Table: [collateral](#3-Table-collateral)
82-
4. Table: [cost_model](#4-Table-cost_model)
83-
5. Table: [delegation](#5-Table-delegation)
84-
6. Table: [epoch_param](#6-Table-epoch_param)
85-
7. Table: [ma_minting](#7-Table-ma_minting)
86-
8. Table: [meta](#8-Table-meta)
87-
9. Table: [param_proposal](#9-Table-param_proposal)
88-
10. Table: [pool_offline_data](#10-Table-pool_offline_data)
89-
11. Table: [pool_owner](#11-Table-pool_owner)
90-
12. Table: [pool_retire](#12-Table-pool_retire)
91-
13. Table: [pool_update](#13-Table-pool_update)
92-
14. Table: [redeemer](#14-Table-redeemer)
93-
15. Table: [rel_addr_txout](#15-Table-rel_addr_txout)
94-
16. Table: [rel_stake_txout](#16-Table-rel_stake_txout)
95-
17. Table: [reward](#17-Table-reward)
96-
18. Table: [schema_version](#18-Table-schema_version)
97-
19. Table: [script](#19-Table-script)
98-
20. Table: [stake_registration](#20-Table-stake_registration)
99-
21. Table: [tx](#21-Table-tx)
100-
22. Table: [tx_consumed_output](#22-Table-tx_consumed_output)
101-
23. Table: [tx_hash](#23-Table-tx_hash)
102-
24. Table: [tx_in_out](#24-Table-tx_in_out)
103-
25. Table: [tx_metadata](#25-Table-tx_metadata)
104-
26. Table: [withdrawal](#26-Table-withdrawal)
79+
1. Table: block
80+
2. Table: block_hash
81+
3. Table: collateral
82+
4. Table: cost_model
83+
5. Table: delegation
84+
6. Table: epoch_param
85+
7. Table: ma_minting
86+
8. Table: meta
87+
9. Table: param_proposal
88+
10. Table: pool_offline_data
89+
11. Table: pool_owner
90+
12. Table: pool_retire
91+
13. Table: pool_update
92+
14. Table: redeemer
93+
15. Table: rel_addr_txout
94+
16. Table: rel_stake_txout
95+
17. Table: reward
96+
18. Table: schema_version
97+
19. Table: script
98+
20. Table: stake_registration
99+
21. Table: tx
100+
22. Table: tx_consumed_output
101+
23. Table: tx_hash
102+
24. Table: tx_in_out
103+
25. Table: tx_metadata
104+
26. Table: withdrawal
105105

106106
![](https://ucarecdn.com/d8ba0e26-a9f8-4c0b-be95-94a4d93a5dc4/)
107107

108-
### 1. Table: block
108+
### <a name="1-Table-block">1. Table: block</a>
109109

110110
The `block` table is clustered by field `epoch_no` and is usually accessed using `epoch_no` and `slot_no`. See the `Table: block_hash` example bellow.
111111

@@ -120,7 +120,7 @@ The `block` table is clustered by field `epoch_no` and is usually accessed using
120120
| script_count | INTEGER | REQUIRED
121121
| sum_script_size | INTEGER | REQUIRED
122122

123-
### 2. Table: block_hash
123+
### <a name="2-Table-block_hash">2. Table: block_hash</a>
124124

125125
The `block_hash` table is clustered by field `epoch_no` and relates `slot_no` to `block_hash`. If the `slot_no` is NULL, then the block is from the genesis.
126126

@@ -141,7 +141,7 @@ WHERE bh.block_hash = '00b6c4bd4024cbf66050fe978f880a7129149be7a1a01310b3e305505
141141
AND bh.epoch_no = 329;
142142
```
143143

144-
### 3. Table: collateral
144+
### <a name="3-Table-collateral">3. Table: collateral</a>
145145

146146
The `collateral` table relates a transaction with its collateral inputs (that are unspent transaction outputs). It is clustered by the field `epoch_no` (relating to tx_in, when the collateral was provided).
147147

@@ -155,7 +155,7 @@ The `collateral` table relates a transaction with its collateral inputs (that ar
155155
| txidx_out | INTEGER | REQUIRED
156156
| tx_out_index | INTEGER | REQUIRED
157157

158-
### 4. Table: cost_model
158+
### <a name="4-Table-cost_model">4. Table: cost_model</a>
159159

160160
CostModel for EpochParam and ParamProposal. The field costs are the actual costs formatted as json.
161161

@@ -164,7 +164,7 @@ CostModel for EpochParam and ParamProposal. The field costs are the actual costs
164164
| epoch_no | INTEGER | REQUIRED|
165165
| costs | JSON | REQUIRED |
166166

167-
### 5. Table: delegation
167+
### <a name="5-Table-delegation">5. Table: delegation</a>
168168

169169
The `delegation` table provides information about delegations. It is clustered by `epoch_no` and `stake_addr_hash`. The `epoch_no` is the epoch of the transaction that contained the delegation.
170170
The `delegations` JSON field is a list of fields of: (cert_index, pool_hash, tx_hash, active_epoch_no, slot_no, txidx)
@@ -182,7 +182,7 @@ example data:
182182
|210 |e1000988fdc947892b93da25328e16d9911b479454cee287affb59810b |[{""pool_hash"" : ""65ea43eab7c0143d6bb68f9d56c276bce09377bdc41e1a42ac9535ed"", ""cert_index"" : 1, ""tx_hash"" : ""e689ab28a66086a7cba37b4ae2881b4cae99263a7e3ec24335ab15a61fd59af9"", ““active_epoch_no””:212, ""slot_no"" : 4714600, ""txidx"" : 0}]" |
183183
210 |e100133b1980c19219944b78c3d63eb914a29861afebc723367bd6a390 |[{""pool_hash"" : ""1d46e6eaa039ad1d6f4e53200a9c49c6d2693da6207006876455e6e4"", ""cert_index"" : 0, ""tx_hash"" : ""2d667308c2f41cdfe936bdcf8448f62674de6799a8fa9843cfc7228a89f15232"", ““active_epoch_no””:212, ""slot_no"" : 4543820, ""txidx"" : 1}, {""pool_hash"" : ""60397646d7d1ad6fe2ddccfe7efc9cba61f6d3d94d29e8f41de73240"", ""cert_index"" : 1, ""tx_hash"" : ""c5ae6ff25716d3cc08ff94a5178ac857ecf0cc5a31e8b35abd0b17fa7a20c386"", ““active_epoch_no””:212, ""slot_no"" : 4524540, ""txidx"" : 3}]"
184184

185-
### 6. Table: epoch_param
185+
### <a name="6-Table-epoch_param">6. Table: epoch_param</a>
186186

187187
The `epoch_param` table contains the accepted protocol parameters for an epoch. Table `epoch_param` is very small and accessed by `epoch_no`.
188188

@@ -220,7 +220,7 @@ The `epoch_param` table contains the accepted protocol parameters for an epoch.
220220
| collateral_percent | INTEGER | NULLABLE
221221
| max_collateral_inputs | INTEGER | NULLABLE
222222

223-
### 7. Table: ma_minting
223+
### <a name="7-Table-ma_minting">7. Table: ma_minting</a>
224224

225225
The `ma_minting` table contains all the unique policy/name pairs with a CIP14 asset fingerprint. It also contains the multi-Asset mint events.
226226
The table is clustered by `epoch_no` and `fingerprint`.
@@ -240,7 +240,7 @@ example data:
240240
|--|--|--|--|--|
241241
| asset1j84xh47st88tz7d55exfu2daurvrvycnc0xy2p |53cc838e833f2e3f1deaaa5efd7ccbe3fc0d285c2bec879ad4ef3677 | Vk9PRE9PVEVERFlCRUFS | 337 |[{"slot_no":60265049,"txidx":3,"quantity":1},{"slot_no":60455411,"txidx":25,"quantity":1}]|
242242

243-
### 8. Table: meta
243+
### <a name="8-Table-meta">8. Table: meta</a>
244244

245245
The `meta` table provides information about network start time and db-sync version.
246246

@@ -250,7 +250,7 @@ The `meta` table provides information about network start time and db-sync versi
250250
| network_name | STRING | REQUIRED |
251251
| version | STRING | REQUIRED
252252

253-
### 9. Table: param_proposal
253+
### <a name="9-Table-param_proposal">9. Table: param_proposal</a>
254254

255255
The `param_proposal` table contains blockchain parameter change proposals. It is clustered by `epoch_no`.
256256

@@ -289,7 +289,7 @@ The `param_proposal` table contains blockchain parameter change proposals. It is
289289
| max_collateral_inputs | INTEGER | NULLABLE
290290
| registered_tx_id | INTEGER | REQUIRED
291291

292-
### 10. Table: pool_offline_data
292+
### <a name="10-Table-pool_offline_data">10. Table: pool_offline_data</a>
293293

294294
The `pool_offline_data` table contains information about off chain pool data. It is sliced by `epoch_no`, which is the epoch of the transaction that the metadata was registered.
295295

@@ -303,7 +303,7 @@ The `pool_offline_data` table contains information about off chain pool data. It
303303
| metadata_hash | BYTES | REQUIRED
304304
| metadata_registered_tx_hash | STRING | REQUIRED
305305

306-
### 11. Table: pool_owner
306+
### <a name="11-Table-pool_owner">11. Table: pool_owner</a>
307307

308308
This table provides information about pool owners. It is a mapping of pool hashes to addresses that were registered as pool owners on a specific transaction (slot, transaction index combination). It is clustered by `epoch_no`.
309309

@@ -315,7 +315,7 @@ This table provides information about pool owners. It is a mapping of pool hashe
315315
| slot_no | INTEGER | REQUIRED
316316
| txidx | INTEGER | REQUIRED
317317

318-
### 12. Table: pool_retire
318+
### <a name="12-Table-pool_retire">12. Table: pool_retire</a>
319319

320320
This table provides information about the retirement of pools. It is sliced by `epoch_no` which is the epoch that the pool retirement was announced.
321321

@@ -329,7 +329,7 @@ This table provides information about the retirement of pools. It is sliced by `
329329
| slot_no | INTEGER | REQUIRED
330330
| announced_txidx | STRING | REQUIRED
331331

332-
### 13. Table: pool_update
332+
### <a name="13-Table-pool_update">13. Table: pool_update</a>
333333

334334
The `pool_update` table provides information about pool updates. It is sliced by `epoch_no` which is the epoch number of the transaction that contained the update.
335335

@@ -349,7 +349,7 @@ The `pool_update` table provides information about pool updates. It is sliced by
349349
| metadata_hash | STRING | NULLABLE
350350
| metadata_registered_tx_hash | STRING | NULLABLE
351351

352-
### 14. Table: redeemer
352+
### <a name="14-Table-redeemer">14. Table: redeemer</a>
353353

354354
Per transaction, multiple redeemers are present with different purpose (spend, mint) and increasing indexes in those. The table is clustered by the fields `epoch_no` and `slot_no` for fast access.
355355

@@ -428,7 +428,7 @@ redeemers:
428428
]
429429
```
430430

431-
### 15. Table: rel_addr_txout
431+
### <a name="15-Table-rel_addr_txout">15. Table: rel_addr_txout</a>
432432

433433
The `rel_addr_txout` table is clustered by `epoch_no` and relates `address` to `outputs` in an epoch. The list of outputs are triples of (slot_no, txidx, index), thus the identification of the transaction by the pair of (slot_no, txidx) and then the output at index in the transaction.
434434

@@ -438,7 +438,7 @@ The `rel_addr_txout` table is clustered by `epoch_no` and relates `address` to `
438438
| address | STRING | REQUIRED
439439
| outputs | STRING | REQUIRED
440440

441-
### 16. Table: rel_stake_txout
441+
### <a name="16-Table-rel_stake_txout">16. Table: rel_stake_txout</a>
442442

443443
This table is clustered by `epoch_no` and relates `staking address` to `outputs` in an epoch.
444444

@@ -450,7 +450,7 @@ The list of outputs are triples of `slot_no`, `txidx`, and `index`, which identi
450450
| address | STRING | REQUIRED
451451
| outputs | STRING | REQUIRED
452452

453-
### 17. Table: reward
453+
### <a name="17-Table-reward">17. Table: reward</a>
454454

455455
This table provides information about the rewards a stake address receives on a specific epoch. The table is sliced by `epoch_no` which is the reward’s spendable epoch.
456456

@@ -463,7 +463,7 @@ This table provides information about the rewards a stake address receives on a
463463
| earned_epoch | INTEGER | REQUIRED
464464
| pool_hash | STRING | NULLABLE
465465

466-
### 18. Table: schema_version
466+
### <a name="18-Table-schema_version">18. Table: schema_version</a>
467467

468468
This table provides information about db-sync database schema version. It should only ever have a single row.
469469

@@ -473,7 +473,7 @@ This table provides information about db-sync database schema version. It should
473473
| stage_two | INTEGER | REQUIRED
474474
| stage_three | INTEGER | REQUIRED
475475

476-
### 19. Table: script
476+
### <a name="19-Table-script">19. Table: script</a>
477477

478478
A table containing scripts available, found in witnesses, inlined in outputs (reference outputs) or auxdata of transactions. It is sliced by `epoch_no`.
479479

@@ -488,7 +488,7 @@ A table containing scripts available, found in witnesses, inlined in outputs (re
488488
| bytes | BYTES | NULLABLE
489489
| serialised_size | INTEGER | NULLABLE
490490

491-
### 20. Table: stake_registration
491+
### <a name="20-Table-stake_registration">20. Table: stake_registration</a>
492492

493493
Table `stake_registration` provides information on when a stake address was registered. This table is sliced by `epoch_no`.
494494

@@ -500,7 +500,7 @@ Table `stake_registration` provides information on when a stake address was regi
500500
| slot_no | INTEGER | REQUIRED
501501
| txidx | INTEGER | REQUIRED
502502

503-
### 21. Table: tx
503+
### <a name="21-Table-tx">21. Table: tx</a>
504504

505505
The `tx` table is clustered by field `epoch_no` and `slot_no`, and can efficiently be accessed using `epoch_no` or `slot_no`.
506506

@@ -524,7 +524,7 @@ A transaction is identified by the pair (`slot_no`, `txidx`), identifying the bl
524524
| count_inputs | INTEGER | REQUIRED
525525
| count_outputs | INTEGER |REQUIRED
526526

527-
### 22. Table: tx_consumed_output
527+
### <a name="22-Table-tx_consumed_output">22. Table: tx_consumed_output</a>
528528

529529
This table is clustered by `slot_no` and contains information about which transaction outputs got consumed in other transactions: The transaction output that is identified by the triplet (`slot_no`, `txidx`, `index`), was consumed in transaction identified by the pair (`consumed_in_slot_no`, `consumed_in_txidx`).
530530

@@ -536,7 +536,7 @@ This table is clustered by `slot_no` and contains information about which transa
536536
| consumed_in_slot_no | INTEGER | REQUIRED
537537
| consumed_in_txidx | INTEGER | REQUIRED
538538

539-
### 23. Table: tx_hash
539+
### <a name="23-Table-tx_hash">23. Table: tx_hash</a>
540540

541541
The `tx_hash` table allows to quickly find the slot number and the transaction index in the block given that the hash has been incorporated. The table is clustered by `epoch_no`.
542542

@@ -547,7 +547,7 @@ The `tx_hash` table allows to quickly find the slot number and the transaction i
547547
| txidx | INTEGER | REQUIRED
548548
| tx_hash | STRING | REQUIRED
549549

550-
### 24. Table: tx_in_out
550+
### <a name="24-Table-tx_in_out">24. Table: tx_in_out</a>
551551

552552
The `tx_in_out` table is clustered by field `epoch_no` and `slot_no`, and can efficiently be accessed using `epoch_no` or `slot_no`.
553553

@@ -625,7 +625,7 @@ and creates four outputs:
625625

626626
See the output of the [transaction on Cardano Explorer](https://explorer.cardano.org/en/transaction?id=3c943c2ce4de883a9dcf1c5b29d0794c2b043ac45a7e987eb9fe2ae0038c41bf).
627627

628-
### 25. Table: tx_metadata
628+
### <a name="25-Table-tx_metadata">25. Table: tx_metadata</a>
629629

630630
This table is clustered by `epoch_no` and relates a transaction with its metadata.
631631

@@ -642,7 +642,7 @@ The metadata is indexed with an integer which we include in the JSON list of (
642642
[{"index":2112121520,"meta":{"Choices": [{"VoteWeight": 1, "CandidateId": "ea19c7ed-8151-4619-ba61-5415abdac0d2"}], "VoterId": "16e98564-0f2c-4519-b3ae-14c2403450d1", "NetworkId": "SPOCRA", "ObjectType": "VoteBallot", "ProposalId": "f5b3a098-5615-4dfc-95d6-53a4a3238d99", "ObjectVersion": "1.0.0"}}]
643643
```
644644

645-
### 26. Table: withdrawal
645+
### <a name="26-Table-withdrawal">26. Table: withdrawal</a>
646646

647647
This table provides information about reward withdrawals. It is clustered by `epoch_no`.
648648

0 commit comments

Comments
 (0)