@ckb-firewall/cli 0.1.1 → 0.1.2

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 CHANGED
@@ -107,10 +107,13 @@ Builds and writes a governance transaction JSON file. Add `--sign` to sign and s
107
107
 
108
108
  ## Testnet defaults
109
109
 
110
- All commands default to the canonical testnet registry cell. See [`docs/deployments/testnet.registry.json`](https://github.com/digitaldrreamer/ckb-transaction-firewall/blob/main/docs/deployments/testnet.registry.json) for the exact cell outpoint and script identity.
110
+ All commands default to the canonical testnet registry cell. See [`notes/deployments/testnet.registry.json`](https://github.com/digitaldrreamer/ckb-transaction-firewall/blob/main/notes/deployments/testnet.registry.json) for the exact cell outpoint and script identity.
111
111
 
112
112
  ## More
113
113
 
114
114
  - [CKB Transaction Firewall](https://github.com/digitaldrreamer/ckb-transaction-firewall) — contracts, TypeScript SDK, Rust SDK, governance docs, testnet deployment
115
- - [Governance model](https://github.com/digitaldrreamer/ckb-transaction-firewall/blob/main/docs/governance.md)
116
- - [Architecture and trust model](https://github.com/digitaldrreamer/ckb-transaction-firewall/blob/main/docs/architecture.md)
115
+ - [Documentation](https://ckb-firewall.drreamer.digital/)
116
+ - [CLI quickstart](https://ckb-firewall.drreamer.digital/getting-started/cli/)
117
+ - [CLI reference](https://ckb-firewall.drreamer.digital/reference/cli/)
118
+ - [Governance](https://ckb-firewall.drreamer.digital/concepts/governance/)
119
+ - [Architecture](https://ckb-firewall.drreamer.digital/concepts/architecture/)
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ function printBanner() {
24
24
  program
25
25
  .name("ckb-firewall")
26
26
  .description("Manage the CKB Transaction Firewall blacklist registry")
27
- .version("0.1.0")
27
+ .version("0.1.2")
28
28
  .addHelpCommand(false);
29
29
  // ── inspect ──────────────────────────────────────────────────────────────────
30
30
  const inspectDefs = inspectDefaults();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-firewall/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for managing the CKB Transaction Firewall blacklist registry",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -21,7 +21,7 @@
21
21
  "dev": "tsc --watch -p tsconfig.build.json"
22
22
  },
23
23
  "dependencies": {
24
- "@ckb-firewall/sdk": "^0.2.3",
24
+ "@ckb-firewall/sdk": "^0.2.5",
25
25
  "@noble/curves": "^2.2.0",
26
26
  "@noble/hashes": "^1.5.0",
27
27
  "cfonts": "^3.3.0",