@reverbia/portal 1.0.0-next.20251121113907 → 1.0.0-next.20251124205943
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,20 @@ inference costs.
|
|
|
20
20
|
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
### Accessing the Private Escrow Contract Repository
|
|
24
|
+
|
|
25
|
+
The escrow contract sources live in the private `github.com/zeta-chain/escrow-contract` repository. Configure Go and Git to always use SSH when cloning from `github.com/zeta-chain/*` to avoid authentication errors:
|
|
26
|
+
|
|
27
|
+
1. Set `GOPRIVATE` (note that you can add this to your shell profile):
|
|
28
|
+
```bash
|
|
29
|
+
export GOPRIVATE=github.com/zeta-chain/*
|
|
30
|
+
```
|
|
31
|
+
2. Update your `~/.gitconfig` to prefer the SSH remote for GitHub:
|
|
32
|
+
```ini
|
|
33
|
+
[url "git@github.com:"]
|
|
34
|
+
insteadOf = https://github.com/
|
|
35
|
+
```
|
|
36
|
+
|
|
23
37
|
### Installation
|
|
24
38
|
|
|
25
39
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reverbia/portal",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.20251124205943",
|
|
4
4
|
"description": "AI Portal is a prepaid escrow-based API gateway for wallet-authenticated LLM usage. It provides an OpenAI-compatible API with on-chain settlement for AI inference costs.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|