@paysponge/sdk 0.1.0 → 0.1.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.
@@ -18,6 +18,7 @@ export const TOOL_DEFINITIONS = [
18
18
  "sepolia",
19
19
  "base-sepolia",
20
20
  "tempo",
21
+ "tempo-mainnet",
21
22
  "solana",
22
23
  "solana-devnet",
23
24
  ],
@@ -123,6 +124,118 @@ export const TOOL_DEFINITIONS = [
123
124
  required: ["chain", "inputToken", "outputToken", "amount"],
124
125
  },
125
126
  },
127
+ {
128
+ name: "jupiter_swap_quote",
129
+ description: "Get a swap quote from Jupiter without executing. Returns pricing details so you can review before committing. Call jupiter_swap_execute with the returned quoteId to execute. Quotes expire in ~30 seconds.",
130
+ input_schema: {
131
+ type: "object",
132
+ properties: {
133
+ chain: {
134
+ type: "string",
135
+ enum: ["solana", "solana-devnet"],
136
+ description: "The Solana network to use",
137
+ },
138
+ inputToken: {
139
+ type: "string",
140
+ description: "The token to swap from (symbol like 'SOL', 'USDC', or mint address)",
141
+ },
142
+ outputToken: {
143
+ type: "string",
144
+ description: "The token to swap to (symbol like 'SOL', 'USDC', or mint address)",
145
+ },
146
+ amount: {
147
+ type: "string",
148
+ description: "The amount of input token to swap",
149
+ },
150
+ slippageBps: {
151
+ type: "number",
152
+ description: "Slippage tolerance in basis points (default: 50 = 0.5%)",
153
+ },
154
+ },
155
+ required: ["chain", "inputToken", "outputToken", "amount"],
156
+ },
157
+ },
158
+ {
159
+ name: "jupiter_swap_execute",
160
+ description: "Execute a previously obtained Jupiter swap quote. Takes a quoteId from jupiter_swap_quote. Quotes expire in ~30 seconds and can only be executed once.",
161
+ input_schema: {
162
+ type: "object",
163
+ properties: {
164
+ quoteId: {
165
+ type: "string",
166
+ description: "The quoteId returned from jupiter_swap_quote",
167
+ },
168
+ },
169
+ required: ["quoteId"],
170
+ },
171
+ },
172
+ {
173
+ name: "base_swap",
174
+ description: "Swap tokens on Base using 0x Protocol aggregator. Finds the best route across DEXs (Uniswap, Aerodrome, etc.) and executes the swap.",
175
+ input_schema: {
176
+ type: "object",
177
+ properties: {
178
+ chain: {
179
+ type: "string",
180
+ enum: ["base", "base-sepolia"],
181
+ description: "The Base network to use",
182
+ },
183
+ inputToken: {
184
+ type: "string",
185
+ description: "The token to swap from (symbol like 'ETH', 'USDC', 'WETH', or token address)",
186
+ },
187
+ outputToken: {
188
+ type: "string",
189
+ description: "The token to swap to (symbol like 'ETH', 'USDC', 'WETH', or token address)",
190
+ },
191
+ amount: {
192
+ type: "string",
193
+ description: "The amount of input token to swap (e.g., '0.1' for 0.1 ETH)",
194
+ },
195
+ slippageBps: {
196
+ type: "number",
197
+ description: "Slippage tolerance in basis points (default: 50 = 0.5%)",
198
+ },
199
+ },
200
+ required: ["chain", "inputToken", "outputToken", "amount"],
201
+ },
202
+ },
203
+ {
204
+ name: "bridge",
205
+ description: "Bridge tokens between different blockchains using deBridge. Supports Ethereum, Base, and Solana.",
206
+ input_schema: {
207
+ type: "object",
208
+ properties: {
209
+ sourceChain: {
210
+ type: "string",
211
+ enum: ["ethereum", "base", "sepolia", "base-sepolia", "solana", "solana-devnet"],
212
+ description: "The source chain to bridge FROM",
213
+ },
214
+ destinationChain: {
215
+ type: "string",
216
+ enum: ["ethereum", "base", "sepolia", "base-sepolia", "solana", "solana-devnet"],
217
+ description: "The destination chain to bridge TO",
218
+ },
219
+ token: {
220
+ type: "string",
221
+ description: "The token to bridge (symbol like 'ETH', 'USDC', 'SOL', or token address)",
222
+ },
223
+ amount: {
224
+ type: "string",
225
+ description: "The amount to bridge (e.g., '0.1' for 0.1 ETH)",
226
+ },
227
+ destinationToken: {
228
+ type: "string",
229
+ description: "Optional: receive a different token on the destination chain",
230
+ },
231
+ recipientAddress: {
232
+ type: "string",
233
+ description: "Optional: send to a different address on the destination chain",
234
+ },
235
+ },
236
+ required: ["sourceChain", "destinationChain", "token", "amount"],
237
+ },
238
+ },
126
239
  {
127
240
  name: "get_solana_tokens",
128
241
  description: "List all SPL tokens held by the agent's Solana wallet, with balances and metadata.",
@@ -174,6 +287,7 @@ export const TOOL_DEFINITIONS = [
174
287
  "sepolia",
175
288
  "base-sepolia",
176
289
  "tempo",
290
+ "tempo-mainnet",
177
291
  "solana",
178
292
  "solana-devnet",
179
293
  ],
@@ -217,7 +331,7 @@ export const TOOL_DEFINITIONS = [
217
331
  },
218
332
  chain: {
219
333
  type: "string",
220
- description: "Chain to request on (default: tempo)",
334
+ description: "Chain to request on (default: tempo or tempo-mainnet based on key mode)",
221
335
  },
222
336
  currency: {
223
337
  type: "string",
@@ -228,103 +342,376 @@ export const TOOL_DEFINITIONS = [
228
342
  },
229
343
  },
230
344
  {
231
- name: "withdraw_to_main_wallet",
232
- description: "Withdraw funds back to the owner's main wallet.",
345
+ name: "claim_signup_bonus",
346
+ description: "Claim a one-time signup bonus that sends 1 USDC on Base to the current agent wallet.",
347
+ input_schema: {
348
+ type: "object",
349
+ properties: {},
350
+ required: [],
351
+ },
352
+ },
353
+ {
354
+ name: "x402_fetch",
355
+ description: "Make an HTTP request with automatic x402 payment handling. " +
356
+ "Handles the entire x402 payment flow: makes the request, if 402 Payment Required is returned " +
357
+ "it extracts payment requirements, creates and signs a USDC payment, retries with Payment-Signature header, " +
358
+ "and returns the final response. Supports Base and Solana payments.",
359
+ input_schema: {
360
+ type: "object",
361
+ properties: {
362
+ url: {
363
+ type: "string",
364
+ description: "The URL to fetch",
365
+ },
366
+ method: {
367
+ type: "string",
368
+ enum: ["GET", "POST", "PUT", "DELETE", "PATCH"],
369
+ description: "HTTP method (default: GET)",
370
+ },
371
+ headers: {
372
+ type: "object",
373
+ description: "Additional HTTP headers to include",
374
+ },
375
+ body: {
376
+ type: "object",
377
+ description: "Request body (for POST/PUT/PATCH). Will be JSON-stringified if not already a string.",
378
+ },
379
+ preferred_chain: {
380
+ type: "string",
381
+ enum: ["base", "solana", "ethereum"],
382
+ description: "Preferred chain for x402 payment. If set, this chain will be tried first. Defaults to Base.",
383
+ },
384
+ },
385
+ required: ["url"],
386
+ },
387
+ },
388
+ {
389
+ name: "mpp_fetch",
390
+ description: "Make an HTTP request with automatic MPP payment handling via Mppx.create. " +
391
+ "If the endpoint returns a 402 Payment challenge, the client creates a Payment credential and retries automatically.",
233
392
  input_schema: {
234
393
  type: "object",
235
394
  properties: {
236
395
  chain: {
396
+ type: "string",
397
+ enum: ["tempo", "tempo-mainnet"],
398
+ description: "Payment chain to use",
399
+ },
400
+ url: {
401
+ type: "string",
402
+ description: "The URL to fetch",
403
+ },
404
+ method: {
405
+ type: "string",
406
+ enum: ["GET", "POST", "PUT", "DELETE", "PATCH"],
407
+ description: "HTTP method (default: GET)",
408
+ },
409
+ headers: {
410
+ type: "object",
411
+ description: "Additional HTTP headers to include",
412
+ },
413
+ body: {
414
+ type: "object",
415
+ description: "Request body (for POST/PUT/PATCH). Will be JSON-stringified if not already a string.",
416
+ },
417
+ },
418
+ required: ["url"],
419
+ },
420
+ },
421
+ {
422
+ name: "hyperliquid",
423
+ description: "Trade perps and spot on Hyperliquid DEX. Uses your agent's EVM wallet for signing (no API keys needed).\n\n" +
424
+ "ACTIONS:\n" +
425
+ " Read: status, positions, orders, fills, markets, ticker, orderbook, funding\n" +
426
+ " Write (requires hyperliquid:trade scope): order, cancel, cancel_all, set_leverage, withdraw, transfer\n\n" +
427
+ "ORDER PARAMETERS (for action=\"order\"):\n" +
428
+ "- symbol: CCXT symbol (e.g., \"BTC/USDC:USDC\" for perps, \"PURR/USDC\" for spot)\n" +
429
+ "- side: \"buy\" or \"sell\"\n" +
430
+ "- type: \"limit\" or \"market\"\n" +
431
+ "- amount: Order size in base currency (e.g., \"0.001\" for BTC)\n" +
432
+ "- price: Limit price (required for limit orders)\n\n" +
433
+ "DEPOSIT: Use the bridge tool to deposit USDC to Hyperliquid (e.g., bridge from base to hyperliquid).",
434
+ input_schema: {
435
+ type: "object",
436
+ properties: {
437
+ action: {
237
438
  type: "string",
238
439
  enum: [
239
- "ethereum",
240
- "base",
241
- "sepolia",
242
- "base-sepolia",
243
- "tempo",
244
- "solana",
245
- "solana-devnet",
440
+ "status",
441
+ "order",
442
+ "cancel",
443
+ "cancel_all",
444
+ "set_leverage",
445
+ "positions",
446
+ "orders",
447
+ "fills",
448
+ "markets",
449
+ "ticker",
450
+ "orderbook",
451
+ "funding",
452
+ "withdraw",
453
+ "transfer",
246
454
  ],
247
- description: "Chain to withdraw from",
455
+ description: "Action to perform",
456
+ },
457
+ symbol: {
458
+ type: "string",
459
+ description: "CCXT symbol (e.g., 'BTC/USDC:USDC' for perps, 'PURR/USDC' for spot)",
460
+ },
461
+ side: {
462
+ type: "string",
463
+ enum: ["buy", "sell"],
464
+ description: "Buy or sell (for orders)",
465
+ },
466
+ type: {
467
+ type: "string",
468
+ enum: ["limit", "market"],
469
+ description: "Order type",
248
470
  },
249
471
  amount: {
250
472
  type: "string",
251
- description: "Amount to withdraw",
473
+ description: "Order size in base currency (e.g., '0.001')",
252
474
  },
253
- currency: {
475
+ price: {
476
+ type: "string",
477
+ description: "Limit price (required for limit orders)",
478
+ },
479
+ reduce_only: {
480
+ type: "boolean",
481
+ description: "Reduce-only order (default: false)",
482
+ },
483
+ trigger_price: {
484
+ type: "string",
485
+ description: "Trigger price for stop-loss/take-profit",
486
+ },
487
+ tp_sl: {
488
+ type: "string",
489
+ enum: ["tp", "sl"],
490
+ description: "Take-profit or stop-loss (required if trigger_price set)",
491
+ },
492
+ tif: {
493
+ type: "string",
494
+ enum: ["GTC", "IOC", "PO"],
495
+ description: "Time-in-force: GTC (default), IOC, PO (post-only)",
496
+ },
497
+ order_id: {
498
+ type: "string",
499
+ description: "Order ID to cancel",
500
+ },
501
+ leverage: {
502
+ type: "number",
503
+ description: "Leverage multiplier (1-100)",
504
+ },
505
+ since: {
506
+ type: "number",
507
+ description: "Start timestamp for fills query (ms)",
508
+ },
509
+ limit: {
510
+ type: "number",
511
+ description: "Max results (fills/orderbook/markets page size)",
512
+ },
513
+ offset: {
514
+ type: "number",
515
+ description: "Pagination offset for markets",
516
+ },
517
+ query: {
518
+ type: "string",
519
+ description: "Filter markets by symbol/base/quote substring",
520
+ },
521
+ market_type: {
522
+ type: "string",
523
+ enum: ["spot", "swap"],
524
+ description: "Filter markets by type",
525
+ },
526
+ full: {
527
+ type: "boolean",
528
+ description: "For markets: true returns full market objects (larger payload)",
529
+ },
530
+ destination: {
531
+ type: "string",
532
+ description: "Destination wallet address for withdraw",
533
+ },
534
+ to_perp: {
535
+ type: "boolean",
536
+ description: "Transfer direction: true = spot→perps, false = perps→spot",
537
+ },
538
+ },
539
+ required: ["action"],
540
+ },
541
+ },
542
+ {
543
+ name: "submit_plan",
544
+ description: "Submit a multi-step plan (swaps, transfers, bridges) for user review and approval. " +
545
+ "Steps execute sequentially and automatically after approval. " +
546
+ "Use this whenever you need to do 2+ related actions together (e.g., swap then bridge, rebalance a portfolio).\n\n" +
547
+ "WORKFLOW: After calling submit_plan, present the plan to the user. " +
548
+ "When the user confirms, call approve_plan with the plan_id.",
549
+ input_schema: {
550
+ type: "object",
551
+ properties: {
552
+ title: {
254
553
  type: "string",
255
- enum: ["native", "USDC"],
256
- description: "Token to withdraw (default: native)",
554
+ description: "Short title for the plan (e.g., 'Q1 Portfolio Rebalance')",
555
+ },
556
+ reasoning: {
557
+ type: "string",
558
+ description: "Your strategy explanation — shown to the user",
559
+ },
560
+ steps: {
561
+ type: "array",
562
+ description: "Ordered list of actions to execute (1-20 steps)",
563
+ items: {
564
+ type: "object",
565
+ properties: {
566
+ type: {
567
+ type: "string",
568
+ enum: ["swap", "transfer", "bridge"],
569
+ description: "Step type",
570
+ },
571
+ input_token: {
572
+ type: "string",
573
+ description: "Token to sell (for swap steps)",
574
+ },
575
+ output_token: {
576
+ type: "string",
577
+ description: "Token to buy (for swap steps)",
578
+ },
579
+ amount: {
580
+ type: "string",
581
+ description: "Amount (human-readable)",
582
+ },
583
+ reason: {
584
+ type: "string",
585
+ description: "Why this step",
586
+ },
587
+ chain: {
588
+ type: "string",
589
+ description: "Chain (for transfer steps)",
590
+ },
591
+ to: {
592
+ type: "string",
593
+ description: "Recipient address (for transfer steps)",
594
+ },
595
+ currency: {
596
+ type: "string",
597
+ description: "Currency (for transfer steps)",
598
+ },
599
+ source_chain: {
600
+ type: "string",
601
+ description: "Source chain (for bridge steps)",
602
+ },
603
+ destination_chain: {
604
+ type: "string",
605
+ description: "Destination chain (for bridge steps)",
606
+ },
607
+ token: {
608
+ type: "string",
609
+ description: "Token to bridge (for bridge steps)",
610
+ },
611
+ destination_token: {
612
+ type: "string",
613
+ description: "Receive different token on destination (for bridge steps)",
614
+ },
615
+ },
616
+ required: ["type", "amount", "reason"],
617
+ },
618
+ },
619
+ },
620
+ required: ["title", "steps"],
621
+ },
622
+ },
623
+ {
624
+ name: "approve_plan",
625
+ description: "Approve and execute a previously submitted plan. " +
626
+ "Use this after submit_plan when the user confirms they want to proceed.",
627
+ input_schema: {
628
+ type: "object",
629
+ properties: {
630
+ plan_id: {
631
+ type: "string",
632
+ description: "The plan ID returned by submit_plan",
633
+ },
634
+ },
635
+ required: ["plan_id"],
636
+ },
637
+ },
638
+ {
639
+ name: "propose_trade",
640
+ description: "Propose a single token swap for user approval. Fetches a quote and creates a pending trade proposal. " +
641
+ "Use only when the user explicitly asks for a proposal or review-before-execute flow. " +
642
+ "For direct execution, use solana_swap or base_swap instead. " +
643
+ "For multi-step flows, use submit_plan instead.",
644
+ input_schema: {
645
+ type: "object",
646
+ properties: {
647
+ input_token: {
648
+ type: "string",
649
+ description: "Token to sell (symbol like 'USDC' or mint address)",
650
+ },
651
+ output_token: {
652
+ type: "string",
653
+ description: "Token to buy (symbol like 'SOL' or mint address)",
654
+ },
655
+ amount: {
656
+ type: "string",
657
+ description: "Amount of input token to trade (human-readable, e.g., '5000')",
658
+ },
659
+ reason: {
660
+ type: "string",
661
+ description: "Your reasoning for this trade — shown to the user",
662
+ },
663
+ },
664
+ required: ["input_token", "output_token", "amount", "reason"],
665
+ },
666
+ },
667
+ {
668
+ name: "generate_siwe",
669
+ description: "Generate a SIWE (Sign-In with Ethereum) signature for authentication. " +
670
+ "Creates an EIP-4361 compliant SIWE message and signs it with the agent's EVM wallet. " +
671
+ "The signature can be used as a bearer token for authenticated API requests.",
672
+ input_schema: {
673
+ type: "object",
674
+ properties: {
675
+ domain: {
676
+ type: "string",
677
+ description: "The domain requesting the signature (e.g., 'api.example.com')",
678
+ },
679
+ uri: {
680
+ type: "string",
681
+ description: "The URI of the resource (e.g., 'https://api.example.com/resource')",
682
+ },
683
+ statement: {
684
+ type: "string",
685
+ description: "Human-readable statement describing the sign-in request",
686
+ },
687
+ nonce: {
688
+ type: "string",
689
+ description: "Unique nonce (auto-generated if not provided)",
690
+ },
691
+ chain_id: {
692
+ type: "number",
693
+ description: "Chain ID for the SIWE message (default: 8453 for Base)",
694
+ },
695
+ expiration_time: {
696
+ type: "string",
697
+ description: "ISO timestamp when the signature expires",
698
+ },
699
+ not_before: {
700
+ type: "string",
701
+ description: "ISO timestamp before which signature is invalid",
702
+ },
703
+ request_id: {
704
+ type: "string",
705
+ description: "Optional request identifier",
706
+ },
707
+ resources: {
708
+ type: "array",
709
+ items: { type: "string" },
710
+ description: "Optional list of resource URIs",
257
711
  },
258
712
  },
259
- required: ["chain", "amount"],
713
+ required: ["domain", "uri"],
260
714
  },
261
715
  },
262
- // x402 paid API tools - temporarily disabled
263
- // {
264
- // name: "sponge",
265
- // description:
266
- // "Call paid APIs via x402 (search, image, predict, crawl, parse, prospect, llm).",
267
- // input_schema: {
268
- // type: "object",
269
- // properties: {
270
- // task: {
271
- // type: "string",
272
- // description: "Task name (search, image, predict, crawl, parse, prospect, llm)",
273
- // },
274
- // },
275
- // required: ["task"],
276
- // },
277
- // },
278
- // {
279
- // name: "create_x402_payment",
280
- // description: "Create a signed x402 payment payload.",
281
- // input_schema: {
282
- // type: "object",
283
- // properties: {
284
- // chain: {
285
- // type: "string",
286
- // description: "Chain to pay on (e.g., base, solana, tempo)",
287
- // },
288
- // to: {
289
- // type: "string",
290
- // description: "Recipient address from 402 response",
291
- // },
292
- // token: {
293
- // type: "string",
294
- // description: "Token address or mint (optional)",
295
- // },
296
- // amount: {
297
- // type: "string",
298
- // description: "Amount to pay",
299
- // },
300
- // decimals: {
301
- // type: "number",
302
- // description: "Token decimals (optional)",
303
- // },
304
- // valid_for_seconds: {
305
- // type: "number",
306
- // description: "Payment validity window in seconds",
307
- // },
308
- // resource_url: {
309
- // type: "string",
310
- // description: "Resource URL for x402 preflight or metadata",
311
- // },
312
- // resource_description: {
313
- // type: "string",
314
- // description: "Resource description",
315
- // },
316
- // fee_payer: {
317
- // type: "string",
318
- // description: "Solana fee payer from 402 response (optional)",
319
- // },
320
- // http_method: {
321
- // type: "string",
322
- // enum: ["GET", "POST"],
323
- // description: "HTTP method used for 402 preflight (default: GET)",
324
- // },
325
- // },
326
- // required: ["chain", "to", "amount"],
327
- // },
328
- // },
329
716
  ];
330
717
  //# sourceMappingURL=definitions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/tools/definitions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/tools/definitions.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.ts","sourceRoot":"","sources":["../../src/tools/executor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAoB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEzE;;;;GAIG;AACH,qBAAa,YAAY;IAErB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,OAAO;gBADP,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE,MAAM;IAGlC;;OAEG;IACH,IAAI,WAAW,IAAI,cAAc,EAAE,CAElC;IAED;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACG,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,UAAU,CAAC;IAehE;;OAEG;YACW,QAAQ;CA2GvB;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY,CAE3E"}
1
+ {"version":3,"file":"executor.d.ts","sourceRoot":"","sources":["../../src/tools/executor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAoB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEzE;;;;GAIG;AACH,qBAAa,YAAY;IAErB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,OAAO;gBADP,IAAI,EAAE,UAAU,EAChB,OAAO,EAAE,MAAM;IAGlC;;OAEG;IACH,IAAI,WAAW,IAAI,cAAc,EAAE,CAElC;IAED;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACG,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,UAAU,CAAC;IAehE;;OAEG;YACW,QAAQ;CA+JvB;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY,CAE3E"}