ethagent 2.1.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -49,7 +49,7 @@ Once running:
49
49
  The Identity Hub manages everything portable about the agent:
50
50
 
51
51
  - **Public Profile** edits name, description, icon, and the Agent Card.
52
- - **ENS Name** links the agent to a subdomain and authorizes operator wallets to write the subdomain's records.
52
+ - **ENS Name** links the agent to a subdomain under a parent name the owner wallet controls.
53
53
  - **Custody Mode** switches between Simple and Advanced by depositing the token into its Vault or unwrapping it back out.
54
54
  - **Prepare Transfer** stages a dual-wallet snapshot before sending the token externally.
55
55
  - **Refetch Latest** pulls the most recent published snapshot back to local files.
@@ -89,7 +89,7 @@ The vault is an immutable Foundry contract at `contracts/src/Vault.sol`. New vau
89
89
 
90
90
  Subdomains live under a parent name you control, never on root `.eth` names directly. You keep `you.eth`; the agent gets `agent.you.eth`. The split makes the boundary explicit: one address speaks for the human, the other speaks for the agent.
91
91
 
92
- For agents in Advanced custody, the owner wallet approves operator wallets on the resolver once. After that, an approved operator wallet can update the agent's ENS profile pointer (the IPFS CID for the latest agent card) on every snapshot save without another owner signature.
92
+ ENS records stay owner-controlled in both custody modes. Operator wallets in Advanced custody rotate the ERC-8004 token URI through the Vault (see Custody Modes), not ENS. Any ENS text-record update requires an owner signature.
93
93
 
94
94
  Save the token ID + network somewhere safe. ENS records can be cleared and rebuilt; the token ID is the durable handle.
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ethagent",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "A privacy-first AI agent with a portable Ethereum identity",
5
5
  "type": "module",
6
6
  "main": "bin/ethagent.js",