You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until the ledger state migration happens, any restart requires this setting. After completion, this
264
265
can be changed.
265
266
266
-
####Force Tx In
267
+
### Force Tx In
267
268
268
269
`tx_out.force_tx_in`
269
270
270
271
* Type: `boolean`
271
272
272
-
###Ledger
273
+
## Ledger
273
274
274
275
One of the db-sync features that uses the most resources is that it maintains a ledger state and
275
276
replays all the ledger rules. This is the only way to get historic reward details and other data
@@ -339,7 +340,7 @@ delete from epoch_param;
339
340
Maintains the ledger state, but doesn't use any of its data, except to load UTxO. To be used with
340
341
`tx_out` set to `"bootstrap"`
341
342
342
-
###Shelley
343
+
## Shelley
343
344
344
345
`shelley`
345
346
@@ -360,7 +361,7 @@ proposals. Does not control `epoch_stake` and `rewards`, For this check `ledger`
360
361
361
362
* Type: `boolean`
362
363
363
-
###Multi Asset
364
+
## Multi Asset
364
365
365
366
`multi_asset`
366
367
@@ -380,7 +381,7 @@ Enables or disables multi assets tables and entries.
380
381
381
382
* Type: `boolean`
382
383
383
-
###Metadata
384
+
## Metadata
384
385
385
386
`metadata`
386
387
@@ -409,7 +410,7 @@ If set, only keep metadata with the specified keys.
409
410
410
411
* Type: `integer[]`
411
412
412
-
###Plutus
413
+
## Plutus
413
414
414
415
`plutus`
415
416
@@ -429,10 +430,12 @@ Enables or disables most tables and entries related to plutus and scripts.
429
430
430
431
* Type: `boolean`
431
432
432
-
###Governance
433
+
## Governance
433
434
434
435
`governance`
435
436
437
+
This will effect all governance related data/functionality.
438
+
436
439
* Type: `string`
437
440
438
441
**enum**: The value of this property must be equal to one of the following values:
@@ -442,7 +445,40 @@ Enables or disables most tables and entries related to plutus and scripts.
442
445
|`"enable"`| Enable all data related to governance |
443
446
|`"disable"`| Disable all data related to governance |
444
447
445
-
### Offchain Pool Data
448
+
### Example
449
+
450
+
```json
451
+
"governance": "enable"
452
+
```
453
+
### Tables associated with governance
454
+
455
+
| Table Name | info |
456
+
| :-------------- | :------------ |
457
+
|`committee_de_registration`| Every committee de-registration. |
458
+
|`committee_member`| Members of the committee. A committee can have multiple members. |
459
+
|`committee_registration`| Every committee hot key registration. |
460
+
|`committee`| New committee proposed on a governance action proposal in table `gov_action_proposal`|
461
+
|`constitution`| Constitution attached to a GovActionProposal (`gov_action_proposal`). |
462
+
|`constitution`| Constitutiona attached to a `gov_action_proposal`|
463
+
|`delegation_vote`| Delegations from a stake address to a stake pool. |
464
+
|`drep_distr`| Distribution of voting power per DRep per. Currently this has a single entry per DRep and doesn't show every delegator. This may change. |
465
+
|`drep_registration`| DRep registrations, deregistrations or updates. Registration have positive deposit values, deregistrations have negative and updates have null. Based on this distinction, for a specific DRep, getting the latest entry gives its registration state. |
466
+
|`drep_registration`| DRep registrations, deregistrations or updates. Registration have positive deposit values, deregistrations have negative and updates have null. Based on this distinction, for a specific DRep, getting the latest entry gives its registration state. |
467
+
|`epoch_stake`| Governance (and in the future other) stats per epoch. |
468
+
|`gov_action_proposal`| Every Anchor that appears on Governance Actions. These are pointers to offchain metadata. The tuple of url and hash is unique. |
469
+
|`gov_action_proposal`| Proposed Gov action proposals, aka ProposalProcedure, GovAction or GovProposal. This table may be referenced by treasury_withdrawal or new_committee. |
470
+
|`off_chain_vote_data`| Offchain metadata related to Vote Anchors. It accepts metadata in a more lenient way than what's decribed in CIP-100. |
471
+
|`off_chain_vote_drep_data`| Offchain metadata for Drep Registrations. Implementes CIP-119. |
472
+
|`off_chain_vote_external_update`| Offchain metadata external updates, as decribed in CIP-100. New in 13.3-Conway. |
473
+
|`off_chain_vote_fetch_error`| Errors while fetching or validating offchain Voting Anchor metadata. |
474
+
|`off_chain_vote_gov_action_data`| Offchain metadata for Governance Actions. Implementes CIP-108. New in 13.3-Conway. |
475
+
|`off_chain_vote_reference`| Offchain metadata references, as decribed in CIP-100. |
476
+
|`treasury_withdrawal`| All treasury withdrawals proposed on a GovActionProposal (`gov_action_proposal`). |
477
+
|`treasury_withdrawal`| All treasury withdrawals proposed on a GovActionProposal. |
478
+
|`voting_anchor`| Every Anchor that appears on Governance Actions. These are pointers to offchain metadata The tuple of url and hash is unique |
479
+
|`voting_procedure`| Voting procedures, aka GovVote. A Vote can be Yes No or Abstain |
480
+
481
+
## Offchain Pool Data
446
482
447
483
`offchain_pool_data`
448
484
@@ -455,7 +491,7 @@ Enables or disables most tables and entries related to plutus and scripts.
0 commit comments