torch-liquidation-bot 2.0.2 → 2.0.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "torch-liquidation-bot",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "read-only lending market scanner for Torch Market on Solana",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -1,4 +1,4 @@
1
- # torch-liquidation-bot v2.0.1 (Read-Only)
1
+ # torch-liquidation-bot v2.0.4 (Read-Only)
2
2
 
3
3
  Read-only lending market scanner for [Torch Market](https://torch.market) on Solana. No wallet required. Only an RPC endpoint is needed.
4
4
 
@@ -30,7 +30,7 @@ That's it. No wallet loaded. No transactions built. No state changes.
30
30
 
31
31
  | Variable | Required | Default | Description |
32
32
  |----------|----------|---------|-------------|
33
- | `RPC_URL` | yes | -- | Solana RPC endpoint |
33
+ | `RPC_URL` | yes | -- | Solana RPC endpoint. If your provider embeds an API key in the URL, use a read-only key or a public endpoint. |
34
34
  | `MINT` | no | -- | Token mint address (omit to show all tokens) |
35
35
  | `LOG_LEVEL` | no | `info` | `debug`, `info`, `warn`, `error` |
36
36
 
@@ -94,6 +94,7 @@ pnpm test # read-only test
94
94
  - Outbound connections: Solana RPC only
95
95
  - Minimal dependencies: `@solana/web3.js` + `torchsdk`
96
96
  - No post-install hooks, no remote code fetching
97
+ - RPC_URL is used only for read-only RPC calls — never logged, transmitted externally, or stored
97
98
 
98
99
  ## Links
99
100