@algovoi/plugin-elizaos 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/elizaos.plugin.json +58 -0
- package/package.json +5 -2
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "algovoi",
|
|
3
|
+
"name": "AlgoVoi Payments",
|
|
4
|
+
"description": "Multi-chain A2A crypto payments — ask for, verify, and poll fiat-denominated payments settling as USDC across Algorand, VOI, Hedera, Stellar, Base, Solana, and Tempo. Non-custodial, x402/MPP/AP2/A2A protocols.",
|
|
5
|
+
"version": "0.1.1",
|
|
6
|
+
"kind": "plugin",
|
|
7
|
+
|
|
8
|
+
"requiredSecrets": ["ALGOVOI_API_KEY"],
|
|
9
|
+
"optionalSecrets": ["ALGOVOI_API_BASE", "ALGOVOI_DEFAULT_NETWORK", "ALGOVOI_DEFAULT_CURRENCY"],
|
|
10
|
+
|
|
11
|
+
"configSchema": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"ALGOVOI_API_KEY": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "Tenant API key from https://dash.algovoi.co.uk/signup"
|
|
17
|
+
},
|
|
18
|
+
"ALGOVOI_API_BASE": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"format": "uri",
|
|
21
|
+
"default": "https://api.algovoi.co.uk"
|
|
22
|
+
},
|
|
23
|
+
"ALGOVOI_DEFAULT_NETWORK": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"default": "algorand_mainnet",
|
|
26
|
+
"description": "Default settlement network (e.g. algorand_mainnet, solana_mainnet)"
|
|
27
|
+
},
|
|
28
|
+
"ALGOVOI_DEFAULT_CURRENCY": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"default": "GBP",
|
|
31
|
+
"description": "Default ISO 4217 currency for new checkouts"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"required": ["ALGOVOI_API_KEY"]
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
"uiHints": {
|
|
38
|
+
"ALGOVOI_API_KEY": {
|
|
39
|
+
"label": "AlgoVoi API Key",
|
|
40
|
+
"type": "password",
|
|
41
|
+
"sensitive": true,
|
|
42
|
+
"help": "Obtain from https://dash.algovoi.co.uk/signup"
|
|
43
|
+
},
|
|
44
|
+
"ALGOVOI_DEFAULT_NETWORK": {
|
|
45
|
+
"label": "Default Network",
|
|
46
|
+
"type": "select",
|
|
47
|
+
"options": [
|
|
48
|
+
"algorand_mainnet", "voi_mainnet", "hedera_mainnet",
|
|
49
|
+
"stellar_mainnet", "base_mainnet", "solana_mainnet", "tempo_mainnet"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"ALGOVOI_DEFAULT_CURRENCY": {
|
|
53
|
+
"label": "Default Currency",
|
|
54
|
+
"type": "string",
|
|
55
|
+
"placeholder": "GBP"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algovoi/plugin-elizaos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Multi-chain agent-to-agent (A2A) crypto payments for ElizaOS — ask, verify, and poll fiat-denominated payments that settle as USDC or native assets across Algorand, VOI, Hedera, Stellar, Base, Solana, and Tempo. Non-custodial.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"README.md",
|
|
18
18
|
"LICENSE",
|
|
19
|
-
"images"
|
|
19
|
+
"images",
|
|
20
|
+
"elizaos.plugin.json"
|
|
20
21
|
],
|
|
21
22
|
"scripts": {
|
|
22
23
|
"build": "tsup --format esm --dts",
|
|
@@ -44,6 +45,8 @@
|
|
|
44
45
|
},
|
|
45
46
|
"keywords": [
|
|
46
47
|
"elizaos",
|
|
48
|
+
"eliza",
|
|
49
|
+
"plugin",
|
|
47
50
|
"elizaos-plugins",
|
|
48
51
|
"ai-agent",
|
|
49
52
|
"payments",
|