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