@ark-us/wasmxjs 0.0.13 → 0.0.14
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/wasmxjs.esm.min.js +2 -2
- package/dist/wasmxjs.esm.min.js.map +1 -1
- package/main/index.js +33 -1
- package/module/index.js +2 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/main/index.js
CHANGED
|
@@ -3,9 +3,40 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
DirectSecp256k1Wallet: true,
|
|
8
|
+
DirectSecp256k1HdWallet: true,
|
|
9
|
+
makeSignBytes: true,
|
|
10
|
+
makeSignDoc: true
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "DirectSecp256k1HdWallet", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _protoSigning.DirectSecp256k1HdWallet;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "DirectSecp256k1Wallet", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _protoSigning.DirectSecp256k1Wallet;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "makeSignBytes", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _protoSigning.makeSignBytes;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "makeSignDoc", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _protoSigning.makeSignDoc;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
6
36
|
var _codegen = require("./codegen");
|
|
7
37
|
Object.keys(_codegen).forEach(function (key) {
|
|
8
38
|
if (key === "default" || key === "__esModule") return;
|
|
39
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
9
40
|
if (key in exports && exports[key] === _codegen[key]) return;
|
|
10
41
|
Object.defineProperty(exports, key, {
|
|
11
42
|
enumerable: true,
|
|
@@ -13,4 +44,5 @@ Object.keys(_codegen).forEach(function (key) {
|
|
|
13
44
|
return _codegen[key];
|
|
14
45
|
}
|
|
15
46
|
});
|
|
16
|
-
});
|
|
47
|
+
});
|
|
48
|
+
var _protoSigning = require("@cosmjs/proto-signing");
|
package/module/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from './codegen';
|
|
1
|
+
export * from './codegen';
|
|
2
|
+
export { DirectSecp256k1Wallet, DirectSecp256k1HdWallet, makeSignBytes, makeSignDoc } from '@cosmjs/proto-signing';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED