@buildaureon/sdk 0.1.8 → 0.1.9
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/CHANGELOG.md +71 -0
- package/README.md +673 -658
- package/config/network.json +6 -6
- package/dist/index.d.ts +31 -26
- package/dist/index.js +30 -20
- package/dist/index.js.map +1 -1
- package/docs/architecture.md +210 -208
- package/docs/auth.md +176 -176
- package/docs/client-api.md +788 -788
- package/docs/data-contracts.md +3 -3
- package/docs/error-model.md +217 -217
- package/docs/integration-guide.md +400 -400
- package/docs/receipt-validation.md +66 -66
- package/docs/security.md +120 -120
- package/docs/transport.md +143 -143
- package/examples/ai-to-objective-to-portfolio/main.ts +1 -1
- package/examples/drift-detect-restore/main.ts +1 -1
- package/examples/e2e-policy-rebalance/main.ts +431 -431
- package/examples/e2e-policy-rebalance/underrun.ts +143 -143
- package/examples/e2e-policy-rebalance/verify-sizing.ts +155 -155
- package/examples/e2e-vault-flow/main.ts +221 -221
- package/examples/full-aureon-loop/main.ts +1 -1
- package/examples/green-vs-plan/main.ts +1 -1
- package/examples/market-event/main.ts +1 -1
- package/examples/portfolio-watch/main.ts +1 -1
- package/examples/quickstart/main.ts +75 -75
- package/examples/receipt-verification/main.ts +1 -1
- package/examples/sdk-demo-terminal/main.ts +2 -2
- package/package.json +2 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Env:
|
|
7
7
|
* AUREON_API_KEY issued developer key (required)
|
|
8
|
-
* AUREON_NETWORK optional; omit for
|
|
8
|
+
* AUREON_NETWORK optional; omit for official API / testnet 46630; set mainnet for chain 4663
|
|
9
9
|
* AUREON_API_URL optional override (must match network if both set)
|
|
10
10
|
*
|
|
11
11
|
* pnpm example:drift-detect-restore
|