n8n-nodes-dexpaprika 0.1.0 → 0.1.1
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 +6 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -29,6 +29,12 @@ In n8n, go to **Settings > Community Nodes > Install**, enter `n8n-nodes-dexpapr
|
|
|
29
29
|
- **List DEXes** - DEXes on a network
|
|
30
30
|
- **Get Stats** - platform-wide totals (chains, DEXes, pools, tokens)
|
|
31
31
|
|
|
32
|
+
## Example
|
|
33
|
+
|
|
34
|
+
**As a normal node.** Add the **DexPaprika** node, set Resource to **Pool** and Operation to **Get Top Pools**, and Network to `base`. Run it, and the node returns the top pools on Base by 24h volume, ready to pass to any downstream node (a message, a spreadsheet, a database).
|
|
35
|
+
|
|
36
|
+
**As an AI Agent tool.** Wire the DexPaprika node into an **AI Agent** node's **Tool** input and prompt the agent with something like "What are the top 5 pools on Base by 24h volume, and what is WETH trading at on Ethereum?" The agent picks the right operations, fills in the parameters, and returns live results.
|
|
37
|
+
|
|
32
38
|
## Credentials
|
|
33
39
|
|
|
34
40
|
None. The DexPaprika API is keyless for public read access. A free registered key or Pro plan raises your rate and monthly quota; see the [rate limits](https://docs.dexpaprika.com/knowledge-base/rate-limits).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-dexpaprika",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "n8n community node for DexPaprika: keyless real-time DEX and on-chain market data across 36 blockchains (pools, token prices, OHLCV, search).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "git+https://github.com/coinpaprika/n8n-nodes-dexpaprika.git"
|
|
25
25
|
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/coinpaprika/n8n-nodes-dexpaprika/issues"
|
|
28
|
+
},
|
|
26
29
|
"engines": {
|
|
27
30
|
"node": ">=20.15"
|
|
28
31
|
},
|