@sparkdreamnft/sparkdreamjs 0.0.4 → 0.0.5

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.
Files changed (88) hide show
  1. package/cosmos/auth/v1beta1/tx.registry.d.ts +23 -0
  2. package/cosmos/auth/v1beta1/tx.registry.js +33 -1
  3. package/cosmos/authz/v1beta1/tx.registry.d.ts +47 -0
  4. package/cosmos/authz/v1beta1/tx.registry.js +69 -1
  5. package/cosmos/bank/v1beta1/tx.registry.d.ts +59 -0
  6. package/cosmos/bank/v1beta1/tx.registry.js +87 -1
  7. package/cosmos/benchmark/v1/tx.registry.d.ts +23 -0
  8. package/cosmos/benchmark/v1/tx.registry.js +33 -1
  9. package/cosmos/bundle.d.ts +957 -0
  10. package/cosmos/circuit/v1/tx.registry.d.ts +47 -0
  11. package/cosmos/circuit/v1/tx.registry.js +69 -1
  12. package/cosmos/consensus/v1/tx.registry.d.ts +23 -0
  13. package/cosmos/consensus/v1/tx.registry.js +33 -1
  14. package/cosmos/counter/v1/tx.registry.d.ts +23 -0
  15. package/cosmos/counter/v1/tx.registry.js +33 -1
  16. package/cosmos/distribution/v1beta1/tx.registry.d.ts +95 -0
  17. package/cosmos/distribution/v1beta1/tx.registry.js +141 -1
  18. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +47 -0
  19. package/cosmos/feegrant/v1beta1/tx.registry.js +69 -1
  20. package/cosmos/gov/v1/tx.registry.d.ts +95 -0
  21. package/cosmos/gov/v1/tx.registry.js +141 -1
  22. package/cosmos/gov/v1beta1/tx.registry.d.ts +59 -0
  23. package/cosmos/gov/v1beta1/tx.registry.js +87 -1
  24. package/cosmos/group/v1/tx.registry.d.ts +179 -0
  25. package/cosmos/group/v1/tx.registry.js +267 -1
  26. package/cosmos/mint/v1beta1/tx.registry.d.ts +23 -0
  27. package/cosmos/mint/v1beta1/tx.registry.js +33 -1
  28. package/cosmos/protocolpool/v1/tx.registry.d.ts +71 -0
  29. package/cosmos/protocolpool/v1/tx.registry.js +105 -1
  30. package/cosmos/staking/v1beta1/tx.registry.d.ts +95 -0
  31. package/cosmos/staking/v1beta1/tx.registry.js +141 -1
  32. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +35 -0
  33. package/cosmos/upgrade/v1beta1/tx.registry.js +51 -1
  34. package/cosmos/vesting/v1beta1/tx.registry.d.ts +47 -0
  35. package/cosmos/vesting/v1beta1/tx.registry.js +69 -1
  36. package/esm/cosmos/auth/v1beta1/tx.registry.js +31 -0
  37. package/esm/cosmos/authz/v1beta1/tx.registry.js +67 -0
  38. package/esm/cosmos/bank/v1beta1/tx.registry.js +85 -0
  39. package/esm/cosmos/benchmark/v1/tx.registry.js +31 -0
  40. package/esm/cosmos/circuit/v1/tx.registry.js +67 -0
  41. package/esm/cosmos/consensus/v1/tx.registry.js +31 -0
  42. package/esm/cosmos/counter/v1/tx.registry.js +31 -0
  43. package/esm/cosmos/distribution/v1beta1/tx.registry.js +139 -0
  44. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +67 -0
  45. package/esm/cosmos/gov/v1/tx.registry.js +139 -0
  46. package/esm/cosmos/gov/v1beta1/tx.registry.js +85 -0
  47. package/esm/cosmos/group/v1/tx.registry.js +265 -0
  48. package/esm/cosmos/mint/v1beta1/tx.registry.js +31 -0
  49. package/esm/cosmos/protocolpool/v1/tx.registry.js +103 -0
  50. package/esm/cosmos/staking/v1beta1/tx.registry.js +139 -0
  51. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +49 -0
  52. package/esm/cosmos/vesting/v1beta1/tx.registry.js +67 -0
  53. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +67 -0
  54. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +49 -0
  55. package/esm/ibc/applications/transfer/v1/tx.registry.js +49 -0
  56. package/esm/ibc/core/channel/v1/tx.registry.js +193 -0
  57. package/esm/ibc/core/channel/v2/tx.registry.js +85 -0
  58. package/esm/ibc/core/client/v1/tx.registry.js +157 -0
  59. package/esm/ibc/core/client/v2/tx.registry.js +49 -0
  60. package/esm/ibc/core/connection/v1/tx.registry.js +103 -0
  61. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +67 -0
  62. package/esm/sparkdream/blog/tx.registry.js +85 -0
  63. package/esm/sparkdream/sparkdream/tx.registry.js +31 -0
  64. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +47 -0
  65. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +69 -1
  66. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +35 -0
  67. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +51 -1
  68. package/ibc/applications/transfer/v1/tx.registry.d.ts +35 -0
  69. package/ibc/applications/transfer/v1/tx.registry.js +51 -1
  70. package/ibc/bundle.d.ts +549 -0
  71. package/ibc/core/channel/v1/tx.registry.d.ts +131 -0
  72. package/ibc/core/channel/v1/tx.registry.js +195 -1
  73. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  74. package/ibc/core/channel/v2/tx.registry.js +87 -1
  75. package/ibc/core/client/v1/tx.registry.d.ts +107 -0
  76. package/ibc/core/client/v1/tx.registry.js +159 -1
  77. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  78. package/ibc/core/client/v2/tx.registry.js +51 -1
  79. package/ibc/core/connection/v1/tx.registry.d.ts +71 -0
  80. package/ibc/core/connection/v1/tx.registry.js +105 -1
  81. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +47 -0
  82. package/ibc/lightclients/wasm/v1/tx.registry.js +69 -1
  83. package/package.json +1 -1
  84. package/sparkdream/blog/tx.registry.d.ts +59 -0
  85. package/sparkdream/blog/tx.registry.js +87 -1
  86. package/sparkdream/bundle.d.ts +78 -0
  87. package/sparkdream/sparkdream/tx.registry.d.ts +23 -0
  88. package/sparkdream/sparkdream/tx.registry.js +33 -1
