@sparkdreamnft/sparkdreamjs 0.0.26 → 0.0.27
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/cosmos/bundle.d.ts +160 -160
- package/cosmos/bundle.js +181 -181
- package/esm/cosmos/bundle.js +181 -181
- package/esm/ibc/bundle.js +105 -105
- package/esm/sparkdream/bundle.js +275 -273
- package/esm/sparkdream/collect/v1/params.js +24 -0
- package/esm/sparkdream/collect/v1/tx.js +216 -1
- package/esm/sparkdream/collect/v1/tx.registry.js +20 -2
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +11 -1
- package/esm/sparkdream/collect/v1/types.js +92 -2
- package/esm/sparkdream/forum/v1/sentinel_activity.js +58 -1
- package/esm/sparkdream/forum/v1/tx.js +1 -1
- package/esm/sparkdream/rep/v1/bonded_role.js +17 -5
- package/esm/sparkdream/rep/v1/genesis.js +17 -1
- package/esm/sparkdream/rep/v1/role_activity.js +670 -0
- package/esm/tendermint/bundle.js +17 -17
- package/ibc/bundle.d.ts +90 -90
- package/ibc/bundle.js +105 -105
- package/package.json +1 -1
- package/sparkdream/bundle.d.ts +7168 -7061
- package/sparkdream/bundle.js +275 -273
- package/sparkdream/collect/v1/params.d.ts +28 -0
- package/sparkdream/collect/v1/params.js +24 -0
- package/sparkdream/collect/v1/tx.d.ts +130 -6
- package/sparkdream/collect/v1/tx.js +220 -3
- package/sparkdream/collect/v1/tx.registry.d.ts +13 -1
- package/sparkdream/collect/v1/tx.registry.js +19 -1
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +10 -1
- package/sparkdream/collect/v1/tx.rpc.msg.js +10 -0
- package/sparkdream/collect/v1/types.d.ts +72 -0
- package/sparkdream/collect/v1/types.js +92 -2
- package/sparkdream/forum/v1/sentinel_activity.d.ts +53 -0
- package/sparkdream/forum/v1/sentinel_activity.js +58 -1
- package/sparkdream/forum/v1/tx.d.ts +1 -1
- package/sparkdream/forum/v1/tx.js +1 -1
- package/sparkdream/rep/v1/bonded_role.d.ts +13 -1
- package/sparkdream/rep/v1/bonded_role.js +17 -5
- package/sparkdream/rep/v1/genesis.d.ts +3 -0
- package/sparkdream/rep/v1/genesis.js +17 -1
- package/sparkdream/rep/v1/role_activity.d.ts +395 -0
- package/sparkdream/rep/v1/role_activity.js +673 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +17 -17
package/tendermint/bundle.js
CHANGED
|
@@ -35,36 +35,36 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.tendermint = void 0;
|
|
37
37
|
//@ts-nocheck
|
|
38
|
-
const
|
|
39
|
-
const
|
|
40
|
-
const
|
|
41
|
-
const
|
|
42
|
-
const
|
|
43
|
-
const
|
|
44
|
-
const
|
|
45
|
-
const
|
|
46
|
-
const
|
|
47
|
-
const
|
|
38
|
+
const _355 = __importStar(require("./abci/types"));
|
|
39
|
+
const _356 = __importStar(require("./crypto/keys"));
|
|
40
|
+
const _357 = __importStar(require("./crypto/proof"));
|
|
41
|
+
const _358 = __importStar(require("./p2p/types"));
|
|
42
|
+
const _359 = __importStar(require("./types/block"));
|
|
43
|
+
const _360 = __importStar(require("./types/evidence"));
|
|
44
|
+
const _361 = __importStar(require("./types/params"));
|
|
45
|
+
const _362 = __importStar(require("./types/types"));
|
|
46
|
+
const _363 = __importStar(require("./types/validator"));
|
|
47
|
+
const _364 = __importStar(require("./version/types"));
|
|
48
48
|
var tendermint;
|
|
49
49
|
(function (tendermint) {
|
|
50
50
|
tendermint.abci = {
|
|
51
|
-
...
|
|
51
|
+
..._355
|
|
52
52
|
};
|
|
53
53
|
tendermint.crypto = {
|
|
54
|
-
...
|
|
55
|
-
...
|
|
54
|
+
..._356,
|
|
55
|
+
..._357
|
|
56
56
|
};
|
|
57
57
|
tendermint.p2p = {
|
|
58
|
-
...
|
|
58
|
+
..._358
|
|
59
59
|
};
|
|
60
60
|
tendermint.types = {
|
|
61
|
-
..._358,
|
|
62
61
|
..._359,
|
|
63
62
|
..._360,
|
|
64
63
|
..._361,
|
|
65
|
-
..._362
|
|
64
|
+
..._362,
|
|
65
|
+
..._363
|
|
66
66
|
};
|
|
67
67
|
tendermint.version = {
|
|
68
|
-
...
|
|
68
|
+
..._364
|
|
69
69
|
};
|
|
70
70
|
})(tendermint || (exports.tendermint = tendermint = {}));
|