@offckb/cli 0.4.9 → 0.4.10-canary-d5a961c.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 +2 -1
- package/build/index.js +284 -100
- package/ckb/devnet/ckb.toml +7 -4
- package/package.json +2 -2
package/ckb/devnet/ckb.toml
CHANGED
|
@@ -80,16 +80,19 @@ support_protocols = ["Ping", "Discovery", "Identify", "Feeler", "DisconnectMessa
|
|
|
80
80
|
#
|
|
81
81
|
# Allowing arbitrary machines to access the JSON-RPC port is dangerous and strongly discouraged.
|
|
82
82
|
# Please strictly limit the access to only trusted machines.
|
|
83
|
-
listen_address = "
|
|
83
|
+
listen_address = "127.0.0.1:8114"
|
|
84
84
|
|
|
85
85
|
# Default is 10MiB = 10 * 1024 * 1024
|
|
86
86
|
max_request_body_size = 10485760
|
|
87
87
|
|
|
88
|
-
# List of API modules: ["Net", "Pool", "Miner", "Chain", "Stats", "Subscription", "Experiment", "Debug", "Indexer"]
|
|
89
|
-
|
|
88
|
+
# List of API modules: ["Net", "Pool", "Miner", "Chain", "Stats", "Subscription", "Experiment", "Debug", "Indexer", "RichIndexer", "Terminal"]
|
|
89
|
+
# "Terminal" powers ckb-tui's `get_overview` system metrics; without it those panels show N/A.
|
|
90
|
+
modules = ["Net", "Pool", "Miner", "Chain", "Stats", "Subscription", "Experiment", "Debug", "Indexer", "Terminal"]
|
|
90
91
|
|
|
91
92
|
# By default RPC only binds to HTTP service, you can bind it to TCP and WebSocket.
|
|
92
|
-
#
|
|
93
|
+
# The TCP service streams subscription topics (new_transaction, rejected_transaction, log, ...)
|
|
94
|
+
# that ckb-tui's mempool and logs dashboards rely on.
|
|
95
|
+
tcp_listen_address = "127.0.0.1:18114"
|
|
93
96
|
# ws_listen_address = "127.0.0.1:28114"
|
|
94
97
|
reject_ill_transactions = true
|
|
95
98
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@offckb/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10-canary-d5a961c.0",
|
|
4
4
|
"description": "ckb development network for your first try",
|
|
5
5
|
"author": "CKB EcoFund",
|
|
6
6
|
"license": "MIT",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"https-proxy-agent": "^7.0.5",
|
|
87
87
|
"node-fetch": "2",
|
|
88
88
|
"semver": "^7.6.0",
|
|
89
|
-
"tar": "^7.5.
|
|
89
|
+
"tar": "^7.5.19",
|
|
90
90
|
"winston": "^3.17.0"
|
|
91
91
|
},
|
|
92
92
|
"optionalDependencies": {
|