@t2000/sdk 9.9.0 → 9.10.0

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.
@@ -1382,20 +1382,20 @@ declare function addSendToTx(tx: Transaction, coin: TransactionObjectArgument, r
1382
1382
  * Browser-safe (no fs / keyManager imports) so store surfaces can build the
1383
1383
  * buyer-side legs on a zkLogin session key.
1384
1384
  *
1385
- * v2 deployed FRESH on Sui mainnet 2026-07-18 (fix-and-redeploy over upgrade
1386
- * v1 had no users). v2 adds the 2.5% in-contract protocol fee (D-1,
1387
- * SPEC_ACP_SUI §7) snapshotted onto the Job at create, FeeConfig versioning,
1388
- * and bounded windows. Override via env for testnet/dev.
1385
+ * Deployed on Sui mainnet 2026-07-18 (fresh publish after the contract
1386
+ * review 2.5% in-contract protocol fee (D-1, SPEC_ACP_SUI §7) snapshotted
1387
+ * onto the Job at create, FeeConfig versioning, bounded windows). Override
1388
+ * via env for testnet/dev.
1389
1389
  */
1390
- /** The published `a2a_escrow` package id (mainnet, v2). */
1390
+ /** The published `a2a_escrow` package id (mainnet). */
1391
1391
  declare const A2A_ESCROW_PACKAGE_ID: string;
1392
- /** The shared `FeeConfig` object every escrow entry reads (mainnet, v2). */
1392
+ /** The shared `FeeConfig` object every escrow entry reads (mainnet). */
1393
1393
  declare const A2A_ESCROW_FEE_CONFIG_ID: string;
1394
1394
  /** v1 job-value cap in USDC — same instinct as the catalog price cap: the
1395
1395
  * no-arbitration reject-split is only fair at sizes where neither side is
1396
1396
  * incentivized to game it (SPEC_A2A_ESCROW §2). */
1397
1397
  declare const MAX_JOB_USDC = 50;
1398
- /** Contract-enforced create bounds (mirror `escrow.move` v2 — the caps that
1398
+ /** Contract-enforced create bounds (mirror `escrow.move` — the caps that
1399
1399
  * close the v1 unbounded-window overflow lock). */
1400
1400
  declare const MAX_REVIEW_WINDOW_MS = 2592000000;
1401
1401
  declare const MAX_DELIVER_HORIZON_MS = 31536000000;
@@ -1382,20 +1382,20 @@ declare function addSendToTx(tx: Transaction, coin: TransactionObjectArgument, r
1382
1382
  * Browser-safe (no fs / keyManager imports) so store surfaces can build the
1383
1383
  * buyer-side legs on a zkLogin session key.
1384
1384
  *
1385
- * v2 deployed FRESH on Sui mainnet 2026-07-18 (fix-and-redeploy over upgrade
1386
- * v1 had no users). v2 adds the 2.5% in-contract protocol fee (D-1,
1387
- * SPEC_ACP_SUI §7) snapshotted onto the Job at create, FeeConfig versioning,
1388
- * and bounded windows. Override via env for testnet/dev.
1385
+ * Deployed on Sui mainnet 2026-07-18 (fresh publish after the contract
1386
+ * review 2.5% in-contract protocol fee (D-1, SPEC_ACP_SUI §7) snapshotted
1387
+ * onto the Job at create, FeeConfig versioning, bounded windows). Override
1388
+ * via env for testnet/dev.
1389
1389
  */
1390
- /** The published `a2a_escrow` package id (mainnet, v2). */
1390
+ /** The published `a2a_escrow` package id (mainnet). */
1391
1391
  declare const A2A_ESCROW_PACKAGE_ID: string;
1392
- /** The shared `FeeConfig` object every escrow entry reads (mainnet, v2). */
1392
+ /** The shared `FeeConfig` object every escrow entry reads (mainnet). */
1393
1393
  declare const A2A_ESCROW_FEE_CONFIG_ID: string;
1394
1394
  /** v1 job-value cap in USDC — same instinct as the catalog price cap: the
1395
1395
  * no-arbitration reject-split is only fair at sizes where neither side is
1396
1396
  * incentivized to game it (SPEC_A2A_ESCROW §2). */
1397
1397
  declare const MAX_JOB_USDC = 50;
1398
- /** Contract-enforced create bounds (mirror `escrow.move` v2 — the caps that
1398
+ /** Contract-enforced create bounds (mirror `escrow.move` — the caps that
1399
1399
  * close the v1 unbounded-window overflow lock). */
1400
1400
  declare const MAX_REVIEW_WINDOW_MS = 2592000000;
1401
1401
  declare const MAX_DELIVER_HORIZON_MS = 31536000000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2000/sdk",
3
- "version": "9.9.0",
3
+ "version": "9.10.0",
4
4
  "description": "TypeScript SDK for Agent Wallets on Sui — gasless USDC + USDsui transfers, Cetus swap routing, NAVI lending (programmatic), MPP paid API access, zkLogin compatible.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",