@@ -1,2 +1,97 @@
1
1
  import { TelescopeGeneratedType } from "../../../types";
2
+ import { Registry } from "@cosmjs/proto-signing";
3
+ import { MsgSubmitProposal, MsgExecLegacyContent, MsgVote, MsgVoteWeighted, MsgDeposit, MsgUpdateParams, MsgCancelProposal } from "./tx";
2
4
  export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
5
+ export declare const load: (protoRegistry: Registry) => void;
6
+ export declare const MessageComposer: {
7
+ encoded: {
8
+ submitProposal(value: MsgSubmitProposal): {
9
+ typeUrl: string;
10
+ value: Uint8Array<ArrayBufferLike>;
11
+ };
12
+ execLegacyContent(value: MsgExecLegacyContent): {
13
+ typeUrl: string;
14
+ value: Uint8Array<ArrayBufferLike>;
15
+ };
16
+ vote(value: MsgVote): {
17
+ typeUrl: string;
18
+ value: Uint8Array<ArrayBufferLike>;
19
+ };
20
+ voteWeighted(value: MsgVoteWeighted): {
21
+ typeUrl: string;
22
+ value: Uint8Array<ArrayBufferLike>;
23
+ };
24
+ deposit(value: MsgDeposit): {
25
+ typeUrl: string;
26
+ value: Uint8Array<ArrayBufferLike>;
27
+ };
28
+ updateParams(value: MsgUpdateParams): {
29
+ typeUrl: string;
30
+ value: Uint8Array<ArrayBufferLike>;
31
+ };
32
+ cancelProposal(value: MsgCancelProposal): {
33
+ typeUrl: string;
34
+ value: Uint8Array<ArrayBufferLike>;
35
+ };
36
+ };
37
+ withTypeUrl: {
38
+ submitProposal(value: MsgSubmitProposal): {
39
+ typeUrl: string;
40
+ value: MsgSubmitProposal;
41
+ };
42
+ execLegacyContent(value: MsgExecLegacyContent): {
43
+ typeUrl: string;
44
+ value: MsgExecLegacyContent;
45
+ };
46
+ vote(value: MsgVote): {
47
+ typeUrl: string;
48
+ value: MsgVote;
49
+ };
50
+ voteWeighted(value: MsgVoteWeighted): {
51
+ typeUrl: string;
52
+ value: MsgVoteWeighted;
53
+ };
54
+ deposit(value: MsgDeposit): {
55
+ typeUrl: string;
56
+ value: MsgDeposit;
57
+ };
58
+ updateParams(value: MsgUpdateParams): {
59
+ typeUrl: string;
60
+ value: MsgUpdateParams;
61
+ };
62
+ cancelProposal(value: MsgCancelProposal): {
63
+ typeUrl: string;
64
+ value: MsgCancelProposal;
65
+ };
66
+ };
67
+ fromPartial: {
68
+ submitProposal(value: MsgSubmitProposal): {
69
+ typeUrl: string;
70
+ value: MsgSubmitProposal;
71
+ };
72
+ execLegacyContent(value: MsgExecLegacyContent): {
73
+ typeUrl: string;
74
+ value: MsgExecLegacyContent;
75
+ };
76
+ vote(value: MsgVote): {
77
+ typeUrl: string;
78
+ value: MsgVote;
79
+ };
80
+ voteWeighted(value: MsgVoteWeighted): {
81
+ typeUrl: string;
82
+ value: MsgVoteWeighted;
83
+ };
84
+ deposit(value: MsgDeposit): {
85
+ typeUrl: string;
86
+ value: MsgDeposit;
87
+ };
88
+ updateParams(value: MsgUpdateParams): {
89
+ typeUrl: string;
90
+ value: MsgUpdateParams;
91
+ };
92
+ cancelProposal(value: MsgCancelProposal): {
93
+ typeUrl: string;
94
+ value: MsgCancelProposal;
95
+ };
96
+ };
97
+ };
@@ -1,5 +1,145 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.registry = void 0;
3
+ exports.MessageComposer = exports.load = exports.registry = void 0;
4
4
  const tx_1 = require("./tx");
