@agentdomain/eliza-plugin 0.6.0 → 0.7.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/NOTICE +5 -0
- package/README.md +10 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.js +248 -319
- package/dist/text-parsing.d.ts +14 -0
- package/dist/text-parsing.js +226 -0
- package/package.json +7 -4
package/NOTICE
ADDED
package/README.md
CHANGED
|
@@ -11,11 +11,19 @@ The plugin gives Eliza agents a complete AgentDomain lifecycle surface:
|
|
|
11
11
|
- Registration quote and x402 registration
|
|
12
12
|
- Registry discovery
|
|
13
13
|
- Agent email send/list/batch, monthly usage, signed inbound webhooks, primary address updates, and Starter/Pro/Enterprise aliases
|
|
14
|
-
- Typed DNS management for all 13
|
|
14
|
+
- Typed DNS management for all 13 supported types, including capabilities, revision-safe batches, and BIND import/export
|
|
15
15
|
- SSL repair/reconfiguration
|
|
16
16
|
- RenewalVault status, funding, and auto-renew
|
|
17
17
|
- Per-agent Premium Plan status and upgrades
|
|
18
18
|
|
|
19
|
-
Configure `AGENTDOMAIN_API_URL` only if you need a custom endpoint. The default is
|
|
19
|
+
Configure `AGENTDOMAIN_API_URL` only if you need a custom endpoint. The default is
|
|
20
|
+
`https://api.agentdomain.app/api/v1`.
|
|
21
|
+
|
|
22
|
+
Set `AGENTDOMAIN_BUILDER_CODE` to your public ERC-8021 app identifier whenever
|
|
23
|
+
the runtime can submit direct Base writes. The value is not a private key.
|
|
24
|
+
Eliza passes it to the SDK and uses it for post-registration auto-renew; missing
|
|
25
|
+
or invalid attribution stops the direct transaction before submission. Reads,
|
|
26
|
+
offchain signatures, Ethereum L1 ENS operations, and standard x402 v2 paid
|
|
27
|
+
requests are not changed.
|
|
20
28
|
|
|
21
29
|
Request the default base URL directly to retrieve AgentDomain's machine-readable API discovery metadata.
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ interface Memory {
|
|
|
11
11
|
text: string;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/** Builds the attributed direct calldata used by Eliza's post-registration auto-renew step. */
|
|
15
|
+
export declare function encodeElizaAutoRenewCalldata(tokenId: bigint, builderCode?: string): `0x${string}`;
|
|
14
16
|
export declare const quoteRegistrationAction: {
|
|
15
17
|
name: string;
|
|
16
18
|
description: string;
|