solfaces 2.1.2 → 2.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solfaces",
3
- "version": "2.1.2",
3
+ "version": "2.2.0",
4
4
  "description": "Deterministic wallet avatars and names for the Solana ecosystem. SHA-256 name derivation, zero-dependency trait engine with React, vanilla JS, and server-side rendering support.",
5
5
  "author": "https://github.com/jorger3301",
6
6
  "license": "MIT",
@@ -1004,11 +1004,13 @@ def derive_identity(wallet: str) -> dict:
1004
1004
  # Discriminator from bytes 8-9
1005
1005
  discriminator = hex_str[16:20]
1006
1006
 
1007
+ sep = " "
1008
+
1007
1009
  return {
1008
1010
  "short": adj1,
1009
- "name": adj1 + noun1,
1010
- "tag": adj1 + noun1 + "#" + discriminator,
1011
- "full": adj1 + noun1 + "-" + adj2 + noun2,
1011
+ "name": adj1 + sep + noun1,
1012
+ "tag": adj1 + sep + noun1 + "#" + discriminator,
1013
+ "full": adj1 + sep + noun1 + "-" + adj2 + sep + noun2,
1012
1014
  "adjective": adj1,
1013
1015
  "noun": noun1,
1014
1016
  "hash": hex_str,