@t2000/sdk 0.2.4 → 0.2.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 +9 -5
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -213,11 +213,15 @@ pnpm --filter @t2000/sdk test
|
|
|
213
213
|
|
|
214
214
|
## Protocol Fees
|
|
215
215
|
|
|
216
|
-
| Operation | Fee |
|
|
217
|
-
|
|
218
|
-
| Save (deposit) | 0.10% |
|
|
219
|
-
|
|
|
220
|
-
|
|
|
216
|
+
| Operation | Fee | Notes |
|
|
217
|
+
|-----------|-----|-------|
|
|
218
|
+
| Save (deposit) | 0.10% | Protocol fee on deposit |
|
|
219
|
+
| Borrow | 0.05% | Protocol fee on loan |
|
|
220
|
+
| Swap | **Free** | Only standard Cetus pool fees |
|
|
221
|
+
| Withdraw | Free | |
|
|
222
|
+
| Repay | Free | |
|
|
223
|
+
| Send | Free | |
|
|
224
|
+
| Pay (x402) | Free | Agent pays the API price, no t2000 surcharge |
|
|
221
225
|
|
|
222
226
|
Fees are collected by the t2000 protocol treasury on-chain.
|
|
223
227
|
|
package/dist/index.cjs
CHANGED
|
@@ -24,7 +24,7 @@ var AUTO_TOPUP_THRESHOLD = 50000000n;
|
|
|
24
24
|
var AUTO_TOPUP_AMOUNT = 1000000n;
|
|
25
25
|
var AUTO_TOPUP_MIN_USDC = 2000000n;
|
|
26
26
|
var SAVE_FEE_BPS = 10n;
|
|
27
|
-
var SWAP_FEE_BPS =
|
|
27
|
+
var SWAP_FEE_BPS = 0n;
|
|
28
28
|
var BORROW_FEE_BPS = 5n;
|
|
29
29
|
var CLOCK_ID = "0x6";
|
|
30
30
|
var SUPPORTED_ASSETS = {
|