@namehash/namehash-ui 0.0.0-next-20260126125206 → 0.0.0-next-20260127111250

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/dist/index.js CHANGED
@@ -5152,6 +5152,8 @@ function getEnsMetadataServiceAvatarUrl(name, namespaceId) {
5152
5152
  return new URL(name, `https://metadata.ens.domains/mainnet/avatar/`);
5153
5153
  case ENSNamespaceIds.Sepolia:
5154
5154
  return new URL(name, `https://metadata.ens.domains/sepolia/avatar/`);
5155
+ case ENSNamespaceIds.SepoliaV2:
5156
+ return null;
5155
5157
  case ENSNamespaceIds.EnsTestEnv:
5156
5158
  return null;
5157
5159
  }
@@ -5268,6 +5270,8 @@ function getEnsManagerUrl(namespaceId) {
5268
5270
  return new URL(`https://app.ens.domains/`);
5269
5271
  case ENSNamespaceIds2.Sepolia:
5270
5272
  return new URL(`https://sepolia.app.ens.domains/`);
5273
+ case ENSNamespaceIds2.SepoliaV2:
5274
+ return null;
5271
5275
  case ENSNamespaceIds2.EnsTestEnv:
5272
5276
  return null;
5273
5277
  }