5
5
  exports.registry = [["/cosmos.gov.v1.MsgSubmitProposal", tx_1.MsgSubmitProposal], ["/cosmos.gov.v1.MsgExecLegacyContent", tx_1.MsgExecLegacyContent], ["/cosmos.gov.v1.MsgVote", tx_1.MsgVote], ["/cosmos.gov.v1.MsgVoteWeighted", tx_1.MsgVoteWeighted], ["/cosmos.gov.v1.MsgDeposit", tx_1.MsgDeposit], ["/cosmos.gov.v1.MsgUpdateParams", tx_1.MsgUpdateParams], ["/cosmos.gov.v1.MsgCancelProposal", tx_1.MsgCancelProposal]];
6
+ const load = (protoRegistry) => {
7
+ exports.registry.forEach(([typeUrl, mod]) => {
8
+ protoRegistry.register(typeUrl, mod);
9
+ });
10
+ };
11
+ exports.load = load;
12
+ exports.MessageComposer = {
13
+ encoded: {
14
+ submitProposal(value) {
15
+ return {
16
+ typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
17
+ value: tx_1.MsgSubmitProposal.encode(value).finish()
18
+ };
19
+ },
20
+ execLegacyContent(value) {
21
+ return {
22
+ typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
23
+ value: tx_1.MsgExecLegacyContent.encode(value).finish()
24
+ };
25
+ },
26
+ vote(value) {
27
+ return {
28
+ typeUrl: "/cosmos.gov.v1.MsgVote",
29
+ value: tx_1.MsgVote.encode(value).finish()
30
+ };
31
+ },
32
+ voteWeighted(value) {
33
+ return {
34
+ typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
35
+ value: tx_1.MsgVoteWeighted.encode(value).finish()
36
+ };
37
+ },
38
+ deposit(value) {
39
+ return {
40
+ typeUrl: "/cosmos.gov.v1.MsgDeposit",
41
+ value: tx_1.MsgDeposit.encode(value).finish()
42
+ };
43
+ },
44
+ updateParams(value) {
45
+ return {
46
+ typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
47
+ value: tx_1.MsgUpdateParams.encode(value).finish()
48
+ };
49
+ },
50
+ cancelProposal(value) {
51
+ return {
52
+ typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
53
+ value: tx_1.MsgCancelProposal.encode(value).finish()
54
+ };
55
+ }
56
+ },
57
+ withTypeUrl: {
58
+ submitProposal(value) {
59
+ return {
60
+ typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
61
+ value
62
+ };
63
+ },
64
+ execLegacyContent(value) {
65
+ return {
66
+ typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
67
+ value
68
+ };
69
+ },
70
+ vote(value) {
71
+ return {
72
+ typeUrl: "/cosmos.gov.v1.MsgVote",
73
+ value
74
+ };
75
+ },
76
+ voteWeighted(value) {
77
+ return {
78
+ typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
79
+ value
80
+ };
81
+ },
82
+ deposit(value) {
83
+ return {
84
+ typeUrl: "/cosmos.gov.v1.MsgDeposit",
85
+ value
86
+ };
87
+ },
88
+ updateParams(value) {
89
+ return {
90
+ typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
91
+ value
92
+ };
93
+ },
94
+ cancelProposal(value) {
95
+ return {
96
+ typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
97
+ value
98
+ };
99
+ }
100
+ },
101
+ fromPartial: {
102
+ submitProposal(value) {
103
+ return {
104
+ typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
105
+ value: tx_1.MsgSubmitProposal.fromPartial(value)
106
+ };
107
+ },
108
+ execLegacyContent(value) {
109
+ return {
110
+ typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
111
+ value: tx_1.MsgExecLegacyContent.fromPartial(value)
112
+ };
113
+ },
114
+ vote(value) {
115
+ return {
116
+ typeUrl: "/cosmos.gov.v1.MsgVote",
117
+ value: tx_1.MsgVote.fromPartial(value)
118
+ };
119
+ },
120
+ voteWeighted(value) {
121
+ return {
122
+ typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
123
+ value: tx_1.MsgVoteWeighted.fromPartial(value)
124
+ };
125
+ },
126
+ deposit(value) {
127
+ return {
128
+ typeUrl: "/cosmos.gov.v1.MsgDeposit",
129
+ value: tx_1.MsgDeposit.fromPartial(value)
130
+ };
131
+ },
132
+ updateParams(value) {
133
+ return {
134
+ typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
135
+ value: tx_1.MsgUpdateParams.fromPartial(value)
136
+ };
137
+ },
138
+ cancelProposal(value) {
139
+ return {
140
+ typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
141
+ value: tx_1.MsgCancelProposal.fromPartial(value)
142
+ };
143
+ }
144
+ }
145
+ };
@@ -1,2 +1,61 @@
1
1
  import { TelescopeGeneratedType } from "../../../types";
