@unicitylabs/uniclaw 0.1.0 → 0.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/package.json +1 -1
  2. package/src/assets.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unicitylabs/uniclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Unicity wallet identity and encrypted DMs for OpenClaw agents — powered by Sphere SDK",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
package/src/assets.ts CHANGED
@@ -50,9 +50,10 @@ function loadRegistry(): AssetRegistry {
50
50
  const name = entry.name;
51
51
  const symbol = entry.symbol;
52
52
 
53
- // Map both name and symbol (lowercase) to the faucet coin name
53
+ // Map name, symbol (lowercase), and coin id to the faucet coin name
54
54
  aliases.set(name.toLowerCase(), name);
55
55
  aliases.set(symbol.toLowerCase(), name);
56
+ aliases.set(entry.id, name);
56
57
 
57
58
  // Store display symbol and decimals
58
59
  symbols.set(name, symbol);