@injectivelabs/sdk-ts 1.10.45 → 1.10.47
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/cjs/core/modules/gov/msgs/MsgSubmitProposalExpiryFuturesMarketLaunch.d.ts +2 -2
- package/dist/cjs/core/modules/gov/msgs/MsgSubmitProposalPerpetualMarketLaunch.d.ts +1 -1
- package/dist/cjs/core/modules/gov/msgs/MsgSubmitProposalSpotMarketLaunch.d.ts +2 -2
- package/dist/cjs/core/modules/gov/msgs/MsgSubmitProposalSpotMarketParamUpdate.d.ts +2 -2
- package/dist/cjs/core/modules/gov/msgs/MsgSubmitTextProposal.d.ts +2 -2
- package/dist/cjs/core/modules/ibc/msgs/MsgTransfer.d.ts +3 -0
- package/dist/cjs/core/modules/ibc/msgs/MsgTransfer.d.ts.map +1 -1
- package/dist/cjs/core/modules/tx/index.d.ts +2 -0
- package/dist/cjs/core/modules/tx/index.d.ts.map +1 -1
- package/dist/cjs/core/modules/tx/index.js +3 -0
- package/dist/cjs/core/modules/tx/index.js.map +1 -1
- package/dist/cjs/core/modules/wasm/msgs/MsgExecuteContract.d.ts +1 -1
- package/dist/cjs/core/modules/wasm/msgs/MsgMigrateContract.d.ts +1 -1
- package/dist/esm/core/modules/gov/msgs/MsgSubmitProposalExpiryFuturesMarketLaunch.d.ts +2 -2
- package/dist/esm/core/modules/gov/msgs/MsgSubmitProposalPerpetualMarketLaunch.d.ts +1 -1
- package/dist/esm/core/modules/gov/msgs/MsgSubmitProposalSpotMarketLaunch.d.ts +2 -2
- package/dist/esm/core/modules/gov/msgs/MsgSubmitProposalSpotMarketParamUpdate.d.ts +2 -2
- package/dist/esm/core/modules/gov/msgs/MsgSubmitTextProposal.d.ts +2 -2
- package/dist/esm/core/modules/ibc/msgs/MsgTransfer.d.ts +3 -0
- package/dist/esm/core/modules/ibc/msgs/MsgTransfer.d.ts.map +1 -1
- package/dist/esm/core/modules/tx/index.d.ts +2 -0
- package/dist/esm/core/modules/tx/index.d.ts.map +1 -1
- package/dist/esm/core/modules/tx/index.js +2 -0
- package/dist/esm/core/modules/tx/index.js.map +1 -1
- package/dist/esm/core/modules/wasm/msgs/MsgExecuteContract.d.ts +1 -1
- package/dist/esm/core/modules/wasm/msgs/MsgMigrateContract.d.ts +1 -1
- package/package.json +13 -12
|
@@ -48,11 +48,11 @@ export default class MsgSubmitProposalExpiryFuturesMarketLaunch extends MsgBase<
|
|
|
48
48
|
toAmino(): {
|
|
49
49
|
type: string;
|
|
50
50
|
value: {
|
|
51
|
-
proposer: string;
|
|
52
51
|
initial_deposit: {
|
|
53
52
|
denom: string;
|
|
54
53
|
amount: string;
|
|
55
54
|
}[];
|
|
55
|
+
proposer: string;
|
|
56
56
|
content: {
|
|
57
57
|
type_url: string;
|
|
58
58
|
value: any;
|
|
@@ -61,11 +61,11 @@ export default class MsgSubmitProposalExpiryFuturesMarketLaunch extends MsgBase<
|
|
|
61
61
|
};
|
|
62
62
|
toWeb3(): {
|
|
63
63
|
content: any;
|
|
64
|
-
proposer: string;
|
|
65
64
|
initial_deposit: {
|
|
66
65
|
denom: string;
|
|
67
66
|
amount: string;
|
|
68
67
|
}[];
|
|
68
|
+
proposer: string;
|
|
69
69
|
'@type': string;
|
|
70
70
|
};
|
|
71
71
|
toDirectSign(): {
|
|
@@ -49,8 +49,8 @@ export default class MsgSubmitProposalPerpetualMarketLaunch extends MsgBase<MsgS
|
|
|
49
49
|
value: MsgSubmitProposalPerpetualMarketLaunch.Object;
|
|
50
50
|
};
|
|
51
51
|
toWeb3(): {
|
|
52
|
-
proposer: string;
|
|
53
52
|
initialDeposit: CosmosBaseV1Beta1Coin.Coin[];
|
|
53
|
+
proposer: string;
|
|
54
54
|
content: {
|
|
55
55
|
type_url: string;
|
|
56
56
|
value: any;
|
|
@@ -42,11 +42,11 @@ export default class MsgSubmitProposalSpotMarketLaunch extends MsgBase<MsgSubmit
|
|
|
42
42
|
toAmino(): {
|
|
43
43
|
type: string;
|
|
44
44
|
value: {
|
|
45
|
-
proposer: string;
|
|
46
45
|
initial_deposit: {
|
|
47
46
|
denom: string;
|
|
48
47
|
amount: string;
|
|
49
48
|
}[];
|
|
49
|
+
proposer: string;
|
|
50
50
|
content: {
|
|
51
51
|
type_url: string;
|
|
52
52
|
value: any;
|
|
@@ -54,11 +54,11 @@ export default class MsgSubmitProposalSpotMarketLaunch extends MsgBase<MsgSubmit
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
toWeb3(): {
|
|
57
|
-
proposer: string;
|
|
58
57
|
initial_deposit: {
|
|
59
58
|
denom: string;
|
|
60
59
|
amount: string;
|
|
61
60
|
}[];
|
|
61
|
+
proposer: string;
|
|
62
62
|
content: {
|
|
63
63
|
type_url: string;
|
|
64
64
|
value: any;
|
|
@@ -42,11 +42,11 @@ export default class MsgSubmitProposalSpotMarketParamUpdate extends MsgBase<MsgS
|
|
|
42
42
|
toAmino(): {
|
|
43
43
|
type: string;
|
|
44
44
|
value: {
|
|
45
|
-
proposer: string;
|
|
46
45
|
initial_deposit: {
|
|
47
46
|
denom: string;
|
|
48
47
|
amount: string;
|
|
49
48
|
}[];
|
|
49
|
+
proposer: string;
|
|
50
50
|
content: {
|
|
51
51
|
type_url: string;
|
|
52
52
|
value: any;
|
|
@@ -54,11 +54,11 @@ export default class MsgSubmitProposalSpotMarketParamUpdate extends MsgBase<MsgS
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
toWeb3(): {
|
|
57
|
-
proposer: string;
|
|
58
57
|
initial_deposit: {
|
|
59
58
|
denom: string;
|
|
60
59
|
amount: string;
|
|
61
60
|
}[];
|
|
61
|
+
proposer: string;
|
|
62
62
|
content: {
|
|
63
63
|
type_url: string;
|
|
64
64
|
value: any;
|
|
@@ -33,11 +33,11 @@ export default class MsgSubmitTextProposal extends MsgBase<MsgSubmitTextProposal
|
|
|
33
33
|
toAmino(): {
|
|
34
34
|
type: string;
|
|
35
35
|
value: {
|
|
36
|
-
proposer: string;
|
|
37
36
|
initial_deposit: {
|
|
38
37
|
denom: string;
|
|
39
38
|
amount: string;
|
|
40
39
|
}[];
|
|
40
|
+
proposer: string;
|
|
41
41
|
content: {
|
|
42
42
|
type_url: string;
|
|
43
43
|
value: any;
|
|
@@ -45,11 +45,11 @@ export default class MsgSubmitTextProposal extends MsgBase<MsgSubmitTextProposal
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
toWeb3(): {
|
|
48
|
-
proposer: string;
|
|
49
48
|
initial_deposit: {
|
|
50
49
|
denom: string;
|
|
51
50
|
amount: string;
|
|
52
51
|
}[];
|
|
52
|
+
proposer: string;
|
|
53
53
|
content: {
|
|
54
54
|
type_url: string;
|
|
55
55
|
value: any;
|
|
@@ -28,6 +28,9 @@ export default class MsgTransfer extends MsgBase<MsgTransfer.Params, MsgTransfer
|
|
|
28
28
|
toData(): {
|
|
29
29
|
sourcePort: string;
|
|
30
30
|
sourceChannel: string;
|
|
31
|
+
/**
|
|
32
|
+
* @category Messages
|
|
33
|
+
*/
|
|
31
34
|
token: CosmosBaseV1Beta1Coin.Coin | undefined;
|
|
32
35
|
sender: string;
|
|
33
36
|
receiver: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MsgTransfer.d.ts","sourceRoot":"","sources":["../../../../../../src/core/modules/ibc/msgs/MsgTransfer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,EACtB,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,UAAiB,MAAM;QACrB,MAAM,EAAE;YACN,KAAK,EAAE,MAAM,CAAA;YACb,MAAM,EAAE,MAAM,CAAA;SACf,CAAA;QACD,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAChB,SAAS,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE;YACP,cAAc,EAAE,MAAM,CAAA;YACtB,cAAc,EAAE,MAAM,CAAA;SACvB,CAAA;KACF;IAED,KAAY,KAAK,GAAG,2BAA2B,CAAC,WAAW,CAAA;CAC5D;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,OAAO,CAC9C,WAAW,CAAC,MAAM,EAClB,WAAW,CAAC,KAAK,CAClB;IACC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,GAAG,WAAW;IAIjD,OAAO;IA+BP,MAAM
|
|
1
|
+
{"version":3,"file":"MsgTransfer.d.ts","sourceRoot":"","sources":["../../../../../../src/core/modules/ibc/msgs/MsgTransfer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,EACtB,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,UAAiB,MAAM;QACrB,MAAM,EAAE;YACN,KAAK,EAAE,MAAM,CAAA;YACb,MAAM,EAAE,MAAM,CAAA;SACf,CAAA;QACD,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAChB,SAAS,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE;YACP,cAAc,EAAE,MAAM,CAAA;YACtB,cAAc,EAAE,MAAM,CAAA;SACvB,CAAA;KACF;IAED,KAAY,KAAK,GAAG,2BAA2B,CAAC,WAAW,CAAA;CAC5D;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,OAAO,CAC9C,WAAW,CAAC,MAAM,EAClB,WAAW,CAAC,KAAK,CAClB;IACC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,GAAG,WAAW;IAIjD,OAAO;IA+BP,MAAM;;;QA1Cf;;WAEG;;;;;;;;;IAiDM,OAAO;;;;;;;;;;;;;;;;;;;IAeP,MAAM;;;;;;;;;;;;;;;;;IAUN,YAAY;;;;IASZ,QAAQ,IAAI,UAAU;CAK9B"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { CosmosTxV1Beta1Tx } from '@injectivelabs/core-proto-ts';
|
|
1
2
|
export * from './api';
|
|
2
3
|
export * from './tx';
|
|
3
4
|
export * from './utils';
|
|
4
5
|
export * from './types';
|
|
5
6
|
export * from './broadcaster';
|
|
6
7
|
export * from './eip712';
|
|
8
|
+
export { CosmosTxV1Beta1Tx };
|
|
7
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAEhE,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,iBAAiB,EAAE,CAAA"}
|
|
@@ -14,6 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.CosmosTxV1Beta1Tx = void 0;
|
|
18
|
+
const core_proto_ts_1 = require("@injectivelabs/core-proto-ts");
|
|
19
|
+
Object.defineProperty(exports, "CosmosTxV1Beta1Tx", { enumerable: true, get: function () { return core_proto_ts_1.CosmosTxV1Beta1Tx; } });
|
|
17
20
|
__exportStar(require("./api"), exports);
|
|
18
21
|
__exportStar(require("./tx"), exports);
|
|
19
22
|
__exportStar(require("./utils"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,gEAAgE;AASvD,kGATA,iCAAiB,OASA;AAP1B,wCAAqB;AACrB,uCAAoB;AACpB,0CAAuB;AACvB,0CAAuB;AACvB,gDAA6B;AAC7B,2CAAwB"}
|
|
@@ -47,8 +47,8 @@ export default class MsgExecuteContract extends MsgBase<MsgExecuteContract.Param
|
|
|
47
47
|
value: MsgExecuteContract.Object;
|
|
48
48
|
};
|
|
49
49
|
toWeb3(): {
|
|
50
|
-
sender: string;
|
|
51
50
|
funds: CosmosBaseV1Beta1Coin.Coin[];
|
|
51
|
+
sender: string;
|
|
52
52
|
contract: string;
|
|
53
53
|
msg: any;
|
|
54
54
|
'@type': string;
|
|
@@ -48,11 +48,11 @@ export default class MsgSubmitProposalExpiryFuturesMarketLaunch extends MsgBase<
|
|
|
48
48
|
toAmino(): {
|
|
49
49
|
type: string;
|
|
50
50
|
value: {
|
|
51
|
-
proposer: string;
|
|
52
51
|
initial_deposit: {
|
|
53
52
|
denom: string;
|
|
54
53
|
amount: string;
|
|
55
54
|
}[];
|
|
55
|
+
proposer: string;
|
|
56
56
|
content: {
|
|
57
57
|
type_url: string;
|
|
58
58
|
value: any;
|
|
@@ -61,11 +61,11 @@ export default class MsgSubmitProposalExpiryFuturesMarketLaunch extends MsgBase<
|
|
|
61
61
|
};
|
|
62
62
|
toWeb3(): {
|
|
63
63
|
content: any;
|
|
64
|
-
proposer: string;
|
|
65
64
|
initial_deposit: {
|
|
66
65
|
denom: string;
|
|
67
66
|
amount: string;
|
|
68
67
|
}[];
|
|
68
|
+
proposer: string;
|
|
69
69
|
'@type': string;
|
|
70
70
|
};
|
|
71
71
|
toDirectSign(): {
|
|
@@ -49,8 +49,8 @@ export default class MsgSubmitProposalPerpetualMarketLaunch extends MsgBase<MsgS
|
|
|
49
49
|
value: MsgSubmitProposalPerpetualMarketLaunch.Object;
|
|
50
50
|
};
|
|
51
51
|
toWeb3(): {
|
|
52
|
-
proposer: string;
|
|
53
52
|
initialDeposit: CosmosBaseV1Beta1Coin.Coin[];
|
|
53
|
+
proposer: string;
|
|
54
54
|
content: {
|
|
55
55
|
type_url: string;
|
|
56
56
|
value: any;
|
|
@@ -42,11 +42,11 @@ export default class MsgSubmitProposalSpotMarketLaunch extends MsgBase<MsgSubmit
|
|
|
42
42
|
toAmino(): {
|
|
43
43
|
type: string;
|
|
44
44
|
value: {
|
|
45
|
-
proposer: string;
|
|
46
45
|
initial_deposit: {
|
|
47
46
|
denom: string;
|
|
48
47
|
amount: string;
|
|
49
48
|
}[];
|
|
49
|
+
proposer: string;
|
|
50
50
|
content: {
|
|
51
51
|
type_url: string;
|
|
52
52
|
value: any;
|
|
@@ -54,11 +54,11 @@ export default class MsgSubmitProposalSpotMarketLaunch extends MsgBase<MsgSubmit
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
toWeb3(): {
|
|
57
|
-
proposer: string;
|
|
58
57
|
initial_deposit: {
|
|
59
58
|
denom: string;
|
|
60
59
|
amount: string;
|
|
61
60
|
}[];
|
|
61
|
+
proposer: string;
|
|
62
62
|
content: {
|
|
63
63
|
type_url: string;
|
|
64
64
|
value: any;
|
|
@@ -42,11 +42,11 @@ export default class MsgSubmitProposalSpotMarketParamUpdate extends MsgBase<MsgS
|
|
|
42
42
|
toAmino(): {
|
|
43
43
|
type: string;
|
|
44
44
|
value: {
|
|
45
|
-
proposer: string;
|
|
46
45
|
initial_deposit: {
|
|
47
46
|
denom: string;
|
|
48
47
|
amount: string;
|
|
49
48
|
}[];
|
|
49
|
+
proposer: string;
|
|
50
50
|
content: {
|
|
51
51
|
type_url: string;
|
|
52
52
|
value: any;
|
|
@@ -54,11 +54,11 @@ export default class MsgSubmitProposalSpotMarketParamUpdate extends MsgBase<MsgS
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
toWeb3(): {
|
|
57
|
-
proposer: string;
|
|
58
57
|
initial_deposit: {
|
|
59
58
|
denom: string;
|
|
60
59
|
amount: string;
|
|
61
60
|
}[];
|
|
61
|
+
proposer: string;
|
|
62
62
|
content: {
|
|
63
63
|
type_url: string;
|
|
64
64
|
value: any;
|
|
@@ -33,11 +33,11 @@ export default class MsgSubmitTextProposal extends MsgBase<MsgSubmitTextProposal
|
|
|
33
33
|
toAmino(): {
|
|
34
34
|
type: string;
|
|
35
35
|
value: {
|
|
36
|
-
proposer: string;
|
|
37
36
|
initial_deposit: {
|
|
38
37
|
denom: string;
|
|
39
38
|
amount: string;
|
|
40
39
|
}[];
|
|
40
|
+
proposer: string;
|
|
41
41
|
content: {
|
|
42
42
|
type_url: string;
|
|
43
43
|
value: any;
|
|
@@ -45,11 +45,11 @@ export default class MsgSubmitTextProposal extends MsgBase<MsgSubmitTextProposal
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
toWeb3(): {
|
|
48
|
-
proposer: string;
|
|
49
48
|
initial_deposit: {
|
|
50
49
|
denom: string;
|
|
51
50
|
amount: string;
|
|
52
51
|
}[];
|
|
52
|
+
proposer: string;
|
|
53
53
|
content: {
|
|
54
54
|
type_url: string;
|
|
55
55
|
value: any;
|
|
@@ -28,6 +28,9 @@ export default class MsgTransfer extends MsgBase<MsgTransfer.Params, MsgTransfer
|
|
|
28
28
|
toData(): {
|
|
29
29
|
sourcePort: string;
|
|
30
30
|
sourceChannel: string;
|
|
31
|
+
/**
|
|
32
|
+
* @category Messages
|
|
33
|
+
*/
|
|
31
34
|
token: CosmosBaseV1Beta1Coin.Coin | undefined;
|
|
32
35
|
sender: string;
|
|
33
36
|
receiver: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MsgTransfer.d.ts","sourceRoot":"","sources":["../../../../../../src/core/modules/ibc/msgs/MsgTransfer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,EACtB,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,UAAiB,MAAM;QACrB,MAAM,EAAE;YACN,KAAK,EAAE,MAAM,CAAA;YACb,MAAM,EAAE,MAAM,CAAA;SACf,CAAA;QACD,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAChB,SAAS,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE;YACP,cAAc,EAAE,MAAM,CAAA;YACtB,cAAc,EAAE,MAAM,CAAA;SACvB,CAAA;KACF;IAED,KAAY,KAAK,GAAG,2BAA2B,CAAC,WAAW,CAAA;CAC5D;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,OAAO,CAC9C,WAAW,CAAC,MAAM,EAClB,WAAW,CAAC,KAAK,CAClB;IACC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,GAAG,WAAW;IAIjD,OAAO;IA+BP,MAAM
|
|
1
|
+
{"version":3,"file":"MsgTransfer.d.ts","sourceRoot":"","sources":["../../../../../../src/core/modules/ibc/msgs/MsgTransfer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAEvC,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,EACtB,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,UAAiB,MAAM;QACrB,MAAM,EAAE;YACN,KAAK,EAAE,MAAM,CAAA;YACb,MAAM,EAAE,MAAM,CAAA;SACf,CAAA;QACD,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAChB,SAAS,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE;YACP,cAAc,EAAE,MAAM,CAAA;YACtB,cAAc,EAAE,MAAM,CAAA;SACvB,CAAA;KACF;IAED,KAAY,KAAK,GAAG,2BAA2B,CAAC,WAAW,CAAA;CAC5D;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,OAAO,CAC9C,WAAW,CAAC,MAAM,EAClB,WAAW,CAAC,KAAK,CAClB;IACC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,GAAG,WAAW;IAIjD,OAAO;IA+BP,MAAM;;;QA1Cf;;WAEG;;;;;;;;;IAiDM,OAAO;;;;;;;;;;;;;;;;;;;IAeP,MAAM;;;;;;;;;;;;;;;;;IAUN,YAAY;;;;IASZ,QAAQ,IAAI,UAAU;CAK9B"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { CosmosTxV1Beta1Tx } from '@injectivelabs/core-proto-ts';
|
|
1
2
|
export * from './api';
|
|
2
3
|
export * from './tx';
|
|
3
4
|
export * from './utils';
|
|
4
5
|
export * from './types';
|
|
5
6
|
export * from './broadcaster';
|
|
6
7
|
export * from './eip712';
|
|
8
|
+
export { CosmosTxV1Beta1Tx };
|
|
7
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAEhE,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,iBAAiB,EAAE,CAAA"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { CosmosTxV1Beta1Tx } from '@injectivelabs/core-proto-ts';
|
|
1
2
|
export * from './api';
|
|
2
3
|
export * from './tx';
|
|
3
4
|
export * from './utils';
|
|
4
5
|
export * from './types';
|
|
5
6
|
export * from './broadcaster';
|
|
6
7
|
export * from './eip712';
|
|
8
|
+
export { CosmosTxV1Beta1Tx };
|
|
7
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/core/modules/tx/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAEhE,cAAc,OAAO,CAAA;AACrB,cAAc,MAAM,CAAA;AACpB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,iBAAiB,EAAE,CAAA"}
|
|
@@ -47,8 +47,8 @@ export default class MsgExecuteContract extends MsgBase<MsgExecuteContract.Param
|
|
|
47
47
|
value: MsgExecuteContract.Object;
|
|
48
48
|
};
|
|
49
49
|
toWeb3(): {
|
|
50
|
-
sender: string;
|
|
51
50
|
funds: CosmosBaseV1Beta1Coin.Coin[];
|
|
51
|
+
sender: string;
|
|
52
52
|
contract: string;
|
|
53
53
|
msg: any;
|
|
54
54
|
'@type': string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@injectivelabs/sdk-ts",
|
|
3
3
|
"description": "SDK in TypeScript for building Injective applications in a browser, node, and react native environment.",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.47",
|
|
5
5
|
"sideEffects": "false",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"author": {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"~sdk-ts": "dist"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"postinstall": "
|
|
20
|
+
"postinstall": "link-module-alias",
|
|
21
|
+
"prepublish": "shx mkdir -p dist",
|
|
21
22
|
"build": "tsc --build tsconfig.build.json && tsc --build tsconfig.build.esm.json && yarn build:post && link-module-alias",
|
|
22
23
|
"build:watch": "tsc --build -w tsconfig.build.json && tsc -w --build tsconfig.build.esm.json && yarn build:post && link-module-alias",
|
|
23
24
|
"build:post": "shx cp ../../etc/stub/package.json.stub dist/cjs/package.json && shx cp ../../etc/stub/package.esm.json.stub dist/esm/package.json",
|
|
@@ -36,18 +37,18 @@
|
|
|
36
37
|
"@cosmjs/proto-signing": "^0.30.1",
|
|
37
38
|
"@cosmjs/stargate": "^0.30.1",
|
|
38
39
|
"@ethersproject/bytes": "^5.7.0",
|
|
39
|
-
"@injectivelabs/core-proto-ts": "^0.0.
|
|
40
|
-
"@injectivelabs/exceptions": "^1.10.
|
|
40
|
+
"@injectivelabs/core-proto-ts": "^0.0.12",
|
|
41
|
+
"@injectivelabs/exceptions": "^1.10.5",
|
|
41
42
|
"@injectivelabs/grpc-web": "^0.0.1",
|
|
42
43
|
"@injectivelabs/grpc-web-node-http-transport": "^0.0.2",
|
|
43
44
|
"@injectivelabs/grpc-web-react-native-transport": "^0.0.2",
|
|
44
|
-
"@injectivelabs/indexer-proto-ts": "1.10.8-rc.
|
|
45
|
-
"@injectivelabs/mito-proto-ts": "1.0.
|
|
46
|
-
"@injectivelabs/networks": "^1.10.
|
|
47
|
-
"@injectivelabs/test-utils": "^1.10.
|
|
48
|
-
"@injectivelabs/token-metadata": "^1.10.
|
|
49
|
-
"@injectivelabs/ts-types": "^1.10.
|
|
50
|
-
"@injectivelabs/utils": "^1.10.
|
|
45
|
+
"@injectivelabs/indexer-proto-ts": "1.10.8-rc.4",
|
|
46
|
+
"@injectivelabs/mito-proto-ts": "1.0.4",
|
|
47
|
+
"@injectivelabs/networks": "^1.10.7",
|
|
48
|
+
"@injectivelabs/test-utils": "^1.10.2",
|
|
49
|
+
"@injectivelabs/token-metadata": "^1.10.25",
|
|
50
|
+
"@injectivelabs/ts-types": "^1.10.4",
|
|
51
|
+
"@injectivelabs/utils": "^1.10.5",
|
|
51
52
|
"@metamask/eth-sig-util": "^4.0.0",
|
|
52
53
|
"axios": "^0.27.2",
|
|
53
54
|
"bech32": "^2.0.0",
|
|
@@ -68,7 +69,7 @@
|
|
|
68
69
|
"shx": "^0.3.2",
|
|
69
70
|
"snakecase-keys": "^5.4.1"
|
|
70
71
|
},
|
|
71
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "1fbc2577b9278a62d1676041d6e502e12f5880a8",
|
|
72
73
|
"typedoc": {
|
|
73
74
|
"entryPoint": "./src/index.ts",
|
|
74
75
|
"readmeFile": "./README.md",
|