torchsdk 1.0.2 → 1.0.3

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 +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "torchsdk",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Torch Market SDK — AI agent toolkit for Solana fair-launch tokens",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -79,7 +79,6 @@ All builders return `{ transaction: Transaction, message: string }`. You sign an
79
79
  | `buildSellTransaction(connection, params)` | Sell tokens back to the bonding curve |
80
80
  | `buildCreateTokenTransaction(connection, params)` | Launch a new token with bonding curve + treasury |
81
81
  | `buildStarTransaction(connection, params)` | Star a token (sybil-resistant support signal) |
82
- | `buildMessageTransaction(connection, params)` | Post a trade-bundled on-chain message |
83
82
  | `buildBorrowTransaction(connection, params)` | Borrow SOL against token collateral |
84
83
  | `buildRepayTransaction(connection, params)` | Repay a loan |
85
84
  | `buildLiquidateTransaction(connection, params)` | Liquidate an underwater position |
@@ -109,9 +108,6 @@ All builders return `{ transaction: Transaction, message: string }`. You sign an
109
108
  // Star
110
109
  { mint: string, user: string }
111
110
 
112
- // Message
113
- { mint: string, sender: string, message: string }
114
-
115
111
  // Borrow
116
112
  { mint: string, borrower: string, collateral_amount: number, sol_to_borrow: number }
117
113