@t2000/cli 0.9.2 → 0.9.5
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 +4 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ t2000 init
|
|
|
108
108
|
|
|
109
109
|
| Command | Description |
|
|
110
110
|
|---------|-------------|
|
|
111
|
-
| `t2000 send <amount>
|
|
111
|
+
| `t2000 send <amount> <asset> [to] <address>` | Send USDC, SUI, or other assets to any Sui address (the `to` keyword is optional) |
|
|
112
112
|
|
|
113
113
|
### Savings & DeFi
|
|
114
114
|
|
|
@@ -219,13 +219,15 @@ Gas is fully automated:
|
|
|
219
219
|
|
|
220
220
|
You never need to manually acquire SUI for gas.
|
|
221
221
|
|
|
222
|
+
All multi-step operations (save with auto-convert, withdraw with auto-swap, rebalance) execute as single atomic Programmable Transaction Blocks (PTBs). If any step fails, the entire transaction reverts.
|
|
223
|
+
|
|
222
224
|
## Protocol Fees
|
|
223
225
|
|
|
224
226
|
| Operation | Fee |
|
|
225
227
|
|-----------|-----|
|
|
226
228
|
| Save | 0.1% |
|
|
227
229
|
| Borrow | 0.05% |
|
|
228
|
-
| Swap | **Free** |
|
|
230
|
+
| Swap (internal) | **Free** |
|
|
229
231
|
| Withdraw | Free |
|
|
230
232
|
| Repay | Free |
|
|
231
233
|
| Send | Free |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "CLI bank account for AI agents on Sui — send, save,
|
|
3
|
+
"version": "0.9.5",
|
|
4
|
+
"description": "CLI bank account for AI agents on Sui — send, save, borrow, rebalance from your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"t2000": "./dist/index.js"
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"commander": "^13",
|
|
38
38
|
"hono": "^4",
|
|
39
39
|
"picocolors": "^1",
|
|
40
|
-
"@t2000/
|
|
41
|
-
"@t2000/
|
|
40
|
+
"@t2000/x402": "0.3.0",
|
|
41
|
+
"@t2000/sdk": "0.9.5"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^20",
|