@snowbridge/registry 0.2.0 → 0.2.2

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
@@ -54,7 +54,7 @@ function assetRegistryFor(env) {
54
54
  json = local_e2e_registry_json_1.default;
55
55
  break;
56
56
  default:
57
- throw Error(`Unkown env '${env}'`);
57
+ throw Error(`Unknown env '${env}'`);
58
58
  }
59
59
  cache[env] = transformBigInt(json);
60
60
  return cache[env];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowbridge/registry",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Snowbridge Asset Registry",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -20,10 +20,10 @@
20
20
  "ts-node": "^10.9.2",
21
21
  "tsconfig-paths": "^4.2.0",
22
22
  "typescript": "^5.4.5",
23
- "@snowbridge/api": "0.2.0"
23
+ "@snowbridge/api": "0.2.2"
24
24
  },
25
25
  "dependencies": {
26
- "@snowbridge/base-types": "0.2.0"
26
+ "@snowbridge/base-types": "0.2.2"
27
27
  },
28
28
  "scripts": {
29
29
  "build": "tsc --build --force",
package/src/index.ts CHANGED
@@ -56,7 +56,7 @@ export function assetRegistryFor(
56
56
  json = local_e2e;
57
57
  break;
58
58
  default:
59
- throw Error(`Unkown env '${env}'`);
59
+ throw Error(`Unknown env '${env}'`);
60
60
  }
61
61
  cache[env] = transformBigInt(json);
62
62
  return cache[env];