@ark-us/wasmxjs 0.0.2 → 0.0.4

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 (114) hide show
  1. package/README.md +1 -1
  2. package/main/codegen/index.js +10 -10
  3. package/main/codegen/{wasmx → mythos}/bundle.js +32 -26
  4. package/main/codegen/{wasmx → mythos}/client.js +19 -19
  5. package/main/codegen/{wasmx → mythos}/index.js +9 -9
  6. package/main/codegen/{wasmx → mythos}/rpc.query.js +16 -10
  7. package/main/codegen/{wasmx → mythos}/rpc.tx.js +18 -12
  8. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.js +1 -1
  9. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.js +1 -1
  10. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.js +3 -3
  11. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.js +9 -9
  12. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.js +17 -17
  13. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.js +2 -2
  14. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.js +41 -41
  15. package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.js +8 -8
  16. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.js +1 -1
  17. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/params.js +1 -1
  18. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.js +1 -1
  19. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/query.js +2 -2
  20. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.js +7 -7
  21. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.js +7 -7
  22. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.js +1 -1
  23. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.js +16 -16
  24. package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.js +3 -3
  25. package/main/codegen/tendermint/bundle.js +17 -17
  26. package/module/codegen/index.js +3 -3
  27. package/module/codegen/mythos/bundle.js +35 -0
  28. package/module/codegen/{wasmx → mythos}/client.js +11 -11
  29. package/module/codegen/mythos/index.js +11 -0
  30. package/module/codegen/{wasmx → mythos}/rpc.query.js +7 -3
  31. package/module/codegen/mythos/rpc.tx.js +12 -0
  32. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.js +1 -1
  33. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.js +1 -1
  34. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.js +3 -3
  35. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.js +9 -9
  36. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.js +17 -17
  37. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.js +2 -2
  38. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.js +41 -41
  39. package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.js +8 -8
  40. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.js +1 -1
  41. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/params.js +1 -1
  42. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.js +1 -1
  43. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/query.js +2 -2
  44. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.js +7 -7
  45. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.js +7 -7
  46. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.js +1 -1
  47. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.js +16 -16
  48. package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.js +3 -3
  49. package/module/codegen/tendermint/bundle.js +17 -17
  50. package/package.json +1 -1
  51. package/src/codegen/index.ts +3 -3
  52. package/src/codegen/mythos/bundle.ts +49 -0
  53. package/src/codegen/{wasmx → mythos}/client.ts +12 -12
  54. package/src/codegen/mythos/index.ts +11 -0
  55. package/src/codegen/{wasmx → mythos}/rpc.query.ts +7 -3
  56. package/src/codegen/mythos/rpc.tx.ts +15 -0
  57. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.ts +1 -1
  58. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.ts +1 -1
  59. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.ts +10 -10
  60. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.ts +3 -3
  61. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.ts +25 -25
  62. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.ts +41 -41
  63. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.ts +9 -9
  64. package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.ts +2 -2
  65. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.ts +1 -1
  66. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/params.ts +1 -1
  67. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.ts +1 -1
  68. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.ts +8 -8
  69. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/query.ts +2 -2
  70. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.ts +10 -10
  71. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.ts +16 -16
  72. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.ts +4 -4
  73. package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.ts +1 -1
  74. package/src/codegen/tendermint/bundle.ts +22 -22
  75. package/types/codegen/index.d.ts +3 -3
  76. package/types/codegen/mythos/bundle.d.ts +1039 -0
  77. package/types/codegen/{wasmx → mythos}/client.d.ts +37 -37
  78. package/types/codegen/mythos/index.d.ts +11 -0
  79. package/types/codegen/mythos/rpc.query.d.ts +45 -0
  80. package/types/codegen/mythos/rpc.tx.d.ts +13 -0
  81. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.d.ts +1 -1
  82. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.d.ts +1 -1
  83. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.d.ts +3 -3
  84. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.d.ts +1 -1
  85. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.d.ts +16 -16
  86. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.d.ts +2 -2
  87. package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.d.ts +1 -1
  88. package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/query.d.ts +2 -2
  89. package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.d.ts +1 -1
  90. package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.d.ts +6 -6
  91. package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.d.ts +1 -1
  92. package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.d.ts +1 -1
  93. package/types/codegen/tendermint/bundle.d.ts +456 -456
  94. package/module/codegen/wasmx/bundle.js +0 -29
  95. package/module/codegen/wasmx/index.js +0 -11
  96. package/module/codegen/wasmx/rpc.tx.js +0 -8
  97. package/src/codegen/wasmx/bundle.ts +0 -45
  98. package/src/codegen/wasmx/index.ts +0 -11
  99. package/src/codegen/wasmx/rpc.tx.ts +0 -11
  100. package/types/codegen/wasmx/bundle.d.ts +0 -1027
  101. package/types/codegen/wasmx/index.d.ts +0 -11
  102. package/types/codegen/wasmx/lcd.d.ts +0 -14
  103. package/types/codegen/wasmx/rpc.query.d.ts +0 -41
  104. package/types/codegen/wasmx/rpc.tx.d.ts +0 -9
  105. package/types/codegen/wasmx/wasmx/query.lcd.d.ts +0 -17
  106. /package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.js +0 -0
  107. /package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.js +0 -0
  108. /package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.ts +0 -0
  109. /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.d.ts +0 -0
  110. /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.d.ts +0 -0
  111. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.d.ts +0 -0
  112. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/params.d.ts +0 -0
  113. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.d.ts +0 -0
  114. /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.d.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import { MsgStoreCode, MsgStoreCodeEvm, MsgInstantiateContract, MsgInstantiateContract2, MsgExecuteContract, MsgExecuteWithOriginContract, MsgExecuteDelegateContract, MsgCompileContract } from "./tx";