2
+ import { Registry } from "@cosmjs/proto-signing";
3
+ import { MsgSubmitProposal, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx";
2
4
  export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
5
+ export declare const load: (protoRegistry: Registry) => void;
6
+ export declare const MessageComposer: {
7
+ encoded: {
8
+ submitProposal(value: MsgSubmitProposal): {
9
+ typeUrl: string;
10
+ value: Uint8Array<ArrayBufferLike>;
11
+ };
12
+ vote(value: MsgVote): {
13
+ typeUrl: string;
14
+ value: Uint8Array<ArrayBufferLike>;
15
+ };
16
+ voteWeighted(value: MsgVoteWeighted): {
17
+ typeUrl: string;
18
+ value: Uint8Array<ArrayBufferLike>;
19
+ };
20
+ deposit(value: MsgDeposit): {
21
+ typeUrl: string;
22
+ value: Uint8Array<ArrayBufferLike>;
23
+ };
24
+ };
25
+ withTypeUrl: {
26
+ submitProposal(value: MsgSubmitProposal): {
27
+ typeUrl: string;
28
+ value: MsgSubmitProposal;
29
+ };
30
+ vote(value: MsgVote): {
31
+ typeUrl: string;
32
+ value: MsgVote;
33
+ };
34
+ voteWeighted(value: MsgVoteWeighted): {
35
+ typeUrl: string;
36
+ value: MsgVoteWeighted;
37
+ };
38
+ deposit(value: MsgDeposit): {
39
+ typeUrl: string;
40
+ value: MsgDeposit;
41
+ };
42
+ };
43
+ fromPartial: {
44
+ submitProposal(value: MsgSubmitProposal): {
45
+ typeUrl: string;
46
+ value: MsgSubmitProposal;
47
+ };
48
+ vote(value: MsgVote): {
49
+ typeUrl: string;
50
+ value: MsgVote;
51
+ };
52
+ voteWeighted(value: MsgVoteWeighted): {
53
+ typeUrl: string;
54
+ value: MsgVoteWeighted;
55
+ };
56
+ deposit(value: MsgDeposit): {
57
+ typeUrl: string;
58
+ value: MsgDeposit;
59
+ };
60
+ };
61
+ };
@@ -1,5 +1,91 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.registry = void 0;
3
+ exports.MessageComposer = exports.load = exports.registry = void 0;
4
4
  const tx_1 = require("./tx");
5
5
  exports.registry = [["/cosmos.gov.v1beta1.MsgSubmitProposal", tx_1.MsgSubmitProposal], ["/cosmos.gov.v1beta1.MsgVote", tx_1.MsgVote], ["/cosmos.gov.v1beta1.MsgVoteWeighted", tx_1.MsgVoteWeighted], ["/cosmos.gov.v1beta1.MsgDeposit", tx_1.MsgDeposit]];
6
+ const load = (protoRegistry) => {
7
+ exports.registry.forEach(([typeUrl, mod]) => {
8
+ protoRegistry.register(typeUrl, mod);
9
+ });
10
+ };
11
+ exports.load = load;
12
+ exports.MessageComposer = {
13
+ encoded: {
14
+ submitProposal(value) {
15
+ return {
16
+ typeUrl: "/cosmos.gov.v1beta1.MsgSubmitProposal",
17
+ value: tx_1.MsgSubmitProposal.encode(value).finish()
18
+ };
19
+ },
20
+ vote(value) {
21
+ return {
22
+ typeUrl: "/cosmos.gov.v1beta1.MsgVote",
23
+ value: tx_1.MsgVote.encode(value).finish()
24
+ };
25
+ },
26
+ voteWeighted(value) {
27
+ return {
28
+ typeUrl: "/cosmos.gov.v1beta1.MsgVoteWeighted",
29
+ value: tx_1.MsgVoteWeighted.encode(value).finish()
30
+ };
31
+ },
32
+ deposit(value) {
33
+ return {
34
+ typeUrl: "/cosmos.gov.v1beta1.MsgDeposit",
35
+ value: tx_1.MsgDeposit.encode(value).finish()
36
+ };
37
+ }
38
+ },
39
+ withTypeUrl: {
40
+ submitProposal(value) {
41
+ return {
42
+ typeUrl: "/cosmos.gov.v1beta1.MsgSubmitProposal",
43
+ value
44
+ };
45
+ },
46
+ vote(value) {
47
+ return {
48
+ typeUrl: "/cosmos.gov.v1beta1.MsgVote",
49
+ value
50
+ };
51
+ },
52
+ voteWeighted(value) {
53
+ return {
54
+ typeUrl: "/cosmos.gov.v1beta1.MsgVoteWeighted",
55
+ value
56
+ };
57
+ },
58
+ deposit(value) {
59
+ return {
60
+ typeUrl: "/cosmos.gov.v1beta1.MsgDeposit",
61
+ value
62
+ };
63
+ }
64
+ },
65
+ fromPartial: {
66
+ submitProposal(value) {
67
+ return {
68
+ typeUrl: "/cosmos.gov.v1beta1.MsgSubmitProposal",
69
+ value: tx_1.MsgSubmitProposal.fromPartial(value)
70
+ };
71
+ },
72
+ vote(value) {
73
+ return {
74
+ typeUrl: "/cosmos.gov.v1beta1.MsgVote",
75
+ value: tx_1.MsgVote.fromPartial(value)
76
+ };
77
+ },
78
+ voteWeighted(value) {
79
+ return {
80
+ typeUrl: "/cosmos.gov.v1beta1.MsgVoteWeighted",
81
+ value: tx_1.MsgVoteWeighted.fromPartial(value)
82
+ };
83
+ },
84
+ deposit(value) {
85
+ return {
86
+ typeUrl: "/cosmos.gov.v1beta1.MsgDeposit",
87
+ value: tx_1.MsgDeposit.fromPartial(value)
88
+ };
89
+ }
90
+ }
91
+ };
@@ -1,2 +1,181 @@
1
1
  import { TelescopeGeneratedType } from "../../../types";
2
+ import { Registry } from "@cosmjs/proto-signing";
3
+ import { MsgCreateGroup, MsgUpdateGroupMembers, MsgUpdateGroupAdmin, MsgUpdateGroupMetadata, MsgCreateGroupPolicy, MsgCreateGroupWithPolicy, MsgUpdateGroupPolicyAdmin, MsgUpdateGroupPolicyDecisionPolicy, MsgUpdateGroupPolicyMetadata, MsgSubmitProposal, MsgWithdrawProposal, MsgVote, MsgExec, MsgLeaveGroup } from "./tx";
2
4
  export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
5
+ export declare const load: (protoRegistry: Registry) => void;
6
+ export declare const MessageComposer: {
7
+ encoded: {
8
+ createGroup(value: MsgCreateGroup): {
9
+ typeUrl: string;
10
+ value: Uint8Array<ArrayBufferLike>;
11
+ };
12
+ updateGroupMembers(value: MsgUpdateGroupMembers): {
13
+ typeUrl: string;
14
+ value: Uint8Array<ArrayBufferLike>;
15
+ };
16
+ updateGroupAdmin(value: MsgUpdateGroupAdmin): {
17
+ typeUrl: string;
18
+ value: Uint8Array<ArrayBufferLike>;
19
+ };
20
+ updateGroupMetadata(value: MsgUpdateGroupMetadata): {
21
+ typeUrl: string;
22
+ value: Uint8Array<ArrayBufferLike>;
23
+ };
24
+ createGroupPolicy(value: MsgCreateGroupPolicy): {
25
+ typeUrl: string;
26
+ value: Uint8Array<ArrayBufferLike>;
27
+ };
28
+ createGroupWithPolicy(value: MsgCreateGroupWithPolicy): {
29
+ typeUrl: string;
30
+ value: Uint8Array<ArrayBufferLike>;
31
+ };
32
+ updateGroupPolicyAdmin(value: MsgUpdateGroupPolicyAdmin): {
33
+ typeUrl: string;
34
+ value: Uint8Array<ArrayBufferLike>;
35
+ };
36
+ updateGroupPolicyDecisionPolicy(value: MsgUpdateGroupPolicyDecisionPolicy): {
37
+ typeUrl: string;
38
+ value: Uint8Array<ArrayBufferLike>;
39
+ };
40
+ updateGroupPolicyMetadata(value: MsgUpdateGroupPolicyMetadata): {
41
+ typeUrl: string;
42
+ value: Uint8Array<ArrayBufferLike>;
43
+ };
44
+ submitProposal(value: MsgSubmitProposal): {
45
+ typeUrl: string;
46
+ value: Uint8Array<ArrayBufferLike>;
47
+ };
48
+ withdrawProposal(value: MsgWithdrawProposal): {
49
+ typeUrl: string;
50
+ value: Uint8Array<ArrayBufferLike>;
51
+ };
52
+ vote(value: MsgVote): {
53
+ typeUrl: string;
54
+ value: Uint8Array<ArrayBufferLike>;
55
+ };
56
+ exec(value: MsgExec): {
57
+ typeUrl: string;
58
+ value: Uint8Array<ArrayBufferLike>;
59
+ };
60
+ leaveGroup(value: MsgLeaveGroup): {
61
+ typeUrl: string;
62
+ value: Uint8Array<ArrayBufferLike>;
63
+ };
64
+ };
65
+ withTypeUrl: {
66
+ createGroup(value: MsgCreateGroup): {
67
+ typeUrl: string;
68
+ value: MsgCreateGroup;
69
+ };
70
+ updateGroupMembers(value: MsgUpdateGroupMembers): {
71
+ typeUrl: string;
72
+ value: MsgUpdateGroupMembers;
73
+ };
74
+ updateGroupAdmin(value: MsgUpdateGroupAdmin): {
75
+ typeUrl: string;
76
+ value: MsgUpdateGroupAdmin;
77
+ };
78
+ updateGroupMetadata(value: MsgUpdateGroupMetadata): {
79
+ typeUrl: string;
80
+ value: MsgUpdateGroupMetadata;
81
+ };
82
+ createGroupPolicy(value: MsgCreateGroupPolicy): {
83
+ typeUrl: string;
84
+ value: MsgCreateGroupPolicy;
85
+ };
86
+ createGroupWithPolicy(value: MsgCreateGroupWithPolicy): {
87
+ typeUrl: string;
88
+ value: MsgCreateGroupWithPolicy;
89
+ };
90
+ updateGroupPolicyAdmin(value: MsgUpdateGroupPolicyAdmin): {
91
+ typeUrl: string;
92
+ value: MsgUpdateGroupPolicyAdmin;
93
+ };
94
+ updateGroupPolicyDecisionPolicy(value: MsgUpdateGroupPolicyDecisionPolicy): {
95
+ typeUrl: string;
96
+ value: MsgUpdateGroupPolicyDecisionPolicy;
97
+ };
98
+ updateGroupPolicyMetadata(value: MsgUpdateGroupPolicyMetadata): {
99
+ typeUrl: string;
100
+ value: MsgUpdateGroupPolicyMetadata;
101
+ };
102
+ submitProposal(value: MsgSubmitProposal): {
103
+ typeUrl: string;
104
+ value: MsgSubmitProposal;
105
+ };
106
+ withdrawProposal(value: MsgWithdrawProposal): {
107
+ typeUrl: string;
108
+ value: MsgWithdrawProposal;
109
+ };
110
+ vote(value: MsgVote): {
111
+ typeUrl: string;
112
+ value: MsgVote;
113
+ };
114
+ exec(value: MsgExec): {
115
+ typeUrl: string;
116
+ value: MsgExec;
117
+ };
118
+ leaveGroup(value: MsgLeaveGroup): {
119
+ typeUrl: string;
120
+ value: MsgLeaveGroup;
121
+ };
122
+ };
123
+ fromPartial: {
124
+ createGroup(value: MsgCreateGroup): {
125
+ typeUrl: string;
126
+ value: MsgCreateGroup;
127
+ };
128
+ updateGroupMembers(value: MsgUpdateGroupMembers): {
129
+ typeUrl: string;
130
+ value: MsgUpdateGroupMembers;
131
+ };
132
+ updateGroupAdmin(value: MsgUpdateGroupAdmin): {
133
+ typeUrl: string;
134
+ value: MsgUpdateGroupAdmin;
135
+ };
136
+ updateGroupMetadata(value: MsgUpdateGroupMetadata): {
137
+ typeUrl: string;
138
+ value: MsgUpdateGroupMetadata;
139
+ };
140
+ createGroupPolicy(value: MsgCreateGroupPolicy): {
141
+ typeUrl: string;
142
+ value: MsgCreateGroupPolicy;
143
+ };
144
+ createGroupWithPolicy(value: MsgCreateGroupWithPolicy): {
145
+ typeUrl: string;
146
+ value: MsgCreateGroupWithPolicy;
147
+ };
148
+ updateGroupPolicyAdmin(value: MsgUpdateGroupPolicyAdmin): {
149
+ typeUrl: string;
150
+ value: MsgUpdateGroupPolicyAdmin;
151
+ };
152
+ updateGroupPolicyDecisionPolicy(value: MsgUpdateGroupPolicyDecisionPolicy): {
153
+ typeUrl: string;
154
+ value: MsgUpdateGroupPolicyDecisionPolicy;
155
+ };
156
+ updateGroupPolicyMetadata(value: MsgUpdateGroupPolicyMetadata): {
157
+ typeUrl: string;
158
+ value: MsgUpdateGroupPolicyMetadata;
159
+ };
160
+ submitProposal(value: MsgSubmitProposal): {
161
+ typeUrl: string;
162
+ value: MsgSubmitProposal;
163
+ };
164
+ withdrawProposal(value: MsgWithdrawProposal): {
165
+ typeUrl: string;
166
+ value: MsgWithdrawProposal;
167
+ };
168
+ vote(value: MsgVote): {
169
+ typeUrl: string;
170
+ value: MsgVote;
171
+ };
172
+ exec(value: MsgExec): {
173
+ typeUrl: string;
174
+ value: MsgExec;
175
+ };
176
+ leaveGroup(value: MsgLeaveGroup): {
177
+ typeUrl: string;
178
+ value: MsgLeaveGroup;
179
+ };
180
+ };
181
+ };