@q00bs/agent-sdk 1.0.6 → 1.1.1
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 +2 -2
- package/SKILL.md +828 -0
- package/dist/Q00bsAgent.d.ts +19 -0
- package/dist/Q00bsAgent.d.ts.map +1 -1
- package/dist/Q00bsAgent.js +50 -5
- package/dist/Q00bsAgent.js.map +1 -1
- package/dist/abis/Q00bFactory.d.ts +90 -1
- package/dist/abis/Q00bFactory.d.ts.map +1 -1
- package/dist/abis/Q00bFactory.js +66 -1
- package/dist/abis/Q00bFactory.js.map +1 -1
- package/dist/privy.js +2 -2
- package/dist/privy.js.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1142,7 +1142,7 @@ curl -H "X-Payment: 0xabc...123" \
|
|
|
1142
1142
|
|
|
1143
1143
|
| Tier | Price | Endpoints |
|
|
1144
1144
|
|---------|--------------|----------------------------------------------|
|
|
1145
|
-
| READ |
|
|
1145
|
+
| READ | FREE | GET — trust scores, agent lookups, status (on-chain data is public) |
|
|
1146
1146
|
| WRITE | $0.005 USDC | POST state changes — escrow ops, metadata |
|
|
1147
1147
|
| CREATE | $0.01 USDC | POST new entities — agent/wallet/identity |
|
|
1148
1148
|
|
|
@@ -1360,7 +1360,7 @@ BASE_RPC_URL=https://mainnet.base.org
|
|
|
1360
1360
|
No. Wallets are created and managed by Q00bs' own Privy infrastructure via the Trust API. You just need the Trust API URL (`trustApiUrl`). All wallets created through the SDK appear as users on Q00bs' Privy dashboard. Private keys never appear in your code, env vars, or agent memory.
|
|
1361
1361
|
|
|
1362
1362
|
**Q: How much does it cost to use the Trust API?**
|
|
1363
|
-
|
|
1363
|
+
All GET (read) requests are **free** — on-chain data is publicly readable. Write operations cost $0.005 and entity creation costs $0.01, paid via x402 micropayments in USDC on Base. No API keys or signup required.
|
|
1364
1364
|
|
|
1365
1365
|
**Q: Can agents operate without their human owner?**
|
|
1366
1366
|
Yes. Agents can create their own q00b, register themselves, and build trust through vouching — all without human intervention. The human can be invited later to claim the q00b.
|