@@ -24,6 +24,7 @@ Below is a sample `insert_options` section that shows all the defaults:
24
24
// ...
25
25
26
26
"insert_options": {
27
+ "tx_cbor": "disable",
27
28
"tx_out": {
28
29
"value": "enable"
29
30
},
@@ -54,6 +55,7 @@ Below is a sample `insert_options` section that shows all the defaults:
54
55
| Property | Type | Required |
55
56
| :------------------------------------------- | :--------- | :------ |
56
57
| [ preset] ( #preset ) | ` enum ` | Optional |
58
+ | [ tx\_ cbor] ( #tx-cbor ) | ` enum ` | Optional |
57
59
| [ tx\_ out] ( #tx-out ) | ` object ` | Optional |
58
60
| [ ledger] ( #ledger ) | ` enum ` | Optional |
59
61
| [ shelley] ( #shelley ) | ` object ` | Optional |
@@ -67,7 +69,7 @@ Below is a sample `insert_options` section that shows all the defaults:
67
69
### Preset
68
70
69
71
Preset is an aggregate setting that overrides all other properties. For example, setting
70
- preset to ` "full" ` will enable all insert options.
72
+ preset to ` "full" ` will enable all insert options except ` "tx_cbor" ` .
71
73
72
74
` preset `
73
75
@@ -91,6 +93,7 @@ This is equivalent to enabling all other settings.
91
93
This is equivalent to setting:
92
94
93
95
```
96
+ "tx_cbor": "disable",
94
97
"tx_out": {
95
98
"value": "bootstrap"
96
99
},
@@ -121,6 +124,7 @@ to the `tx_out` and `ma_tx_out` tables. After that db-sync can be restarted wit
121
124
This is equivalent to setting:
122
125
123
126
```
127
+ "tx_cbor": "disable",
124
128
"tx_out": {
125
129
"value": "disable"
126
130
},
@@ -146,6 +150,7 @@ Disables most data except `block`, `tx`, and governance data.
146
150
This is equivalent to setting:
147
151
148
152
```
153
+ "tx_cbor": "disable",
149
154
"tx_out": {
150
155
"value": "disable"
151
156
},
@@ -165,6 +170,19 @@ This is equivalent to setting:
165
170
166
171
Disables almost all data except ` block ` and ` tx ` tables.
167
172
173
+ ### Tx CBOR
174
+
175
+ ` tx_cbor `
176
+
177
+ * Type: ` string `
178
+
179
+ ** enum** : The value of this property must be equal to one of the following values:
180
+
181
+ | Value | Explanation |
182
+ | :--------- | :------------------------------------- |
183
+ | ` "enable" ` | Enable transaction CBOR collection |
184
+ | ` "disable" ` | Disable transaction CBOR collection |
185
+
168
186
### Tx Out
169
187
170
188
` tx_out `
0 commit comments