@svsprotocol/solana 0.1.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/LICENSE +158 -0
- package/README.md +365 -0
- package/dist/action-production-proof-evidence.js +553 -0
- package/dist/adapter-catalog.d.ts +29 -0
- package/dist/adapter-catalog.js +146 -0
- package/dist/adapter-core.d.ts +48 -0
- package/dist/adapter-core.js +249 -0
- package/dist/approval-signature.js +197 -0
- package/dist/base58.js +69 -0
- package/dist/bot-auth.js +50 -0
- package/dist/bot-certification-evidence.js +342 -0
- package/dist/bot-first-action-runbook.js +299 -0
- package/dist/bot-integration-contract.js +41 -0
- package/dist/certified-submit-status.js +176 -0
- package/dist/common.d.ts +1135 -0
- package/dist/elizaos.d.ts +43 -0
- package/dist/elizaos.js +227 -0
- package/dist/goat.d.ts +47 -0
- package/dist/goat.js +261 -0
- package/dist/index.d.ts +330 -0
- package/dist/index.js +128 -0
- package/dist/protocol.d.ts +205 -0
- package/dist/protocol.js +900 -0
- package/dist/receipt.js +51 -0
- package/dist/signed-proof-read-protection.js +495 -0
- package/dist/solana-agent-kit.d.ts +35 -0
- package/dist/solana-agent-kit.js +151 -0
- package/dist/svs-client.js +1232 -0
- package/dist/vercel-ai.d.ts +47 -0
- package/dist/vercel-ai.js +266 -0
- package/dist/verified-agent-adoption-kit.js +471 -0
- package/dist/verified-agent-profile.js +329 -0
- package/dist/verified-agent-registry-consumer.js +421 -0
- package/dist/verified-agent-registry.d.ts +36 -0
- package/dist/verified-agent-registry.js +826 -0
- package/dist/verified-agent-trust-score.js +335 -0
- package/dist/webhooks.js +834 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@svsprotocol/solana",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"description": "Client SDK for SVS: Solana Verification System.",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./protocol": {
|
|
16
|
+
"types": "./dist/protocol.d.ts",
|
|
17
|
+
"default": "./dist/protocol.js",
|
|
18
|
+
"import": "./dist/protocol.js"
|
|
19
|
+
},
|
|
20
|
+
"./adapter-core": {
|
|
21
|
+
"types": "./dist/adapter-core.d.ts",
|
|
22
|
+
"default": "./dist/adapter-core.js",
|
|
23
|
+
"import": "./dist/adapter-core.js"
|
|
24
|
+
},
|
|
25
|
+
"./adapter-catalog": {
|
|
26
|
+
"types": "./dist/adapter-catalog.d.ts",
|
|
27
|
+
"default": "./dist/adapter-catalog.js",
|
|
28
|
+
"import": "./dist/adapter-catalog.js"
|
|
29
|
+
},
|
|
30
|
+
"./elizaos": {
|
|
31
|
+
"types": "./dist/elizaos.d.ts",
|
|
32
|
+
"default": "./dist/elizaos.js",
|
|
33
|
+
"import": "./dist/elizaos.js"
|
|
34
|
+
},
|
|
35
|
+
"./goat": {
|
|
36
|
+
"types": "./dist/goat.d.ts",
|
|
37
|
+
"default": "./dist/goat.js",
|
|
38
|
+
"import": "./dist/goat.js"
|
|
39
|
+
},
|
|
40
|
+
"./solana-agent-kit": {
|
|
41
|
+
"types": "./dist/solana-agent-kit.d.ts",
|
|
42
|
+
"default": "./dist/solana-agent-kit.js",
|
|
43
|
+
"import": "./dist/solana-agent-kit.js"
|
|
44
|
+
},
|
|
45
|
+
"./vercel-ai": {
|
|
46
|
+
"types": "./dist/vercel-ai.d.ts",
|
|
47
|
+
"default": "./dist/vercel-ai.js",
|
|
48
|
+
"import": "./dist/vercel-ai.js"
|
|
49
|
+
},
|
|
50
|
+
"./verified-agent-registry": {
|
|
51
|
+
"types": "./dist/verified-agent-registry.d.ts",
|
|
52
|
+
"default": "./dist/verified-agent-registry.js",
|
|
53
|
+
"import": "./dist/verified-agent-registry.js"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"dist",
|
|
58
|
+
"LICENSE",
|
|
59
|
+
"README.md"
|
|
60
|
+
],
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "node ./scripts/build.js",
|
|
63
|
+
"pack:check": "npm run build && node ./scripts/check-package-hygiene.js",
|
|
64
|
+
"prepack": "npm run build"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"access": "public"
|
|
71
|
+
}
|
|
72
|
+
}
|