@blinklabs/dingo 0.15.1 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dingo.yaml.example +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,9 +67,12 @@ This behavior can be changed via the following environment variables:
|
|
|
67
67
|
Running on mainnet (:sweat_smile:):
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
|
|
70
|
+
CARDANO_NETWORK=mainnet CARDANO_CONFIG=path/to/cardano/configs/mainnet/config.json ./dingo
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
Note: you can find cardano configuration files at
|
|
74
|
+
<https://github.com/blinklabs-io/docker-cardano-configs/tree/main/config>
|
|
75
|
+
|
|
73
76
|
Dingo will drop a `dingo.socket` file which can be used by other clients, such
|
|
74
77
|
as `cardano-cli` or software like `adder` or `kupo`. This has only had limited
|
|
75
78
|
testing, so success/failure reports are very welcome and encouraged!
|
|
@@ -146,6 +149,7 @@ make
|
|
|
146
149
|
```
|
|
147
150
|
|
|
148
151
|
You can also run the code without building a binary, first
|
|
152
|
+
|
|
149
153
|
```bash
|
|
150
154
|
go run ./cmd/dingo/
|
|
151
155
|
```
|
package/dingo.yaml.example
CHANGED
|
@@ -65,6 +65,5 @@ mempoolCapacity: 1048576
|
|
|
65
65
|
# Default: false
|
|
66
66
|
devMode: false
|
|
67
67
|
|
|
68
|
-
#
|
|
69
|
-
|
|
70
|
-
ledgerValidateHistorical: "14d"
|
|
68
|
+
# Validate historical blocks during ledger processing (default: false)
|
|
69
|
+
validateHistorical: false
|