NullState Team commited on
Commit
4d0f3f1
Β·
1 Parent(s): 52e82c9

Source mirror: NullState core

Browse files
Files changed (1) hide show
  1. README.md +39 -5
README.md CHANGED
@@ -1,11 +1,45 @@
1
  ---
2
- title: Nullstate Source
3
- emoji: 🐒
4
- colorFrom: blue
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
8
  license: mit
9
  ---
10
 
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)