@coinbase/agentkit 0.5.0 → 0.6.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.
- package/README.md +30 -0
- package/dist/action-providers/flaunch/constants.d.ts +1078 -0
- package/dist/action-providers/flaunch/constants.js +709 -0
- package/dist/action-providers/flaunch/flaunchActionProvider.d.ts +102 -0
- package/dist/action-providers/flaunch/flaunchActionProvider.js +519 -0
- package/dist/action-providers/flaunch/flaunchActionProvider.test.d.ts +1 -0
- package/dist/action-providers/flaunch/flaunchActionProvider.test.js +307 -0
- package/dist/action-providers/flaunch/index.d.ts +7 -0
- package/dist/action-providers/flaunch/index.js +23 -0
- package/dist/action-providers/flaunch/schemas.d.ts +77 -0
- package/dist/action-providers/flaunch/schemas.js +71 -0
- package/dist/action-providers/flaunch/types.d.ts +64 -0
- package/dist/action-providers/flaunch/types.js +2 -0
- package/dist/action-providers/flaunch/utils.d.ts +60 -0
- package/dist/action-providers/flaunch/utils.js +507 -0
- package/dist/action-providers/index.d.ts +2 -0
- package/dist/action-providers/index.js +2 -0
- package/dist/action-providers/onramp/index.d.ts +7 -0
- package/dist/action-providers/onramp/index.js +23 -0
- package/dist/action-providers/onramp/onrampActionProvider.d.ts +56 -0
- package/dist/action-providers/onramp/onrampActionProvider.js +109 -0
- package/dist/action-providers/onramp/onrampActionProvider.test.d.ts +1 -0
- package/dist/action-providers/onramp/onrampActionProvider.test.js +97 -0
- package/dist/action-providers/onramp/schemas.d.ts +12 -0
- package/dist/action-providers/onramp/schemas.js +15 -0
- package/dist/action-providers/onramp/types.d.ts +107 -0
- package/dist/action-providers/onramp/types.js +2 -0
- package/dist/action-providers/onramp/utils.d.ts +16 -0
- package/dist/action-providers/onramp/utils.js +56 -0
- package/dist/action-providers/onramp/version.d.ts +2 -0
- package/dist/action-providers/onramp/version.js +5 -0
- package/dist/wallet-providers/cdpWalletProvider.js +20 -10
- package/dist/wallet-providers/cdpWalletProvider.test.js +37 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -265,6 +265,27 @@ const agent = createReactAgent({
|
|
|
265
265
|
</table>
|
|
266
266
|
</details>
|
|
267
267
|
<details>
|
|
268
|
+
<summary><strong>Flaunch</strong></summary>
|
|
269
|
+
<table width="100%">
|
|
270
|
+
<tr>
|
|
271
|
+
<td width="200"><code>flaunch</code></td>
|
|
272
|
+
<td width="768">Launches a new memecoin token with customizable name, symbol, image, and metadata.</td>
|
|
273
|
+
</tr>
|
|
274
|
+
<tr>
|
|
275
|
+
<td width="200"><code>buyCoinWithETHInput</code></td>
|
|
276
|
+
<td width="768">Purchases Flaunch memecoin tokens by specifying ETH input amount with configurable slippage.</td>
|
|
277
|
+
</tr>
|
|
278
|
+
<tr>
|
|
279
|
+
<td width="200"><code>buyCoinWithCoinInput</code></td>
|
|
280
|
+
<td width="768">Purchases Flaunch memecoin tokens by specifying desired token output amount with configurable slippage.</td>
|
|
281
|
+
</tr>
|
|
282
|
+
<tr>
|
|
283
|
+
<td width="200"><code>sellCoin</code></td>
|
|
284
|
+
<td width="768">Sells Flaunch memecoin tokens back to ETH with configurable slippage.</td>
|
|
285
|
+
</tr>
|
|
286
|
+
</table>
|
|
287
|
+
</details>
|
|
288
|
+
<details>
|
|
268
289
|
<summary><strong>Messari</strong></summary>
|
|
269
290
|
<table width="100%">
|
|
270
291
|
<tr>
|
|
@@ -287,6 +308,15 @@ const agent = createReactAgent({
|
|
|
287
308
|
</table>
|
|
288
309
|
</details>
|
|
289
310
|
<details>
|
|
311
|
+
<summary><strong>Onramp</strong></summary>
|
|
312
|
+
<table width="100%">
|
|
313
|
+
<tr>
|
|
314
|
+
<td width="200"><code>get_onramp_buy_url</code></td>
|
|
315
|
+
<td width="768">Gets a URL to purchase cryptocurrency from Coinbase via Debit card or other payment methods.</td>
|
|
316
|
+
</tr>
|
|
317
|
+
</table>
|
|
318
|
+
</details>
|
|
319
|
+
<details>
|
|
290
320
|
<summary><strong>Opensea</strong></summary>
|
|
291
321
|
<table width="100%">
|
|
292
322
|
<tr>
|