torch-liquidation-bot 10.5.2 → 10.7.1

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 +2 -2
  2. package/readme.md +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "torch-liquidation-bot",
3
- "version": "10.5.2",
3
+ "version": "10.7.1",
4
4
  "description": "autonomous vault-based liquidation keeper for Torch Market lending on Solana using torchsdk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "@solana/spl-token": "^0.4.14",
21
21
  "@solana/web3.js": "1.98.4",
22
22
  "bs58": "^6.0.0",
23
- "torchsdk": "10.5.0"
23
+ "torchsdk": "10.7.1"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^25.6.0",
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # torch-liquidation-bot
2
2
 
3
- Vault-based liquidation keeper for [Torch Market](https://torch.market) on Solana. Generates an agent keypair in-process — no user wallet required. All operations route through a Torch Vault. Built on [torchsdk](https://www.npmjs.com/package/torchsdk) v10.5.0.
3
+ Vault-based liquidation keeper for [Torch Market](https://torch.market) on Solana. Generates an agent keypair in-process — no user wallet required. All operations route through a Torch Vault. Built on [torchsdk](https://www.npmjs.com/package/torchsdk) v10.7.1.
4
4
 
5
5
  ## Install
6
6
 
@@ -35,7 +35,7 @@ This bot:
35
35
 
36
36
  All value flows through the vault. The agent wallet is a stateless controller that holds only gas SOL.
37
37
 
38
- **Off-chain health visibility (torchsdk v10.5.0+):** the SDK projects accrued interest forward to the current slot, so positions that have drifted past the liquidation threshold via interest accrual alone — without any on-chain instruction touching them — show up as `health=liquidatable` immediately. No need for someone else to poke the loan first.
38
+ **Off-chain health visibility (torchsdk v10.7.1+):** the SDK projects accrued interest forward to the current slot, so positions that have drifted past the liquidation threshold via interest accrual alone — without any on-chain instruction touching them — show up as `health=liquidatable` immediately. No need for someone else to poke the loan first.
39
39
 
40
40
  ## Configuration
41
41