@shapeshiftoss/caip 2.3.0 → 2.4.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/dist/index.d.ts +3 -3
- package/dist/index.js +9 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import * as caip2 from './caip2/caip2';
|
|
|
3
3
|
import * as caip10 from './caip10/caip10';
|
|
4
4
|
import * as caip19 from './caip19/caip19';
|
|
5
5
|
export { adapters, caip2, caip19, caip10 };
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
6
|
+
export * from './caip2/caip2';
|
|
7
|
+
export * from './caip10/caip10';
|
|
8
|
+
export * from './caip19/caip19';
|
package/dist/index.js
CHANGED
|
@@ -22,18 +22,21 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
22
22
|
__setModuleDefault(result, mod);
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
26
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
|
+
};
|
|
25
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
29
|
+
exports.caip10 = exports.caip19 = exports.caip2 = exports.adapters = void 0;
|
|
27
30
|
const adapters = __importStar(require("./adapters"));
|
|
28
31
|
exports.adapters = adapters;
|
|
32
|
+
// TODO: These all go away on the caip breaking change PR
|
|
29
33
|
const caip2 = __importStar(require("./caip2/caip2"));
|
|
30
34
|
exports.caip2 = caip2;
|
|
31
35
|
const caip10 = __importStar(require("./caip10/caip10"));
|
|
32
36
|
exports.caip10 = caip10;
|
|
33
37
|
const caip19 = __importStar(require("./caip19/caip19"));
|
|
34
38
|
exports.caip19 = caip19;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
Object.defineProperty(exports, "AssetReference", { enumerable: true, get: function () { return caip19_1.AssetReference; } });
|
|
39
|
+
// ENDTODO
|
|
40
|
+
__exportStar(require("./caip2/caip2"), exports);
|
|
41
|
+
__exportStar(require("./caip10/caip10"), exports);
|
|
42
|
+
__exportStar(require("./caip19/caip19"), exports);
|