@injectivelabs/exceptions 0.5.1 → 0.5.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.
@@ -0,0 +1,3 @@
1
+ export declare class BlockNotFoundException extends Error {
2
+ }
3
+ //# sourceMappingURL=block-not-found.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"block-not-found.d.ts","sourceRoot":"","sources":["../src/block-not-found.ts"],"names":[],"mappings":"AAAA,qBAAa,sBAAuB,SAAQ,KAAK;CAEhD"}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BlockNotFoundException = void 0;
4
+ class BlockNotFoundException extends Error {
5
+ }
6
+ exports.BlockNotFoundException = BlockNotFoundException;
7
+ //# sourceMappingURL=block-not-found.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"block-not-found.js","sourceRoot":"","sources":["../src/block-not-found.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAuB,SAAQ,KAAK;CAEhD;AAFD,wDAEC"}
package/dist/index.d.ts CHANGED
@@ -3,4 +3,6 @@ export * from './http';
3
3
  export * from './contract';
4
4
  export * from './grpc';
5
5
  export * from './exchange';
6
+ export * from './block-not-found';
7
+ export * from './tx-not-found';
6
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA"}
package/dist/index.js CHANGED
@@ -15,4 +15,6 @@ __exportStar(require("./http"), exports);
15
15
  __exportStar(require("./contract"), exports);
16
16
  __exportStar(require("./grpc"), exports);
17
17
  __exportStar(require("./exchange"), exports);
18
+ __exportStar(require("./block-not-found"), exports);
19
+ __exportStar(require("./tx-not-found"), exports);
18
20
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAsB;AACtB,yCAAsB;AACtB,6CAA0B;AAC1B,yCAAsB;AACtB,6CAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAsB;AACtB,yCAAsB;AACtB,6CAA0B;AAC1B,yCAAsB;AACtB,6CAA0B;AAC1B,oDAAiC;AACjC,iDAA8B"}
@@ -0,0 +1,3 @@
1
+ export declare class TransactionNotFoundException extends Error {
2
+ }
3
+ //# sourceMappingURL=tx-not-found.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tx-not-found.d.ts","sourceRoot":"","sources":["../src/tx-not-found.ts"],"names":[],"mappings":"AAAA,qBAAa,4BAA6B,SAAQ,KAAK;CAEtD"}
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionNotFoundException = void 0;
4
+ class TransactionNotFoundException extends Error {
5
+ }
6
+ exports.TransactionNotFoundException = TransactionNotFoundException;
7
+ //# sourceMappingURL=tx-not-found.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tx-not-found.js","sourceRoot":"","sources":["../src/tx-not-found.ts"],"names":[],"mappings":";;;AAAA,MAAa,4BAA6B,SAAQ,KAAK;CAEtD;AAFD,oEAEC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/exceptions",
3
3
  "description": "List of exceptions that can be reused throughout Injective's projects.",
4
- "version": "0.5.1",
4
+ "version": "0.5.2",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -31,5 +31,5 @@
31
31
  "link-module-alias": "^1.2.0",
32
32
  "shx": "^0.3.2"
33
33
  },
34
- "gitHead": "bcec02b12527b7c395c2a62c815fbe392e7d9cc9"
34
+ "gitHead": "11650d3cd6a05198e355a44f02ba01d54da67799"
35
35
  }