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.
- package/package.json +1 -1
- package/readme.md +0 -4
package/package.json
CHANGED
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
|
|