Spaces:
Running
Running
NullState Team commited on
Commit Β·
4d0f3f1
1
Parent(s): 52e82c9
Source mirror: NullState core
Browse files
README.md
CHANGED
|
@@ -1,11 +1,45 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
license: mit
|
| 9 |
---
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: NullState Source
|
| 3 |
+
emoji: π¦
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: gray
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
license: mit
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# NullState Source Code Mirror
|
| 12 |
+
|
| 13 |
+
Open-source payment infrastructure for AI agents. Self-hosted, multi-protocol.
|
| 14 |
+
|
| 15 |
+
**License**: MIT
|
| 16 |
+
|
| 17 |
+
**Full source at**: [github.com/nullstate/nullstate](https://github.com/nullstate/nullstate) _(coming soon)_
|
| 18 |
+
|
| 19 |
+
## Contents
|
| 20 |
+
|
| 21 |
+
- `src/` β Core gateway, protocols, extensions
|
| 22 |
+
- `docs/` β Full documentation
|
| 23 |
+
- `examples/` β Demo store and integration examples
|
| 24 |
+
- `nullstate-website/` β Product website (Docusaurus)
|
| 25 |
+
|
| 26 |
+
## Quick Deploy
|
| 27 |
+
|
| 28 |
+
```bash
|
| 29 |
+
pip install -r requirements.txt --break-system-packages
|
| 30 |
+
python3 src/network/gateway.py
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
Or for the full suite:
|
| 34 |
+
```bash
|
| 35 |
+
python3 src/system/daemon_loop.py
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Protocols
|
| 39 |
+
|
| 40 |
+
- x402 β HTTP 402 micropayments
|
| 41 |
+
- AP2 β RSA-signed agent mandates
|
| 42 |
+
- MCP β Model Context Protocol
|
| 43 |
+
- KYA β Agent identity
|
| 44 |
+
|
| 45 |
+
[Live gateway](https://greensol.me/nullstate) Β· [Documentation](https://greensol.me/nullstate/docs/quickstart)
|