-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
190 lines (190 loc) · 7.23 KB
/
registry.json
File metadata and controls
190 lines (190 loc) · 7.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"version": "1.0.0",
"updatedAt": "2025-12-29T08:00:00.000Z",
"containers": {
"0x2fe108c896fbbc20874ff97c7f230c6d06da1e60e731cbedae60125468f8333a": {
"id": "0x2fe108c896fbbc20874ff97c7f230c6d06da1e60e731cbedae60125468f8333a",
"name": "noosphere-hello-world",
"imageName": "ghcr.io/hpp-io/example-hello-world-noosphere:latest",
"port": 8081,
"env": {},
"volumes": [],
"payments": {
"basePrice": "1000",
"token": "0x0000000000000000000000000000000000000000",
"per": "request"
},
"statusCode": "ACTIVE",
"verified": true,
"description": "Simple Hello World example container for testing Noosphere compute requests",
"tags": ["example", "test", "hello-world"],
"inputSchema": {
"type": "object",
"required": ["input"],
"properties": {
"input": { "type": "string", "description": "User input text" }
}
},
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-12-29T08:00:00.000Z"
},
"0x4548979e884d5d80117fbed9525e85279935318bdb71f8b73894cf7230686e93": {
"id": "0x4548979e884d5d80117fbed9525e85279935318bdb71f8b73894cf7230686e93",
"name": "noosphere-llm",
"imageName": "ghcr.io/hpp-io/example-llm-noosphere:latest",
"port": 8082,
"env": {
"LLMROUTER_BASE_URL": "CONFIGURE_YOUR_URL",
"LLMROUTER_API_KEY": "CONFIGURE_YOUR_KEY",
"GEMINI_API_KEY": "CONFIGURE_YOUR_GEMINI_KEY"
},
"requirements": {
"gpu": false,
"memory": "4GB",
"cpu": 2
},
"payments": {
"basePrice": "1000",
"token": "0x0000000000000000000000000000000000000000",
"per": "request"
},
"statusCode": "ACTIVE",
"verified": true,
"description": "LLM (Large Language Model) inference container supporting multiple models via LLM Router and Gemini integration",
"tags": ["ai", "llm", "text-generation", "gemini", "nlp"],
"inputSchema": {
"type": "object",
"required": ["prompt", "model"],
"properties": {
"prompt": { "type": "string", "description": "Text prompt for LLM inference" },
"model": {
"type": "string",
"description": "Model identifier in provider/model-name format",
"default": "openai/gpt-5",
"examples": ["openai/gpt-5", "gemini/gemini-2.5-flash", "anthropic/claude-3"]
},
"image": {
"type": "object",
"description": "Optional base64-encoded image for multimodal input",
"properties": {
"type": { "type": "string", "description": "MIME type (e.g. image/png)" },
"data": { "type": "string", "description": "Base64-encoded image data" }
}
}
}
},
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-12-29T08:00:00.000Z"
},
"0xfbd9e6eaa33e51a09fbe8c1c499d81bc0400ead72ae49acc3c9adb839198ea82": {
"id": "0xfbd9e6eaa33e51a09fbe8c1c499d81bc0400ead72ae49acc3c9adb839198ea82",
"name": "noosphere-freqtrade",
"imageName": "ghcr.io/hpp-io/example-freqtrade-noosphere:latest",
"port": 8084,
"env": {
"EXCHANGE_KEY": "CONFIGURE_YOUR_EXCHANGE_KEY",
"EXCHANGE_SECRET": "CONFIGURE_YOUR_EXCHANGE_SECRET"
},
"requirements": {
"gpu": false,
"memory": "2GB",
"cpu": 2
},
"payments": {
"basePrice": "1000",
"token": "0x0000000000000000000000000000000000000000",
"per": "request"
},
"statusCode": "ACTIVE",
"verified": true,
"description": "Cryptocurrency price prediction container that forecasts prices 3 steps ahead using 15-minute candles",
"tags": ["prediction", "crypto", "freqtrade", "ml", "forecasting"],
"inputSchema": null,
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-12-29T08:00:00.000Z"
},
"0x92ff287334dfa1f984d4105f5b775acdc199a48c27b9d106ded46361df73e0be": {
"id": "0x92ff287334dfa1f984d4105f5b775acdc199a48c27b9d106ded46361df73e0be",
"name": "noosphere-vrng",
"imageName": "ghcr.io/hpp-io/example-vrng-noosphere:latest",
"port": 8085,
"env": {
"MASTER_SECRET": "CONFIGURE_YOUR_MASTER_SECRET"
},
"requirements": {
"gpu": false,
"memory": "2GB",
"cpu": 1
},
"payments": {
"basePrice": "1000",
"token": "0x0000000000000000000000000000000000000000",
"per": "request"
},
"statusCode": "ACTIVE",
"verified": true,
"description": "Verifiable Random Number Generator (VRNG) container for Noosphere VRF — provides cryptographically secure random values for on-chain applications like dice games, lotteries, and NFT minting",
"tags": ["vrf", "random", "vrng", "cryptography", "gaming"],
"inputSchema": null,
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2026-02-23T08:00:00.000Z"
}
},
"verifiers": {
"0x672c325941E3190838523052ebFF122146864EAd": {
"id": "0165878a-594c-a255-338a-dfa4d48449f6",
"name": "Immediate Finalize Verifier",
"verifierAddress": "0x672c325941E3190838523052ebFF122146864EAd",
"chainId": 181228,
"sourceRepository": "https://github.com/hpp-io/noosphere-evm/blob/develop/src/v1_0_0/verifier/ImmediateFinalizeVerifier.sol",
"commitHash": "a1b2c3d4e5f6789012345678901234567890abcd",
"contractInterface": {
"requiredFunctions": [
"verify(bytes calldata proof) returns (bool)"
]
},
"blockExplorerUrl": "https://sepolia-explorer.hpp.io/address/0x672c325941E3190838523052ebFF122146864EAd?tab=contract",
"requiresProof": true,
"proofService": {
"imageName": "ghcr.io/hpp-io/noosphere-proof-creator:test2",
"port": 3000,
"command": "npm start",
"env": {
"RPC_URL": "CONFIGURE_YOUR_RPC_URL",
"CHAIN_ID": "CONFIGURE_CHAIN_ID",
"IMMEDIATE_FINALIZE_VERIFIER_ADDRESS": "CONFIGURE_VERIFIER_ADDRESS",
"PRIVATE_KEY": "CONFIGURE_YOUR_PRIVATE_KEY"
},
"requirements": {
"gpu": false,
"memory": "1GB",
"cpu": 1
}
},
"statusCode": "ACTIVE",
"verified": true,
"description": "Immediate finalization verifier with integrated proof generation service for Noosphere testnet",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-12-29T08:00:00.000Z"
}
},
"deployments": {
"181228": {
"chainId": 181228,
"name": "HPP Sepolia",
"rpcUrl": "https://sepolia.hpp.io",
"wsRpcUrl": "wss://sepolia.hpp.io",
"blockExplorerUrl": "https://sepolia-explorer.hpp.io",
"contracts": {
"router": "0x480a4f7506548773040d47dd7b6372dbf71358d4",
"coordinator": "0xeda4a7957e8f5de6cd6bd747c3ccd5e1c295302c",
"noosphereVRF": "0xb49Cf5e93A225638cD7fa8e4479149f453AE2e39",
"walletFactory": "0xe1ccab0b5deeca0b240f9bbaeccdbcb252934fa7"
},
"routeId": "0x436f6f7264696e61746f725f76312e302e300000000000000000000000000000",
"statusCode": "ACTIVE",
"description": "Noosphere testnet deployment on HPP Sepolia",
"updatedAt": "2026-02-23T08:00:00.000Z"
}
}
}