@n8n-dev/n8n-nodes-ondo-finance 1.0.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 +100 -0
- package/dist/credentials/OndoFinanceApi.credentials.d.ts +10 -0
- package/dist/credentials/OndoFinanceApi.credentials.js +56 -0
- package/dist/credentials/OndoFinanceApi.credentials.js.map +1 -0
- package/dist/icons/ondo-finance.dark.svg +4 -0
- package/dist/icons/ondo-finance.svg +4 -0
- package/dist/nodes/OndoFinance/OndoFinance.node.d.ts +4 -0
- package/dist/nodes/OndoFinance/OndoFinance.node.js +89 -0
- package/dist/nodes/OndoFinance/OndoFinance.node.js.map +1 -0
- package/dist/nodes/OndoFinance/OndoFinance.node.json +20 -0
- package/dist/nodes/OndoFinance/ondo-finance.dark.svg +4 -0
- package/dist/nodes/OndoFinance/ondo-finance.svg +4 -0
- package/dist/nodes/OndoFinance/resources/assets/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/assets/index.js +701 -0
- package/dist/nodes/OndoFinance/resources/assets/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/attestations/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/attestations/index.js +435 -0
- package/dist/nodes/OndoFinance/resources/attestations/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/chains/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/chains/index.js +216 -0
- package/dist/nodes/OndoFinance/resources/chains/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/index.d.ts +6 -0
- package/dist/nodes/OndoFinance/resources/index.js +16 -0
- package/dist/nodes/OndoFinance/resources/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/limits/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/limits/index.js +171 -0
- package/dist/nodes/OndoFinance/resources/limits/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/status/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/status/index.js +84 -0
- package/dist/nodes/OndoFinance/resources/status/index.js.map +1 -0
- package/dist/nodes/OndoFinance/resources/tickers/index.d.ts +2 -0
- package/dist/nodes/OndoFinance/resources/tickers/index.js +53 -0
- package/dist/nodes/OndoFinance/resources/tickers/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# @n8n-dev/n8n-nodes-ondo-finance
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@n8n-dev/n8n-nodes-ondo-finance)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
**Stop writing ondo-finance API integrations by hand.**
|
|
9
|
+
|
|
10
|
+
Every time you connect n8n to ondo-finance, you waste hours mapping endpoints, defining parameters, and debugging schemas. You copy-paste from docs, fix edge cases, and pray nothing breaks.
|
|
11
|
+
|
|
12
|
+
**What if connecting n8n to ondo-finance took 5 minutes, not half a day?**
|
|
13
|
+
|
|
14
|
+
This node gives you **6+ resources** out of the box: **Attestations**, **Assets**, **Tickers**, **Chains**, **Limits**, and 1 more: with full CRUD operations, typed parameters, and zero manual configuration.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## What You Get
|
|
19
|
+
|
|
20
|
+
- **Zero boilerplate**: Resources, operations, and fields are pre-configured and ready to use
|
|
21
|
+
- **Full CRUD**: Create, read, update, and delete support where the API allows it
|
|
22
|
+
- **Typed parameters**: No more guessing field types
|
|
23
|
+
- **Built-in auth**: API key authentication, ready to go
|
|
24
|
+
- **Declarative**: Native n8n performance, no custom execute() overhead
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Install
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install @n8n-dev/n8n-nodes-ondo-finance
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
**Or in n8n:**
|
|
35
|
+
1. **Settings → Community Nodes → Install**
|
|
36
|
+
2. Search: `@n8n-dev/n8n-nodes-ondo-finance`
|
|
37
|
+
3. Click **Install**
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Quick Start
|
|
42
|
+
|
|
43
|
+
1. Install the node (above)
|
|
44
|
+
2. Add credentials: **ondo-finance API** → paste your API key
|
|
45
|
+
3. Drag the **ondo-finance** node into your workflow
|
|
46
|
+
4. Pick a resource → pick an operation → done.
|
|
47
|
+
|
|
48
|
+
That's it. No configuration files. No code. It just works.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Resources
|
|
53
|
+
|
|
54
|
+
| Resource | Operations |
|
|
55
|
+
|----------|------------|
|
|
56
|
+
| Attestations | POST Request a Mint or Redeem Attestation, POST Request a Soft Attestation Quote |
|
|
57
|
+
| Assets | GET Get Current Prices for All Supported Assets, GET Get Current Price for an Asset, GET Get Enhanced Prices for All Supported Assets, GET Get OHLC (Open, High, Low, Close) Data for an Asset, GET Get Market Data for All Supported Assets, GET Get Market Data for an Asset, GET Get Dividend Information for an Asset, GET Get All Contract Addresses Across Networks, GET Get Contract Addresses for an Asset, GET Get Metadata for All Supported Assets, GET Get Shares Multiplier History for an Asset |
|
|
58
|
+
| Tickers | GET Get Price and Volume Data for All Supported Tickers |
|
|
59
|
+
| Chains | GET Get Token Balances for a User or Token, GET Get Token Info |
|
|
60
|
+
| Limits | GET Get Trading Limits, GET Get Session Limits |
|
|
61
|
+
| Status | GET Get Current Market Status, GET Get Asset Statuses |
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Why This Node?
|
|
66
|
+
|
|
67
|
+
**Without this node:**
|
|
68
|
+
- Hours of manual API integration
|
|
69
|
+
- Copy-pasting from ondo-finance docs
|
|
70
|
+
- Debugging auth, pagination, error handling
|
|
71
|
+
- Maintaining your own client code
|
|
72
|
+
|
|
73
|
+
**With this node:**
|
|
74
|
+
- Install → configure → use. 5 minutes.
|
|
75
|
+
- Auto-generated from the official ondo-finance OpenAPI spec
|
|
76
|
+
- Always up to date when the API changes
|
|
77
|
+
- Native n8n performance
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Auto-Generated
|
|
82
|
+
This node was auto-generated from the official **ondo-finance** OpenAPI specification using
|
|
83
|
+
[@n8n-dev/n8n-openapi-node-ultimate](https://github.com/kelvinzer0/n8n-openapi-node-ultimate),
|
|
84
|
+
then validated against the live API so you get accurate types and real parameters, not guesswork.
|
|
85
|
+
|
|
86
|
+
When the ondo-finance API updates, this node updates too.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Support This Project
|
|
91
|
+
|
|
92
|
+
If this node saved you hours of work, consider supporting continued development, new APIs, better error handling, and faster updates.
|
|
93
|
+
|
|
94
|
+
[](https://n8n-code.github.io/membership/#/eyJ0aXRsZSI6IktlZXAgSXQgTW92aW5nIiwiZGVzYyI6Ik9uZSBkZXZlbG9wZXIgYnVpbHQgYSB0b29sIHRoYXQgYXV0by1nZW5lcmF0ZXNcbm44biBub2RlcyBmcm9tIGFueSBPcGVuQVBJIHNwZWMuXG5cbllvdXIgZG9uYXRpb24gZnVuZHMgbmV3IGZlYXR1cmVzLCBtb3JlIEFQSSBzdXBwb3J0LFxuYW5kIGJldHRlciB0b29saW5nIGZvciBldmVyeSBkZXZlbG9wZXIgYWZ0ZXIgeW91LiIsInRhcmdldCI6NTAwMCwiYWRkcmVzc2VzIjp7ImV0aGVyZXVtIjoiMHhmMDU1NWQ0MGRiRkI0ZTNCZjA3MDQ0MjgyQjc4RjJmRTFmNTFFZjcyIiwic29sYW5hIjoiNlpEVk5BYmpZZExEcXo4cGt3VUNHYllaNVV3QlFranB0QzU1Wk5vTFcybVUifSwiZGlzY29yZCI6Imh0dHBzOi8vZGlzY29yZC5nZy9wdERaOGU0aDkzIn0)
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
MIT © [kelvinzer0](https://github.com/n8n-code)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class OndoFinanceApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
icon: Icon;
|
|
6
|
+
documentationUrl: string;
|
|
7
|
+
properties: INodeProperties[];
|
|
8
|
+
authenticate: IAuthenticateGeneric;
|
|
9
|
+
test: ICredentialTestRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OndoFinanceApi = void 0;
|
|
4
|
+
class OndoFinanceApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'N8nDevOndoFinanceApi';
|
|
7
|
+
this.displayName = 'ondo-finance API';
|
|
8
|
+
this.icon = { light: 'file:../nodes/OndoFinance/ondo-finance.svg', dark: 'file:../nodes/OndoFinance/ondo-finance.dark.svg' };
|
|
9
|
+
this.documentationUrl = '';
|
|
10
|
+
this.properties = [
|
|
11
|
+
{
|
|
12
|
+
displayName: 'Base URL',
|
|
13
|
+
name: 'url',
|
|
14
|
+
type: 'string',
|
|
15
|
+
default: 'https://api.gm.ondo.finance',
|
|
16
|
+
required: true,
|
|
17
|
+
placeholder: 'https://api.gm.ondo.finance',
|
|
18
|
+
description: 'The base URL of your ondo-finance API server',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
displayName: 'API Key',
|
|
22
|
+
name: 'apiKey',
|
|
23
|
+
type: 'string',
|
|
24
|
+
typeOptions: { password: true },
|
|
25
|
+
default: '',
|
|
26
|
+
required: true,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"displayName": "❤️ Keep It Moving: One developer built a tool that auto-generates n8n nodes from any OpenAPI spec. Your donation funds new features, more API support, and better tooling for every developer after you. <a href=\"https://n8n-code.github.io/membership/#/eyJ0aXRsZSI6IktlZXAgSXQgTW92aW5nIiwiZGVzYyI6Ik9uZSBkZXZlbG9wZXIgYnVpbHQgYSB0b29sIHRoYXQgYXV0by1nZW5lcmF0ZXNcbm44biBub2RlcyBmcm9tIGFueSBPcGVuQVBJIHNwZWMuXG5cbllvdXIgZG9uYXRpb24gZnVuZHMgbmV3IGZlYXR1cmVzLCBtb3JlIEFQSSBzdXBwb3J0LFxuYW5kIGJldHRlciB0b29saW5nIGZvciBldmVyeSBkZXZlbG9wZXIgYWZ0ZXIgeW91LiIsInRhcmdldCI6NTAwMCwiYWRkcmVzc2VzIjp7ImV0aGVyZXVtIjoiMHhmMDU1NWQ0MGRiRkI0ZTNCZjA3MDQ0MjgyQjc4RjJmRTFmNTFFZjcyIiwic29sYW5hIjoiNlpEVk5BYmpZZExEcXo4cGt3VUNHYllaNVV3QlFranB0QzU1Wk5vTFcybVUifSwiZGlzY29yZCI6Imh0dHBzOi8vZGlzY29yZC5nZy9wdERaOGU0aDkzIn0\" target=\"_blank\">☕ Buy me a coffee</a>",
|
|
30
|
+
"name": "n8nCodeNotice",
|
|
31
|
+
"type": "notice",
|
|
32
|
+
"default": "",
|
|
33
|
+
"displayOptions": {
|
|
34
|
+
"show": {}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
this.authenticate = {
|
|
39
|
+
type: 'generic',
|
|
40
|
+
properties: {
|
|
41
|
+
headers: {
|
|
42
|
+
'x-api-key': '={{$credentials.apiKey}}',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
this.test = {
|
|
47
|
+
request: {
|
|
48
|
+
baseURL: '={{$credentials.url}}',
|
|
49
|
+
url: '/',
|
|
50
|
+
method: 'GET',
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.OndoFinanceApi = OndoFinanceApi;
|
|
56
|
+
//# sourceMappingURL=OndoFinanceApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OndoFinanceApi.credentials.js","sourceRoot":"","sources":["../../credentials/OndoFinanceApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,cAAc;IAA3B;QACC,SAAI,GAAG,sBAAsB,CAAC;QAE9B,gBAAW,GAAG,kBAAkB,CAAC;QAEjC,SAAI,GAAS,EAAE,KAAK,EAAE,4CAA4C,EAAE,IAAI,EAAE,iDAAiD,EAAE,CAAC;QAE9H,qBAAgB,GAAG,EAAE,CAAC;QAEtB,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,KAAK;gBACX,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,6BAA6B;gBACtC,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,6BAA6B;gBAC1C,WAAW,EAAE,8CAA8C;aAC3D;YACD;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,aAAa,EAAE,k0BAAk0B;gBACj1B,MAAM,EAAE,eAAe;gBACvB,MAAM,EAAE,QAAQ;gBAChB,SAAS,EAAE,EAAE;gBACb,gBAAgB,EAAE;oBACjB,MAAM,EAAE,EAAE;iBACV;aACD;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,WAAW,EAAE,0BAA0B;iBACvC;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,uBAAuB;gBAChC,GAAG,EAAE,GAAG;gBACR,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AAtDD,wCAsDC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OndoFinance = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const attestations_1 = require("./resources/attestations");
|
|
6
|
+
const assets_1 = require("./resources/assets");
|
|
7
|
+
const tickers_1 = require("./resources/tickers");
|
|
8
|
+
const chains_1 = require("./resources/chains");
|
|
9
|
+
const limits_1 = require("./resources/limits");
|
|
10
|
+
const status_1 = require("./resources/status");
|
|
11
|
+
class OndoFinance {
|
|
12
|
+
constructor() {
|
|
13
|
+
this.description = {
|
|
14
|
+
displayName: 'ondo-finance',
|
|
15
|
+
name: 'N8nDevOndoFinance',
|
|
16
|
+
icon: { light: 'file:./ondo-finance.svg', dark: 'file:./ondo-finance.dark.svg' },
|
|
17
|
+
group: ['input'],
|
|
18
|
+
version: 1,
|
|
19
|
+
subtitle: '={{\$parameter["operation"] + ": " + \$parameter["resource"]}}',
|
|
20
|
+
description: 'Ondo Finance institutional-grade tokenized real-world assets platform bridging traditional finance and DeFi protocols',
|
|
21
|
+
defaults: { name: 'ondo-finance' },
|
|
22
|
+
usableAsTool: true,
|
|
23
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
24
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
25
|
+
credentials: [
|
|
26
|
+
{
|
|
27
|
+
name: 'N8nDevOndoFinanceApi',
|
|
28
|
+
required: true,
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
requestDefaults: {
|
|
32
|
+
baseURL: '={{\$credentials.url}}',
|
|
33
|
+
headers: {
|
|
34
|
+
Accept: 'application/json',
|
|
35
|
+
'Content-Type': 'application/json',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
properties: [
|
|
39
|
+
{
|
|
40
|
+
"displayName": "Resource",
|
|
41
|
+
"name": "resource",
|
|
42
|
+
"type": "options",
|
|
43
|
+
"noDataExpression": true,
|
|
44
|
+
"options": [
|
|
45
|
+
{
|
|
46
|
+
"name": "Attestations",
|
|
47
|
+
"value": "Attestations",
|
|
48
|
+
"description": "Get Mint and Redeem Attestations"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "Assets",
|
|
52
|
+
"value": "Assets",
|
|
53
|
+
"description": "Get Asset Price Information"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "Tickers",
|
|
57
|
+
"value": "Tickers",
|
|
58
|
+
"description": "Get Ticker Information"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "Chains",
|
|
62
|
+
"value": "Chains",
|
|
63
|
+
"description": "Get On Chain Data"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "Limits",
|
|
67
|
+
"value": "Limits",
|
|
68
|
+
"description": "Get Trading Limits"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Status",
|
|
72
|
+
"value": "Status",
|
|
73
|
+
"description": "Get Market and Trading Statuses"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"default": ""
|
|
77
|
+
},
|
|
78
|
+
...attestations_1.attestationsDescription,
|
|
79
|
+
...assets_1.assetsDescription,
|
|
80
|
+
...tickers_1.tickersDescription,
|
|
81
|
+
...chains_1.chainsDescription,
|
|
82
|
+
...limits_1.limitsDescription,
|
|
83
|
+
...status_1.statusDescription
|
|
84
|
+
],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.OndoFinance = OndoFinance;
|
|
89
|
+
//# sourceMappingURL=OndoFinance.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OndoFinance.node.js","sourceRoot":"","sources":["../../../nodes/OndoFinance/OndoFinance.node.ts"],"names":[],"mappings":";;;AAAA,+CAA8F;AAC9F,2DAAmE;AACnE,+CAAuD;AACvD,iDAAyD;AACzD,+CAAuD;AACvD,+CAAuD;AACvD,+CAAuD;AAEvD,MAAa,WAAW;IAAxB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,cAAc;YAC3B,IAAI,EAAE,mBAAmB;YACzB,IAAI,EAAE,EAAE,KAAK,EAAE,yBAAyB,EAAE,IAAI,EAAE,8BAA8B,EAAE;YAChF,KAAK,EAAE,CAAC,OAAO,CAAC;YAChB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,gEAAgE;YAC1E,WAAW,EAAE,uHAAuH;YACpI,QAAQ,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;YAClC,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,sBAAsB;oBAC5B,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,eAAe,EAAE;gBAChB,OAAO,EAAE,wBAAwB;gBACjC,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACZ;oBACC,aAAa,EAAE,UAAU;oBACzB,MAAM,EAAE,UAAU;oBAClB,MAAM,EAAE,SAAS;oBACjB,kBAAkB,EAAE,IAAI;oBACxB,SAAS,EAAE;wBACV;4BACC,MAAM,EAAE,cAAc;4BACtB,OAAO,EAAE,cAAc;4BACvB,aAAa,EAAE,kCAAkC;yBACjD;wBACD;4BACC,MAAM,EAAE,QAAQ;4BAChB,OAAO,EAAE,QAAQ;4BACjB,aAAa,EAAE,6BAA6B;yBAC5C;wBACD;4BACC,MAAM,EAAE,SAAS;4BACjB,OAAO,EAAE,SAAS;4BAClB,aAAa,EAAE,wBAAwB;yBACvC;wBACD;4BACC,MAAM,EAAE,QAAQ;4BAChB,OAAO,EAAE,QAAQ;4BACjB,aAAa,EAAE,mBAAmB;yBAClC;wBACD;4BACC,MAAM,EAAE,QAAQ;4BAChB,OAAO,EAAE,QAAQ;4BACjB,aAAa,EAAE,oBAAoB;yBACnC;wBACD;4BACC,MAAM,EAAE,QAAQ;4BAChB,OAAO,EAAE,QAAQ;4BACjB,aAAa,EAAE,iCAAiC;yBAChD;qBACD;oBACD,SAAS,EAAE,EAAE;iBACb;gBACD,GAAG,sCAAuB;gBAC1B,GAAG,0BAAiB;gBACpB,GAAG,4BAAkB;gBACrB,GAAG,0BAAiB;gBACpB,GAAG,0BAAiB;gBACpB,GAAG,0BAAiB;aACnB;SACD,CAAC;IACH,CAAC;CAAA;AA1ED,kCA0EC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "N8nDevOndoFinance",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": [
|
|
6
|
+
"Development"
|
|
7
|
+
],
|
|
8
|
+
"resources": {
|
|
9
|
+
"primaryDocumentation": [
|
|
10
|
+
{
|
|
11
|
+
"url": "https://github.com/n8n-code/n8n-nodes-ondo-finance"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"credentialDocumentation": [
|
|
15
|
+
{
|
|
16
|
+
"url": "https://github.com/n8n-code/n8n-nodes-ondo-finance?tab=readme-ov-file#credentials"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
}
|