2
- export const registry = [["/wasmx.wasmx.MsgStoreCode", MsgStoreCode], ["/wasmx.wasmx.MsgStoreCodeEvm", MsgStoreCodeEvm], ["/wasmx.wasmx.MsgInstantiateContract", MsgInstantiateContract], ["/wasmx.wasmx.MsgInstantiateContract2", MsgInstantiateContract2], ["/wasmx.wasmx.MsgExecuteContract", MsgExecuteContract], ["/wasmx.wasmx.MsgExecuteWithOriginContract", MsgExecuteWithOriginContract], ["/wasmx.wasmx.MsgExecuteDelegateContract", MsgExecuteDelegateContract], ["/wasmx.wasmx.MsgCompileContract", MsgCompileContract]];
2
+ export const registry = [["/mythos.wasmx.v1.MsgStoreCode", MsgStoreCode], ["/mythos.wasmx.v1.MsgStoreCodeEvm", MsgStoreCodeEvm], ["/mythos.wasmx.v1.MsgInstantiateContract", MsgInstantiateContract], ["/mythos.wasmx.v1.MsgInstantiateContract2", MsgInstantiateContract2], ["/mythos.wasmx.v1.MsgExecuteContract", MsgExecuteContract], ["/mythos.wasmx.v1.MsgExecuteWithOriginContract", MsgExecuteWithOriginContract], ["/mythos.wasmx.v1.MsgExecuteDelegateContract", MsgExecuteDelegateContract], ["/mythos.wasmx.v1.MsgCompileContract", MsgCompileContract]];
3
3
  export const load = protoRegistry => {
4
4
  registry.forEach(([typeUrl, mod]) => {
5
5
  protoRegistry.register(typeUrl, mod);
@@ -9,49 +9,49 @@ export const MessageComposer = {
9
9
  encoded: {
10
10
  storeCode(value) {
11
11
  return {
12
- typeUrl: "/wasmx.wasmx.MsgStoreCode",
12
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCode",
13
13
  value: MsgStoreCode.encode(value).finish()
14
14
  };
15
15
  },
16
16
  storeCodeEvm(value) {
17
17
  return {
18
- typeUrl: "/wasmx.wasmx.MsgStoreCodeEvm",
18
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCodeEvm",
19
19
  value: MsgStoreCodeEvm.encode(value).finish()
20
20
  };
21
21
  },
22
22
  instantiateContract(value) {
23
23
  return {
24
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract",
24
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract",
25
25
  value: MsgInstantiateContract.encode(value).finish()
26
26
  };
27
27
  },
28
28
  instantiateContract2(value) {
29
29
  return {
30
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract2",
30
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract2",
31
31
  value: MsgInstantiateContract2.encode(value).finish()
32
32
  };
33
33
  },
34
34
  executeContract(value) {
35
35
  return {
36
- typeUrl: "/wasmx.wasmx.MsgExecuteContract",
36
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteContract",
37
37
  value: MsgExecuteContract.encode(value).finish()
38
38
  };
39
39
  },
40
40
  executeWithOriginContract(value) {
41
41
  return {
42
- typeUrl: "/wasmx.wasmx.MsgExecuteWithOriginContract",
42
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteWithOriginContract",
43
43
  value: MsgExecuteWithOriginContract.encode(value).finish()
44
44
  };
45
45
  },
46
46
  executeDelegateContract(value) {
47
47
  return {
48
- typeUrl: "/wasmx.wasmx.MsgExecuteDelegateContract",
48
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteDelegateContract",
49
49
  value: MsgExecuteDelegateContract.encode(value).finish()
50
50
  };
51
51
  },
52
52
  compileContract(value) {
53
53
  return {
54
- typeUrl: "/wasmx.wasmx.MsgCompileContract",
54
+ typeUrl: "/mythos.wasmx.v1.MsgCompileContract",
55
55
  value: MsgCompileContract.encode(value).finish()
56
56
  };
57
57
  }
@@ -59,49 +59,49 @@ export const MessageComposer = {
59
59
  withTypeUrl: {
60
60
  storeCode(value) {
61
61
  return {
62
- typeUrl: "/wasmx.wasmx.MsgStoreCode",
62
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCode",
63
63
  value
64
64
  };
65
65
  },
66
66
  storeCodeEvm(value) {
67
67
  return {
68
- typeUrl: "/wasmx.wasmx.MsgStoreCodeEvm",
68
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCodeEvm",
69
69
  value
70
70
  };
71
71
  },
72
72
  instantiateContract(value) {
73
73
  return {
74
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract",
74
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract",
75
75
  value
76
76
  };
77
77
  },
78
78
  instantiateContract2(value) {
79
79
  return {
80
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract2",
80
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract2",
81
81
  value
82
82
  };
83
83
  },
84
84
  executeContract(value) {
85
85
  return {
86
- typeUrl: "/wasmx.wasmx.MsgExecuteContract",
86
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteContract",
87
87
  value
88
88
  };
89
89
  },
90
90
  executeWithOriginContract(value) {
91
91
  return {
92
- typeUrl: "/wasmx.wasmx.MsgExecuteWithOriginContract",
92
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteWithOriginContract",
93
93
  value
94
94
  };
95
95
  },
96
96
  executeDelegateContract(value) {
97
97
  return {
98
- typeUrl: "/wasmx.wasmx.MsgExecuteDelegateContract",
98
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteDelegateContract",
99
99
  value
100
100
  };
101
101
  },
102
102
  compileContract(value) {
103
103
  return {
104
- typeUrl: "/wasmx.wasmx.MsgCompileContract",
104
+ typeUrl: "/mythos.wasmx.v1.MsgCompileContract",
105
105
  value
106
106
  };
107
107
  }
@@ -109,49 +109,49 @@ export const MessageComposer = {
109
109
  toJSON: {
110
110
  storeCode(value) {
111
111
  return {
112
- typeUrl: "/wasmx.wasmx.MsgStoreCode",
112
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCode",
113
113
  value: MsgStoreCode.toJSON(value)
114
114
  };
115
115
  },
116
116
  storeCodeEvm(value) {
117
117
  return {
118
- typeUrl: "/wasmx.wasmx.MsgStoreCodeEvm",
118
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCodeEvm",
119
119
  value: MsgStoreCodeEvm.toJSON(value)
120
120
  };
121
121
  },
122
122
  instantiateContract(value) {
123
123
  return {
124
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract",
124
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract",
125
125
  value: MsgInstantiateContract.toJSON(value)
126
126
  };
127
127
  },
128
128
  instantiateContract2(value) {
129
129
  return {
130
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract2",
130
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract2",
131
131
  value: MsgInstantiateContract2.toJSON(value)
132
132
  };
133
133
  },
134
134
  executeContract(value) {
135
135
  return {
136
- typeUrl: "/wasmx.wasmx.MsgExecuteContract",
136
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteContract",
137
137
  value: MsgExecuteContract.toJSON(value)
138
138
  };
139
139
  },
140
140
  executeWithOriginContract(value) {
141
141
  return {
142
- typeUrl: "/wasmx.wasmx.MsgExecuteWithOriginContract",
142
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteWithOriginContract",
143
143
  value: MsgExecuteWithOriginContract.toJSON(value)
144
144
  };
145
145
  },
146
146
  executeDelegateContract(value) {
147
147
  return {
148
- typeUrl: "/wasmx.wasmx.MsgExecuteDelegateContract",
148
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteDelegateContract",
149
149
  value: MsgExecuteDelegateContract.toJSON(value)
150
150
  };
151
151
  },
152
152
  compileContract(value) {
153
153
  return {
154
- typeUrl: "/wasmx.wasmx.MsgCompileContract",
154
+ typeUrl: "/mythos.wasmx.v1.MsgCompileContract",
155
155
  value: MsgCompileContract.toJSON(value)
156
156
  };
157
157
  }
@@ -159,49 +159,49 @@ export const MessageComposer = {
159
159
  fromJSON: {
160
160
  storeCode(value) {
161
161
  return {
162
- typeUrl: "/wasmx.wasmx.MsgStoreCode",
162
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCode",
163
163
  value: MsgStoreCode.fromJSON(value)
164
164
  };
165
165
  },
166
166
  storeCodeEvm(value) {
167
167
  return {
168
- typeUrl: "/wasmx.wasmx.MsgStoreCodeEvm",
168
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCodeEvm",
169
169
  value: MsgStoreCodeEvm.fromJSON(value)
170
170
  };
171
171
  },
172
172
  instantiateContract(value) {
173
173
  return {
174
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract",
174
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract",
175
175
  value: MsgInstantiateContract.fromJSON(value)
176
176
  };
177
177
  },
178
178
  instantiateContract2(value) {
179
179
  return {
180
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract2",
180
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract2",
181
181
  value: MsgInstantiateContract2.fromJSON(value)
182
182
  };
183
183
  },
184
184
  executeContract(value) {
185
185
  return {
186
- typeUrl: "/wasmx.wasmx.MsgExecuteContract",
186
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteContract",
187
187
  value: MsgExecuteContract.fromJSON(value)
188
188
  };
189
189
  },
190
190
  executeWithOriginContract(value) {
191
191
  return {
192
- typeUrl: "/wasmx.wasmx.MsgExecuteWithOriginContract",
192
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteWithOriginContract",
193
193
  value: MsgExecuteWithOriginContract.fromJSON(value)
194
194
  };
195
195
  },
196
196
  executeDelegateContract(value) {
197
197
  return {
198
- typeUrl: "/wasmx.wasmx.MsgExecuteDelegateContract",
198
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteDelegateContract",
199
199
  value: MsgExecuteDelegateContract.fromJSON(value)
200
200
  };
201
201
  },
202
202
  compileContract(value) {
203
203
  return {
204
- typeUrl: "/wasmx.wasmx.MsgCompileContract",
204
+ typeUrl: "/mythos.wasmx.v1.MsgCompileContract",
205
205
  value: MsgCompileContract.fromJSON(value)
206
206
  };
207
207
  }
@@ -209,49 +209,49 @@ export const MessageComposer = {
209
209
  fromPartial: {
210
210
  storeCode(value) {
211
211
  return {
212
- typeUrl: "/wasmx.wasmx.MsgStoreCode",
212
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCode",
213
213
  value: MsgStoreCode.fromPartial(value)
214
214
  };
215
215
  },
216
216
  storeCodeEvm(value) {
217
217
  return {
218
- typeUrl: "/wasmx.wasmx.MsgStoreCodeEvm",
218
+ typeUrl: "/mythos.wasmx.v1.MsgStoreCodeEvm",
219
219
  value: MsgStoreCodeEvm.fromPartial(value)
220
220
  };
221
221
  },
222
222
  instantiateContract(value) {
223
223
  return {
224
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract",
224
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract",
225
225
  value: MsgInstantiateContract.fromPartial(value)
226
226
  };
227
227
  },
228
228
  instantiateContract2(value) {
229
229
  return {
230
- typeUrl: "/wasmx.wasmx.MsgInstantiateContract2",
230
+ typeUrl: "/mythos.wasmx.v1.MsgInstantiateContract2",
231
231
  value: MsgInstantiateContract2.fromPartial(value)
232
232
  };
233
233
  },
234
234
  executeContract(value) {
235
235
  return {
236
- typeUrl: "/wasmx.wasmx.MsgExecuteContract",
236
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteContract",
237
237
  value: MsgExecuteContract.fromPartial(value)
238
238
  };
239
239
  },
240
240
  executeWithOriginContract(value) {
241
241
  return {
242
- typeUrl: "/wasmx.wasmx.MsgExecuteWithOriginContract",
242
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteWithOriginContract",
243
243
  value: MsgExecuteWithOriginContract.fromPartial(value)
244
244
  };
245
245
  },
246
246
  executeDelegateContract(value) {
247
247
  return {
248
- typeUrl: "/wasmx.wasmx.MsgExecuteDelegateContract",
248
+ typeUrl: "/mythos.wasmx.v1.MsgExecuteDelegateContract",
249
249
  value: MsgExecuteDelegateContract.fromPartial(value)
250
250
  };
251
251
  },
252
252
  compileContract(value) {
253
253
  return {
254
- typeUrl: "/wasmx.wasmx.MsgCompileContract",
254
+ typeUrl: "/mythos.wasmx.v1.MsgCompileContract",
255
255
  value: MsgCompileContract.fromPartial(value)
256
256
  };
257
257
  }
@@ -18,42 +18,42 @@ export class MsgClientImpl {
18
18
  }
19
19
  storeCode(request) {
20
20
  const data = MsgStoreCode.encode(request).finish();
21
- const promise = this.rpc.request("wasmx.wasmx.Msg", "StoreCode", data);
21
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "StoreCode", data);
22
22
  return promise.then(data => MsgStoreCodeResponse.decode(new _m0.Reader(data)));
23
23
  }
24
24
  storeCodeEvm(request) {
25
25
  const data = MsgStoreCodeEvm.encode(request).finish();
26
- const promise = this.rpc.request("wasmx.wasmx.Msg", "StoreCodeEvm", data);
26
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "StoreCodeEvm", data);
27
27
  return promise.then(data => MsgStoreCodeEvmResponse.decode(new _m0.Reader(data)));
28
28
  }
29
29
  instantiateContract(request) {
30
30
  const data = MsgInstantiateContract.encode(request).finish();
31
- const promise = this.rpc.request("wasmx.wasmx.Msg", "InstantiateContract", data);
31
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "InstantiateContract", data);
32
32
  return promise.then(data => MsgInstantiateContractResponse.decode(new _m0.Reader(data)));
33
33
  }
34
34
  instantiateContract2(request) {
35
35
  const data = MsgInstantiateContract2.encode(request).finish();
36
- const promise = this.rpc.request("wasmx.wasmx.Msg", "InstantiateContract2", data);
36
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "InstantiateContract2", data);
37
37
  return promise.then(data => MsgInstantiateContract2Response.decode(new _m0.Reader(data)));
38
38
  }
39
39
  executeContract(request) {
40
40
  const data = MsgExecuteContract.encode(request).finish();
41
- const promise = this.rpc.request("wasmx.wasmx.Msg", "ExecuteContract", data);
41
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "ExecuteContract", data);
42
42
  return promise.then(data => MsgExecuteContractResponse.decode(new _m0.Reader(data)));
43
43
  }
44
44
  executeWithOriginContract(request) {
45
45
  const data = MsgExecuteWithOriginContract.encode(request).finish();
46
- const promise = this.rpc.request("wasmx.wasmx.Msg", "ExecuteWithOriginContract", data);
46
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "ExecuteWithOriginContract", data);
47
47
  return promise.then(data => MsgExecuteContractResponse.decode(new _m0.Reader(data)));
48
48
  }
49
49
  executeDelegateContract(request) {
50
50
  const data = MsgExecuteDelegateContract.encode(request).finish();
51
- const promise = this.rpc.request("wasmx.wasmx.Msg", "ExecuteDelegateContract", data);
51
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "ExecuteDelegateContract", data);
52
52
  return promise.then(data => MsgExecuteDelegateContractResponse.decode(new _m0.Reader(data)));
53
53
  }
54
54
  compileContract(request) {
55
55
  const data = MsgCompileContract.encode(request).finish();
56
- const promise = this.rpc.request("wasmx.wasmx.Msg", "CompileContract", data);
56
+ const promise = this.rpc.request("mythos.wasmx.v1.Msg", "CompileContract", data);
57
57
  return promise.then(data => MsgCompileContractResponse.decode(new _m0.Reader(data)));
58
58
  }
59
59
  }
@@ -1,6 +1,6 @@
1
1
  import { Params } from "./params";
2
2
  import * as _m0 from "protobufjs/minimal";
3
- import { isSet } from "../../helpers";
3
+ import { isSet } from "../../../helpers";
4
4
  /** GenesisState defines the websrv module's genesis state. */
5
5
 
6
6
  function createBaseGenesisState() {
@@ -1,5 +1,5 @@
1
1
  import * as _m0 from "protobufjs/minimal";
2
- import { isSet } from "../../helpers";
2
+ import { isSet } from "../../../helpers";
3
3
  /** Params defines the parameters for the module. */
4
4
 
5
5
  function createBaseParams() {
@@ -1,5 +1,5 @@
1
1
  import * as _m0 from "protobufjs/minimal";
2
- import { isSet } from "../../helpers";
2
+ import { isSet } from "../../../helpers";
3
3
  /** RegisterRouteProposal is a gov Content type to register a web server route */
4
4
 
5
5
  function createBaseRegisterRouteProposal() {
@@ -1,7 +1,7 @@
1
- import { PageRequest, PageResponse } from "../../cosmos/base/query/v1beta1/pagination";
1
+ import { PageRequest, PageResponse } from "../../../cosmos/base/query/v1beta1/pagination";
2
2
  import { Params } from "./params";
3
3
  import * as _m0 from "protobufjs/minimal";
4
- import { isSet, bytesFromBase64, base64FromBytes, Long } from "../../helpers";
4
+ import { isSet, bytesFromBase64, base64FromBytes, Long } from "../../../helpers";
5
5
  /**
6
6
  * QueryContractByRouteRequest is the request type for the
7
7
  * Query/ContractByRoute RPC method.
@@ -18,39 +18,39 @@ export class QueryClientImpl {
18
18
  }
19
19
  httpGet(request) {
20
20
  const data = QueryHttpRequestGet.encode(request).finish();
21
- const promise = this.rpc.request("wasmx.websrv.Query", "HttpGet", data);
21
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "HttpGet", data);
22
22
  return promise.then(data => QueryHttpResponseGet.decode(new _m0.Reader(data)));
23
23
  }
24
24
  contractByRoute(request) {
25
25
  const data = QueryContractByRouteRequest.encode(request).finish();
26
- const promise = this.rpc.request("wasmx.websrv.Query", "ContractByRoute", data);
26
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "ContractByRoute", data);
27
27
  return promise.then(data => QueryContractByRouteResponse.decode(new _m0.Reader(data)));
28
28
  }
29
29
  routeByContract(request) {
30
30
  const data = QueryRouteByContractRequest.encode(request).finish();
31
- const promise = this.rpc.request("wasmx.websrv.Query", "RouteByContract", data);
31
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "RouteByContract", data);
32
32
  return promise.then(data => QueryRouteByContractResponse.decode(new _m0.Reader(data)));
33
33
  }
34
34
  params(request = {}) {
35
35
  const data = QueryParamsRequest.encode(request).finish();
36
- const promise = this.rpc.request("wasmx.websrv.Query", "Params", data);
36
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "Params", data);
37
37
  return promise.then(data => QueryParamsResponse.decode(new _m0.Reader(data)));
38
38
  }
39
39
  getAllOauthClients(request = {
40
40
  pagination: undefined
41
41
  }) {
42
42
  const data = QueryGetAllOauthClientsRequest.encode(request).finish();
43
- const promise = this.rpc.request("wasmx.websrv.Query", "GetAllOauthClients", data);
43
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "GetAllOauthClients", data);
44
44
  return promise.then(data => QueryGetAllOauthClientsResponse.decode(new _m0.Reader(data)));
45
45
  }
46
46
  getOauthClient(request) {
47
47
  const data = QueryGetOauthClientRequest.encode(request).finish();
48
- const promise = this.rpc.request("wasmx.websrv.Query", "GetOauthClient", data);
48
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "GetOauthClient", data);
49
49
  return promise.then(data => QueryGetOauthClientResponse.decode(new _m0.Reader(data)));
50
50
  }
51
51
  getOauthClientsByOwner(request) {
52
52
  const data = QueryGetOauthClientsByOwnerRequest.encode(request).finish();
53
- const promise = this.rpc.request("wasmx.websrv.Query", "GetOauthClientsByOwner", data);
53
+ const promise = this.rpc.request("mythos.websrv.v1.Query", "GetOauthClientsByOwner", data);
54
54
  return promise.then(data => QueryGetOauthClientsByOwnerResponse.decode(new _m0.Reader(data)));
55
55
  }
56
56
  }
@@ -1,7 +1,7 @@
1
- import { Long } from "../../helpers";
1
+ import { Long } from "../../../helpers";
2
2
  export const AminoConverter = {
3
- "/wasmx.websrv.MsgRegisterOAuthClient": {
4
- aminoType: "/wasmx.websrv.MsgRegisterOAuthClient",
3
+ "/mythos.websrv.v1.MsgRegisterOAuthClient": {
4
+ aminoType: "/mythos.websrv.v1.MsgRegisterOAuthClient",
5
5
  toAmino: ({
6
6
  owner,
7
7
  domain
@@ -21,8 +21,8 @@ export const AminoConverter = {
21
21
  };
22
22
  }
23
23
  },
24
- "/wasmx.websrv.MsgEditOAuthClient": {
25
- aminoType: "/wasmx.websrv.MsgEditOAuthClient",
24
+ "/mythos.websrv.v1.MsgEditOAuthClient": {
25
+ aminoType: "/mythos.websrv.v1.MsgEditOAuthClient",
26
26
  toAmino: ({
27
27
  owner,
28
28
  clientId,
@@ -46,8 +46,8 @@ export const AminoConverter = {
46
46
  };
47
47
  }
48
48
  },
49
- "/wasmx.websrv.MsgDeregisterOAuthClient": {
50
- aminoType: "/wasmx.websrv.MsgDeregisterOAuthClient",
49
+ "/mythos.websrv.v1.MsgDeregisterOAuthClient": {
50
+ aminoType: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
51
51
  toAmino: ({
52
52
  owner,
53
53
  clientId
@@ -1,5 +1,5 @@
1
1
  import * as _m0 from "protobufjs/minimal";
2
- import { isSet, Long } from "../../helpers";
2
+ import { isSet, Long } from "../../../helpers";
3
3
  function createBaseMsgRegisterOAuthClient() {
4
4
  return {
5
5
  owner: "",
@@ -1,5 +1,5 @@
1
1
  import { MsgRegisterOAuthClient, MsgEditOAuthClient, MsgDeregisterOAuthClient } from "./tx";
2
- export const registry = [["/wasmx.websrv.MsgRegisterOAuthClient", MsgRegisterOAuthClient], ["/wasmx.websrv.MsgEditOAuthClient", MsgEditOAuthClient], ["/wasmx.websrv.MsgDeregisterOAuthClient", MsgDeregisterOAuthClient]];
2
+ export const registry = [["/mythos.websrv.v1.MsgRegisterOAuthClient", MsgRegisterOAuthClient], ["/mythos.websrv.v1.MsgEditOAuthClient", MsgEditOAuthClient], ["/mythos.websrv.v1.MsgDeregisterOAuthClient", MsgDeregisterOAuthClient]];
3
3
  export const load = protoRegistry => {
4
4
  registry.forEach(([typeUrl, mod]) => {
5
5
  protoRegistry.register(typeUrl, mod);
@@ -9,19 +9,19 @@ export const MessageComposer = {
9
9
  encoded: {
10
10
  registerOAuthClient(value) {
11
11
  return {
12
- typeUrl: "/wasmx.websrv.MsgRegisterOAuthClient",
12
+ typeUrl: "/mythos.websrv.v1.MsgRegisterOAuthClient",
13
13
  value: MsgRegisterOAuthClient.encode(value).finish()
14
14
  };
15
15
  },
16
16
  editOAuthClient(value) {
17
17
  return {
18
- typeUrl: "/wasmx.websrv.MsgEditOAuthClient",
18
+ typeUrl: "/mythos.websrv.v1.MsgEditOAuthClient",
19
19
  value: MsgEditOAuthClient.encode(value).finish()
20
20
  };
21
21
  },
22
22
  deregisterOAuthClient(value) {
23
23
  return {
24
- typeUrl: "/wasmx.websrv.MsgDeregisterOAuthClient",
24
+ typeUrl: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
25
25
  value: MsgDeregisterOAuthClient.encode(value).finish()
26
26
  };
27
27
  }
@@ -29,19 +29,19 @@ export const MessageComposer = {
29
29
  withTypeUrl: {
30
30
  registerOAuthClient(value) {
31
31
  return {
32
- typeUrl: "/wasmx.websrv.MsgRegisterOAuthClient",
32
+ typeUrl: "/mythos.websrv.v1.MsgRegisterOAuthClient",
33
33
  value
34
34
  };
35
35
  },
36
36
  editOAuthClient(value) {
37
37
  return {
38
- typeUrl: "/wasmx.websrv.MsgEditOAuthClient",
38
+ typeUrl: "/mythos.websrv.v1.MsgEditOAuthClient",
39
39
  value
40
40
  };
41
41
  },
42
42
  deregisterOAuthClient(value) {
43
43
  return {
44
- typeUrl: "/wasmx.websrv.MsgDeregisterOAuthClient",
44
+ typeUrl: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
45
45
  value
46
46
  };
47
47
  }
@@ -49,19 +49,19 @@ export const MessageComposer = {
49
49
  toJSON: {
50
50
  registerOAuthClient(value) {
51
51
  return {
52
- typeUrl: "/wasmx.websrv.MsgRegisterOAuthClient",
52
+ typeUrl: "/mythos.websrv.v1.MsgRegisterOAuthClient",
53
53
  value: MsgRegisterOAuthClient.toJSON(value)
54
54
  };
55
55
  },
56
56
  editOAuthClient(value) {
57
57
  return {
58
- typeUrl: "/wasmx.websrv.MsgEditOAuthClient",
58
+ typeUrl: "/mythos.websrv.v1.MsgEditOAuthClient",
59
59
  value: MsgEditOAuthClient.toJSON(value)
60
60
  };
61
61
  },
62
62
  deregisterOAuthClient(value) {
63
63
  return {
64
- typeUrl: "/wasmx.websrv.MsgDeregisterOAuthClient",
64
+ typeUrl: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
65
65
  value: MsgDeregisterOAuthClient.toJSON(value)
66
66
  };
67
67
  }
@@ -69,19 +69,19 @@ export const MessageComposer = {
69
69
  fromJSON: {
70
70
  registerOAuthClient(value) {
71
71
  return {
72
- typeUrl: "/wasmx.websrv.MsgRegisterOAuthClient",
72
+ typeUrl: "/mythos.websrv.v1.MsgRegisterOAuthClient",
73
73
  value: MsgRegisterOAuthClient.fromJSON(value)
74
74
  };
75
75
  },
76
76
  editOAuthClient(value) {
77
77
  return {
78
- typeUrl: "/wasmx.websrv.MsgEditOAuthClient",
78
+ typeUrl: "/mythos.websrv.v1.MsgEditOAuthClient",
79
79
  value: MsgEditOAuthClient.fromJSON(value)
80
80
  };
81
81
  },
82
82
  deregisterOAuthClient(value) {
83
83
  return {
84
- typeUrl: "/wasmx.websrv.MsgDeregisterOAuthClient",
84
+ typeUrl: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
85
85
  value: MsgDeregisterOAuthClient.fromJSON(value)
86
86
  };
87
87
  }
@@ -89,19 +89,19 @@ export const MessageComposer = {
89
89
  fromPartial: {
90
90
  registerOAuthClient(value) {
91
91
  return {
92
- typeUrl: "/wasmx.websrv.MsgRegisterOAuthClient",
92
+ typeUrl: "/mythos.websrv.v1.MsgRegisterOAuthClient",
93
93
  value: MsgRegisterOAuthClient.fromPartial(value)
94
94
  };
95
95
  },
96
96
  editOAuthClient(value) {
97
97
  return {
98
- typeUrl: "/wasmx.websrv.MsgEditOAuthClient",
98
+ typeUrl: "/mythos.websrv.v1.MsgEditOAuthClient",
99
99
  value: MsgEditOAuthClient.fromPartial(value)
100
100
  };
101
101
  },
102
102
  deregisterOAuthClient(value) {
103
103
  return {
104
- typeUrl: "/wasmx.websrv.MsgDeregisterOAuthClient",
104
+ typeUrl: "/mythos.websrv.v1.MsgDeregisterOAuthClient",
105
105
  value: MsgDeregisterOAuthClient.fromPartial(value)
106
106
  };
107
107
  }
@@ -13,17 +13,17 @@ export class MsgClientImpl {
13
13
  }
14
14
  registerOAuthClient(request) {
15
15
  const data = MsgRegisterOAuthClient.encode(request).finish();
16
- const promise = this.rpc.request("wasmx.websrv.Msg", "RegisterOAuthClient", data);
16
+ const promise = this.rpc.request("mythos.websrv.v1.Msg", "RegisterOAuthClient", data);
17
17
  return promise.then(data => MsgRegisterOAuthClientResponse.decode(new _m0.Reader(data)));
18
18
  }
19
19
  editOAuthClient(request) {
20
20
  const data = MsgEditOAuthClient.encode(request).finish();
21
- const promise = this.rpc.request("wasmx.websrv.Msg", "EditOAuthClient", data);
21
+ const promise = this.rpc.request("mythos.websrv.v1.Msg", "EditOAuthClient", data);
22
22
  return promise.then(data => MsgEditOAuthClientResponse.decode(new _m0.Reader(data)));
23
23
  }
24
24
  deregisterOAuthClient(request) {
25
25
  const data = MsgDeregisterOAuthClient.encode(request).finish();
26
- const promise = this.rpc.request("wasmx.websrv.Msg", "DeregisterOAuthClient", data);
26
+ const promise = this.rpc.request("mythos.websrv.v1.Msg", "DeregisterOAuthClient", data);
27
27
  return promise.then(data => MsgDeregisterOAuthClientResponse.decode(new _m0.Reader(data)));
28
28
  }
29
29
  }