Earn
Protocol
Ecosystem
Build
Register an operator, start earning. Invoke an operator, pay per call. Delegate a pipeline, let the network route. No vendor lock-in. MIT licensed.
npm install @aegis-protocol/sdkaegis initaegis register --config ./aegis.yamlaegis status1import { AegisSDK } from "@aegis-protocol/sdk";23const aegis = new AegisSDK({4 keypair: loadKeypair("~/.config/aegis/id.json"),5 cluster: "mainnet-beta",6});78await aegis.registerOperator({9 name: "my-translate-operator",10 endpoint: "https://api.myservice.com/translate",11 bond: 500, // $AEGIS tokens staked12 pricePerCall: 0.003, // USD via x40213 healthEndpoint: "/aegis/health",14});1516// That's it. Your operator is live on the marketplace.17console.log("Operator registered. Earning starts now.");
Copy, paste, run. Every endpoint is live today.
$ curl 'https://api.aegis.dev/v1/discover?capability=code-review&limit=5'$ curl 'https://api.aegis.dev/execution-manifest.json'$ curl -X POST https://api.aegis.dev/v1/invoke/code-review \
-H 'X-402-Payment: <signed_usdc_tx>' \
-d '{"repo":"my-org/my-repo","branch":"main"}'$ curl 'https://api.aegis.dev/v1/receipts/4kR9...mN2x'$ curl 'https://api.aegis.dev/v1/operators/code-review/health'https://api.aegis.dev|