carbon-js-sdk 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/CarbonSDK.d.ts +1 -0
- package/lib/CarbonSDK.js +8 -6
- package/lib/clients/BatchQueryClient.js +4 -4
- package/lib/clients/CarbonQueryClient.js +1 -1
- package/lib/clients/ETHClient.d.ts +1 -0
- package/lib/clients/ETHClient.js +17 -17
- package/lib/clients/HydrogenClient.js +1 -1
- package/lib/clients/InsightsQueryClient.js +3 -3
- package/lib/clients/NEOClient.js +7 -7
- package/lib/clients/TokenClient.js +2 -2
- package/lib/clients/ZILClient.js +17 -17
- package/lib/codec/book/book.d.ts +14 -2
- package/lib/codec/book/book.js +80 -13
- package/lib/codec/book/legacy.d.ts +22 -0
- package/lib/codec/book/legacy.js +120 -0
- package/lib/codec/book/query.d.ts +48 -1
- package/lib/codec/book/query.js +224 -1
- package/lib/codec/cdp/event.d.ts +12 -6
- package/lib/codec/cdp/event.js +146 -68
- package/lib/codec/cdp/params.d.ts +0 -2
- package/lib/codec/cdp/params.js +8 -23
- package/lib/codec/cdp/query.d.ts +22 -1
- package/lib/codec/cdp/query.js +104 -17
- package/lib/codec/cosmos/gov/v1/query.js +2 -2
- package/lib/codec/cosmos/gov/v1/tx.js +2 -2
- package/lib/codec/cosmos/gov/v1beta1/query.js +2 -2
- package/lib/codec/cosmos/gov/v1beta1/tx.js +2 -2
- package/lib/codec/cosmos/group/v1/events.js +2 -2
- package/lib/codec/cosmos/group/v1/tx.js +4 -4
- package/lib/codec/cosmos/tx/v1beta1/tx.js +4 -4
- package/lib/codec/index.d.ts +11 -9
- package/lib/codec/index.js +405 -133
- package/lib/codec/liquiditypool/event.d.ts +25 -1
- package/lib/codec/liquiditypool/event.js +147 -1
- package/lib/codec/liquiditypool/genesis.d.ts +4 -5
- package/lib/codec/liquiditypool/genesis.js +34 -49
- package/lib/codec/liquiditypool/query.d.ts +2 -51
- package/lib/codec/liquiditypool/query.js +18 -265
- package/lib/codec/liquiditypool/reward.d.ts +21 -21
- package/lib/codec/liquiditypool/reward.js +97 -111
- package/lib/codec/oracle/query.d.ts +37 -34
- package/lib/codec/oracle/query.js +37 -31
- package/lib/codec/position/position.d.ts +2 -0
- package/lib/codec/position/position.js +34 -0
- package/lib/codec/subaccount/genesis.d.ts +5 -1
- package/lib/codec/subaccount/genesis.js +48 -2
- package/lib/codec/subaccount/query.d.ts +110 -21
- package/lib/codec/subaccount/query.js +503 -47
- package/lib/codec/subaccount/subaccount.d.ts +29 -3
- package/lib/codec/subaccount/subaccount.js +234 -31
- package/lib/codec/subaccount/tx.d.ts +7 -1
- package/lib/codec/subaccount/tx.js +101 -16
- package/lib/constant/generic.js +1 -1
- package/lib/modules/cdp.js +45 -45
- package/lib/modules/cosmwasm.js +2 -2
- package/lib/modules/evm.js +5 -5
- package/lib/modules/gov.js +12 -12
- package/lib/modules/liquiditypool.js +1 -1
- package/lib/modules/order.js +2 -2
- package/lib/modules/subaccount.js +1 -1
- package/lib/provider/account/EthLedgerAccount/EthLedgerAccount.js +1 -1
- package/lib/provider/account/NeoLedgerAccount/N3Ledger/ErrorCode.js +1 -1
- package/lib/provider/account/NeoLedgerAccount/N3Ledger/main.js +8 -8
- package/lib/provider/account/NeoLedgerAccount/NeoLedgerAccount.js +3 -3
- package/lib/provider/account/NeoLedgerAccount/NeonLedger.js +1 -1
- package/lib/provider/amino/types/admin.js +27 -27
- package/lib/provider/amino/types/bank.js +1 -1
- package/lib/provider/amino/types/broker.js +1 -1
- package/lib/provider/amino/types/cdp.js +25 -25
- package/lib/provider/amino/types/coin.js +4 -4
- package/lib/provider/amino/types/evm.js +2 -2
- package/lib/provider/amino/types/evmmerge.js +1 -1
- package/lib/provider/amino/types/feemarket.js +1 -1
- package/lib/provider/amino/types/gov.js +5 -5
- package/lib/provider/amino/types/ibc.js +1 -1
- package/lib/provider/amino/types/leverage.js +1 -1
- package/lib/provider/amino/types/liquidityPool.js +7 -7
- package/lib/provider/amino/types/market.js +6 -6
- package/lib/provider/amino/types/oracle.js +2 -2
- package/lib/provider/amino/types/order.js +4 -4
- package/lib/provider/amino/types/position.js +1 -1
- package/lib/provider/amino/types/profile.js +1 -1
- package/lib/provider/amino/types/staking.js +4 -4
- package/lib/provider/amino/types/subaccount.js +3 -3
- package/lib/provider/amino/utils.js +11 -11
- package/lib/provider/keplr/KeplrAccount.js +2 -2
- package/lib/provider/ledger/ledger.js +2 -2
- package/lib/provider/metamask/MetaMask.js +13 -13
- package/lib/provider/o3/O3Wallet.js +2 -2
- package/lib/util/address.js +14 -14
- package/lib/util/api.js +4 -4
- package/lib/util/blockchain.d.ts +1 -1
- package/lib/util/blockchain.js +4 -4
- package/lib/util/eip712.js +3 -3
- package/lib/util/fetch.js +1 -1
- package/lib/util/generic.js +3 -3
- package/lib/util/legacyEIP712.js +2 -2
- package/lib/util/network.js +3 -3
- package/lib/util/number.js +5 -5
- package/lib/wallet/CarbonSigner.js +2 -2
- package/lib/wallet/CarbonSigningClient.js +15 -15
- package/lib/wallet/CarbonWallet.js +9 -9
- package/lib/websocket/connector.js +3 -3
- package/package.json +1 -1
- package/lib/codec/ibc/applications/interchain_accounts/v1/genesis.d.ts +0 -76
- package/lib/codec/ibc/applications/interchain_accounts/v1/genesis.js +0 -424
|
@@ -3,19 +3,22 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.QueryClientImpl = exports.QuerySubAccountPowerResponse = exports.QuerySubAccountPowerRequest = exports.
|
|
6
|
+
exports.QueryClientImpl = exports.QueryParamsResponse = exports.QueryParamsRequest = exports.QueryMainAccountResponse = exports.QueryMainAccountRequest = exports.QueryMainAccountAllResponse = exports.QueryMainAccountAllRequest = exports.QuerySubAccountPowerResponse = exports.QuerySubAccountPowerRequest = exports.QueryAllPendingSubAccountResponse = exports.QueryAllPendingSubAccountRequest = exports.QueryAllSubAccountResponse = exports.QueryAllSubAccountRequest = exports.QueryGetSubAccountResponse = exports.QueryGetPendingSubAccountRequest = exports.QueryGetSubAccountRequest = exports.protobufPackage = void 0;
|
|
7
7
|
/* eslint-disable */
|
|
8
8
|
const long_1 = __importDefault(require("long"));
|
|
9
9
|
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
10
10
|
const subaccount_1 = require("./subaccount");
|
|
11
11
|
const pagination_1 = require("../cosmos/base/query/v1beta1/pagination");
|
|
12
12
|
exports.protobufPackage = "Switcheo.carbon.subaccount";
|
|
13
|
-
const baseQueryGetSubAccountRequest = { address: "" };
|
|
13
|
+
const baseQueryGetSubAccountRequest = { address: "", role: "" };
|
|
14
14
|
exports.QueryGetSubAccountRequest = {
|
|
15
15
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
16
16
|
if (message.address !== "") {
|
|
17
17
|
writer.uint32(10).string(message.address);
|
|
18
18
|
}
|
|
19
|
+
if (message.role !== "") {
|
|
20
|
+
writer.uint32(18).string(message.role);
|
|
21
|
+
}
|
|
19
22
|
return writer;
|
|
20
23
|
},
|
|
21
24
|
decode(input, length) {
|
|
@@ -28,6 +31,9 @@ exports.QueryGetSubAccountRequest = {
|
|
|
28
31
|
case 1:
|
|
29
32
|
message.address = reader.string();
|
|
30
33
|
break;
|
|
34
|
+
case 2:
|
|
35
|
+
message.role = reader.string();
|
|
36
|
+
break;
|
|
31
37
|
default:
|
|
32
38
|
reader.skipType(tag & 7);
|
|
33
39
|
break;
|
|
@@ -41,17 +47,97 @@ exports.QueryGetSubAccountRequest = {
|
|
|
41
47
|
object.address !== undefined && object.address !== null
|
|
42
48
|
? String(object.address)
|
|
43
49
|
: "";
|
|
50
|
+
message.role =
|
|
51
|
+
object.role !== undefined && object.role !== null
|
|
52
|
+
? String(object.role)
|
|
53
|
+
: "";
|
|
44
54
|
return message;
|
|
45
55
|
},
|
|
46
56
|
toJSON(message) {
|
|
47
57
|
const obj = {};
|
|
48
58
|
message.address !== undefined && (obj.address = message.address);
|
|
59
|
+
message.role !== undefined && (obj.role = message.role);
|
|
49
60
|
return obj;
|
|
50
61
|
},
|
|
51
62
|
fromPartial(object) {
|
|
52
|
-
var _a;
|
|
63
|
+
var _a, _b;
|
|
53
64
|
const message = Object.assign({}, baseQueryGetSubAccountRequest);
|
|
54
65
|
message.address = (_a = object.address) !== null && _a !== void 0 ? _a : "";
|
|
66
|
+
message.role = (_b = object.role) !== null && _b !== void 0 ? _b : "";
|
|
67
|
+
return message;
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
const baseQueryGetPendingSubAccountRequest = {
|
|
71
|
+
mainAddress: "",
|
|
72
|
+
subAddress: "",
|
|
73
|
+
role: "",
|
|
74
|
+
};
|
|
75
|
+
exports.QueryGetPendingSubAccountRequest = {
|
|
76
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
77
|
+
if (message.mainAddress !== "") {
|
|
78
|
+
writer.uint32(10).string(message.mainAddress);
|
|
79
|
+
}
|
|
80
|
+
if (message.subAddress !== "") {
|
|
81
|
+
writer.uint32(18).string(message.subAddress);
|
|
82
|
+
}
|
|
83
|
+
if (message.role !== "") {
|
|
84
|
+
writer.uint32(26).string(message.role);
|
|
85
|
+
}
|
|
86
|
+
return writer;
|
|
87
|
+
},
|
|
88
|
+
decode(input, length) {
|
|
89
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
90
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
91
|
+
const message = Object.assign({}, baseQueryGetPendingSubAccountRequest);
|
|
92
|
+
while (reader.pos < end) {
|
|
93
|
+
const tag = reader.uint32();
|
|
94
|
+
switch (tag >>> 3) {
|
|
95
|
+
case 1:
|
|
96
|
+
message.mainAddress = reader.string();
|
|
97
|
+
break;
|
|
98
|
+
case 2:
|
|
99
|
+
message.subAddress = reader.string();
|
|
100
|
+
break;
|
|
101
|
+
case 3:
|
|
102
|
+
message.role = reader.string();
|
|
103
|
+
break;
|
|
104
|
+
default:
|
|
105
|
+
reader.skipType(tag & 7);
|
|
106
|
+
break;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
return message;
|
|
110
|
+
},
|
|
111
|
+
fromJSON(object) {
|
|
112
|
+
const message = Object.assign({}, baseQueryGetPendingSubAccountRequest);
|
|
113
|
+
message.mainAddress =
|
|
114
|
+
object.mainAddress !== undefined && object.mainAddress !== null
|
|
115
|
+
? String(object.mainAddress)
|
|
116
|
+
: "";
|
|
117
|
+
message.subAddress =
|
|
118
|
+
object.subAddress !== undefined && object.subAddress !== null
|
|
119
|
+
? String(object.subAddress)
|
|
120
|
+
: "";
|
|
121
|
+
message.role =
|
|
122
|
+
object.role !== undefined && object.role !== null
|
|
123
|
+
? String(object.role)
|
|
124
|
+
: "";
|
|
125
|
+
return message;
|
|
126
|
+
},
|
|
127
|
+
toJSON(message) {
|
|
128
|
+
const obj = {};
|
|
129
|
+
message.mainAddress !== undefined &&
|
|
130
|
+
(obj.mainAddress = message.mainAddress);
|
|
131
|
+
message.subAddress !== undefined && (obj.subAddress = message.subAddress);
|
|
132
|
+
message.role !== undefined && (obj.role = message.role);
|
|
133
|
+
return obj;
|
|
134
|
+
},
|
|
135
|
+
fromPartial(object) {
|
|
136
|
+
var _a, _b, _c;
|
|
137
|
+
const message = Object.assign({}, baseQueryGetPendingSubAccountRequest);
|
|
138
|
+
message.mainAddress = (_a = object.mainAddress) !== null && _a !== void 0 ? _a : "";
|
|
139
|
+
message.subAddress = (_b = object.subAddress) !== null && _b !== void 0 ? _b : "";
|
|
140
|
+
message.role = (_c = object.role) !== null && _c !== void 0 ? _c : "";
|
|
55
141
|
return message;
|
|
56
142
|
},
|
|
57
143
|
};
|
|
@@ -105,12 +191,15 @@ exports.QueryGetSubAccountResponse = {
|
|
|
105
191
|
return message;
|
|
106
192
|
},
|
|
107
193
|
};
|
|
108
|
-
const baseQueryAllSubAccountRequest = {};
|
|
194
|
+
const baseQueryAllSubAccountRequest = { mainAddress: "" };
|
|
109
195
|
exports.QueryAllSubAccountRequest = {
|
|
110
196
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
111
197
|
if (message.pagination !== undefined) {
|
|
112
198
|
pagination_1.PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
113
199
|
}
|
|
200
|
+
if (message.mainAddress !== "") {
|
|
201
|
+
writer.uint32(18).string(message.mainAddress);
|
|
202
|
+
}
|
|
114
203
|
return writer;
|
|
115
204
|
},
|
|
116
205
|
decode(input, length) {
|
|
@@ -123,6 +212,9 @@ exports.QueryAllSubAccountRequest = {
|
|
|
123
212
|
case 1:
|
|
124
213
|
message.pagination = pagination_1.PageRequest.decode(reader, reader.uint32());
|
|
125
214
|
break;
|
|
215
|
+
case 2:
|
|
216
|
+
message.mainAddress = reader.string();
|
|
217
|
+
break;
|
|
126
218
|
default:
|
|
127
219
|
reader.skipType(tag & 7);
|
|
128
220
|
break;
|
|
@@ -136,6 +228,10 @@ exports.QueryAllSubAccountRequest = {
|
|
|
136
228
|
object.pagination !== undefined && object.pagination !== null
|
|
137
229
|
? pagination_1.PageRequest.fromJSON(object.pagination)
|
|
138
230
|
: undefined;
|
|
231
|
+
message.mainAddress =
|
|
232
|
+
object.mainAddress !== undefined && object.mainAddress !== null
|
|
233
|
+
? String(object.mainAddress)
|
|
234
|
+
: "";
|
|
139
235
|
return message;
|
|
140
236
|
},
|
|
141
237
|
toJSON(message) {
|
|
@@ -144,14 +240,18 @@ exports.QueryAllSubAccountRequest = {
|
|
|
144
240
|
(obj.pagination = message.pagination
|
|
145
241
|
? pagination_1.PageRequest.toJSON(message.pagination)
|
|
146
242
|
: undefined);
|
|
243
|
+
message.mainAddress !== undefined &&
|
|
244
|
+
(obj.mainAddress = message.mainAddress);
|
|
147
245
|
return obj;
|
|
148
246
|
},
|
|
149
247
|
fromPartial(object) {
|
|
248
|
+
var _a;
|
|
150
249
|
const message = Object.assign({}, baseQueryAllSubAccountRequest);
|
|
151
250
|
message.pagination =
|
|
152
251
|
object.pagination !== undefined && object.pagination !== null
|
|
153
252
|
? pagination_1.PageRequest.fromPartial(object.pagination)
|
|
154
253
|
: undefined;
|
|
254
|
+
message.mainAddress = (_a = object.mainAddress) !== null && _a !== void 0 ? _a : "";
|
|
155
255
|
return message;
|
|
156
256
|
},
|
|
157
257
|
};
|
|
@@ -159,7 +259,7 @@ const baseQueryAllSubAccountResponse = {};
|
|
|
159
259
|
exports.QueryAllSubAccountResponse = {
|
|
160
260
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
161
261
|
for (const v of message.subaccounts) {
|
|
162
|
-
subaccount_1.
|
|
262
|
+
subaccount_1.SubAccount.encode(v, writer.uint32(10).fork()).ldelim();
|
|
163
263
|
}
|
|
164
264
|
if (message.pagination !== undefined) {
|
|
165
265
|
pagination_1.PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
@@ -175,7 +275,7 @@ exports.QueryAllSubAccountResponse = {
|
|
|
175
275
|
const tag = reader.uint32();
|
|
176
276
|
switch (tag >>> 3) {
|
|
177
277
|
case 1:
|
|
178
|
-
message.subaccounts.push(subaccount_1.
|
|
278
|
+
message.subaccounts.push(subaccount_1.SubAccount.decode(reader, reader.uint32()));
|
|
179
279
|
break;
|
|
180
280
|
case 2:
|
|
181
281
|
message.pagination = pagination_1.PageResponse.decode(reader, reader.uint32());
|
|
@@ -190,7 +290,7 @@ exports.QueryAllSubAccountResponse = {
|
|
|
190
290
|
fromJSON(object) {
|
|
191
291
|
var _a;
|
|
192
292
|
const message = Object.assign({}, baseQueryAllSubAccountResponse);
|
|
193
|
-
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.
|
|
293
|
+
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.SubAccount.fromJSON(e));
|
|
194
294
|
message.pagination =
|
|
195
295
|
object.pagination !== undefined && object.pagination !== null
|
|
196
296
|
? pagination_1.PageResponse.fromJSON(object.pagination)
|
|
@@ -200,7 +300,7 @@ exports.QueryAllSubAccountResponse = {
|
|
|
200
300
|
toJSON(message) {
|
|
201
301
|
const obj = {};
|
|
202
302
|
if (message.subaccounts) {
|
|
203
|
-
obj.subaccounts = message.subaccounts.map((e) => e ? subaccount_1.
|
|
303
|
+
obj.subaccounts = message.subaccounts.map((e) => e ? subaccount_1.SubAccount.toJSON(e) : undefined);
|
|
204
304
|
}
|
|
205
305
|
else {
|
|
206
306
|
obj.subaccounts = [];
|
|
@@ -214,7 +314,7 @@ exports.QueryAllSubAccountResponse = {
|
|
|
214
314
|
fromPartial(object) {
|
|
215
315
|
var _a;
|
|
216
316
|
const message = Object.assign({}, baseQueryAllSubAccountResponse);
|
|
217
|
-
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.
|
|
317
|
+
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.SubAccount.fromPartial(e));
|
|
218
318
|
message.pagination =
|
|
219
319
|
object.pagination !== undefined && object.pagination !== null
|
|
220
320
|
? pagination_1.PageResponse.fromPartial(object.pagination)
|
|
@@ -222,32 +322,45 @@ exports.QueryAllSubAccountResponse = {
|
|
|
222
322
|
return message;
|
|
223
323
|
},
|
|
224
324
|
};
|
|
225
|
-
const
|
|
325
|
+
const baseQueryAllPendingSubAccountRequest = {
|
|
226
326
|
mainAddress: "",
|
|
227
|
-
|
|
327
|
+
role: "",
|
|
328
|
+
subAddress: "",
|
|
228
329
|
};
|
|
229
|
-
exports.
|
|
330
|
+
exports.QueryAllPendingSubAccountRequest = {
|
|
230
331
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
332
|
+
if (message.pagination !== undefined) {
|
|
333
|
+
pagination_1.PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
334
|
+
}
|
|
231
335
|
if (message.mainAddress !== "") {
|
|
232
|
-
writer.uint32(
|
|
336
|
+
writer.uint32(18).string(message.mainAddress);
|
|
337
|
+
}
|
|
338
|
+
if (message.role !== "") {
|
|
339
|
+
writer.uint32(26).string(message.role);
|
|
233
340
|
}
|
|
234
|
-
if (message.
|
|
235
|
-
writer.uint32(
|
|
341
|
+
if (message.subAddress !== "") {
|
|
342
|
+
writer.uint32(34).string(message.subAddress);
|
|
236
343
|
}
|
|
237
344
|
return writer;
|
|
238
345
|
},
|
|
239
346
|
decode(input, length) {
|
|
240
347
|
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
241
348
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
242
|
-
const message = Object.assign({},
|
|
349
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountRequest);
|
|
243
350
|
while (reader.pos < end) {
|
|
244
351
|
const tag = reader.uint32();
|
|
245
352
|
switch (tag >>> 3) {
|
|
246
353
|
case 1:
|
|
247
|
-
message.
|
|
354
|
+
message.pagination = pagination_1.PageRequest.decode(reader, reader.uint32());
|
|
248
355
|
break;
|
|
249
356
|
case 2:
|
|
250
|
-
message.
|
|
357
|
+
message.mainAddress = reader.string();
|
|
358
|
+
break;
|
|
359
|
+
case 3:
|
|
360
|
+
message.role = reader.string();
|
|
361
|
+
break;
|
|
362
|
+
case 4:
|
|
363
|
+
message.subAddress = reader.string();
|
|
251
364
|
break;
|
|
252
365
|
default:
|
|
253
366
|
reader.skipType(tag & 7);
|
|
@@ -257,51 +370,74 @@ exports.QuerySubAccountStatusRequest = {
|
|
|
257
370
|
return message;
|
|
258
371
|
},
|
|
259
372
|
fromJSON(object) {
|
|
260
|
-
const message = Object.assign({},
|
|
373
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountRequest);
|
|
374
|
+
message.pagination =
|
|
375
|
+
object.pagination !== undefined && object.pagination !== null
|
|
376
|
+
? pagination_1.PageRequest.fromJSON(object.pagination)
|
|
377
|
+
: undefined;
|
|
261
378
|
message.mainAddress =
|
|
262
379
|
object.mainAddress !== undefined && object.mainAddress !== null
|
|
263
380
|
? String(object.mainAddress)
|
|
264
381
|
: "";
|
|
265
|
-
message.
|
|
266
|
-
object.
|
|
267
|
-
object.
|
|
268
|
-
|
|
382
|
+
message.role =
|
|
383
|
+
object.role !== undefined && object.role !== null
|
|
384
|
+
? String(object.role)
|
|
385
|
+
: "";
|
|
386
|
+
message.subAddress =
|
|
387
|
+
object.subAddress !== undefined && object.subAddress !== null
|
|
388
|
+
? String(object.subAddress)
|
|
269
389
|
: "";
|
|
270
390
|
return message;
|
|
271
391
|
},
|
|
272
392
|
toJSON(message) {
|
|
273
393
|
const obj = {};
|
|
394
|
+
message.pagination !== undefined &&
|
|
395
|
+
(obj.pagination = message.pagination
|
|
396
|
+
? pagination_1.PageRequest.toJSON(message.pagination)
|
|
397
|
+
: undefined);
|
|
274
398
|
message.mainAddress !== undefined &&
|
|
275
399
|
(obj.mainAddress = message.mainAddress);
|
|
276
|
-
message.
|
|
277
|
-
|
|
400
|
+
message.role !== undefined && (obj.role = message.role);
|
|
401
|
+
message.subAddress !== undefined && (obj.subAddress = message.subAddress);
|
|
278
402
|
return obj;
|
|
279
403
|
},
|
|
280
404
|
fromPartial(object) {
|
|
281
|
-
var _a, _b;
|
|
282
|
-
const message = Object.assign({},
|
|
405
|
+
var _a, _b, _c;
|
|
406
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountRequest);
|
|
407
|
+
message.pagination =
|
|
408
|
+
object.pagination !== undefined && object.pagination !== null
|
|
409
|
+
? pagination_1.PageRequest.fromPartial(object.pagination)
|
|
410
|
+
: undefined;
|
|
283
411
|
message.mainAddress = (_a = object.mainAddress) !== null && _a !== void 0 ? _a : "";
|
|
284
|
-
message.
|
|
412
|
+
message.role = (_b = object.role) !== null && _b !== void 0 ? _b : "";
|
|
413
|
+
message.subAddress = (_c = object.subAddress) !== null && _c !== void 0 ? _c : "";
|
|
285
414
|
return message;
|
|
286
415
|
},
|
|
287
416
|
};
|
|
288
|
-
const
|
|
289
|
-
exports.
|
|
417
|
+
const baseQueryAllPendingSubAccountResponse = {};
|
|
418
|
+
exports.QueryAllPendingSubAccountResponse = {
|
|
290
419
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
291
|
-
|
|
292
|
-
writer.uint32(10).
|
|
420
|
+
for (const v of message.subaccounts) {
|
|
421
|
+
subaccount_1.SubAccount.encode(v, writer.uint32(10).fork()).ldelim();
|
|
422
|
+
}
|
|
423
|
+
if (message.pagination !== undefined) {
|
|
424
|
+
pagination_1.PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
|
|
293
425
|
}
|
|
294
426
|
return writer;
|
|
295
427
|
},
|
|
296
428
|
decode(input, length) {
|
|
297
429
|
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
298
430
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
299
|
-
const message = Object.assign({},
|
|
431
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountResponse);
|
|
432
|
+
message.subaccounts = [];
|
|
300
433
|
while (reader.pos < end) {
|
|
301
434
|
const tag = reader.uint32();
|
|
302
435
|
switch (tag >>> 3) {
|
|
303
436
|
case 1:
|
|
304
|
-
message.
|
|
437
|
+
message.subaccounts.push(subaccount_1.SubAccount.decode(reader, reader.uint32()));
|
|
438
|
+
break;
|
|
439
|
+
case 2:
|
|
440
|
+
message.pagination = pagination_1.PageResponse.decode(reader, reader.uint32());
|
|
305
441
|
break;
|
|
306
442
|
default:
|
|
307
443
|
reader.skipType(tag & 7);
|
|
@@ -311,22 +447,37 @@ exports.QuerySubAccountStatusResponse = {
|
|
|
311
447
|
return message;
|
|
312
448
|
},
|
|
313
449
|
fromJSON(object) {
|
|
314
|
-
|
|
315
|
-
message.
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
450
|
+
var _a;
|
|
451
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountResponse);
|
|
452
|
+
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.SubAccount.fromJSON(e));
|
|
453
|
+
message.pagination =
|
|
454
|
+
object.pagination !== undefined && object.pagination !== null
|
|
455
|
+
? pagination_1.PageResponse.fromJSON(object.pagination)
|
|
456
|
+
: undefined;
|
|
319
457
|
return message;
|
|
320
458
|
},
|
|
321
459
|
toJSON(message) {
|
|
322
460
|
const obj = {};
|
|
323
|
-
|
|
461
|
+
if (message.subaccounts) {
|
|
462
|
+
obj.subaccounts = message.subaccounts.map((e) => e ? subaccount_1.SubAccount.toJSON(e) : undefined);
|
|
463
|
+
}
|
|
464
|
+
else {
|
|
465
|
+
obj.subaccounts = [];
|
|
466
|
+
}
|
|
467
|
+
message.pagination !== undefined &&
|
|
468
|
+
(obj.pagination = message.pagination
|
|
469
|
+
? pagination_1.PageResponse.toJSON(message.pagination)
|
|
470
|
+
: undefined);
|
|
324
471
|
return obj;
|
|
325
472
|
},
|
|
326
473
|
fromPartial(object) {
|
|
327
474
|
var _a;
|
|
328
|
-
const message = Object.assign({},
|
|
329
|
-
message.
|
|
475
|
+
const message = Object.assign({}, baseQueryAllPendingSubAccountResponse);
|
|
476
|
+
message.subaccounts = ((_a = object.subaccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.SubAccount.fromPartial(e));
|
|
477
|
+
message.pagination =
|
|
478
|
+
object.pagination !== undefined && object.pagination !== null
|
|
479
|
+
? pagination_1.PageResponse.fromPartial(object.pagination)
|
|
480
|
+
: undefined;
|
|
330
481
|
return message;
|
|
331
482
|
},
|
|
332
483
|
};
|
|
@@ -420,34 +571,339 @@ exports.QuerySubAccountPowerResponse = {
|
|
|
420
571
|
return message;
|
|
421
572
|
},
|
|
422
573
|
};
|
|
574
|
+
const baseQueryMainAccountAllRequest = { subAddress: "" };
|
|
575
|
+
exports.QueryMainAccountAllRequest = {
|
|
576
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
577
|
+
if (message.subAddress !== "") {
|
|
578
|
+
writer.uint32(10).string(message.subAddress);
|
|
579
|
+
}
|
|
580
|
+
return writer;
|
|
581
|
+
},
|
|
582
|
+
decode(input, length) {
|
|
583
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
584
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
585
|
+
const message = Object.assign({}, baseQueryMainAccountAllRequest);
|
|
586
|
+
while (reader.pos < end) {
|
|
587
|
+
const tag = reader.uint32();
|
|
588
|
+
switch (tag >>> 3) {
|
|
589
|
+
case 1:
|
|
590
|
+
message.subAddress = reader.string();
|
|
591
|
+
break;
|
|
592
|
+
default:
|
|
593
|
+
reader.skipType(tag & 7);
|
|
594
|
+
break;
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
return message;
|
|
598
|
+
},
|
|
599
|
+
fromJSON(object) {
|
|
600
|
+
const message = Object.assign({}, baseQueryMainAccountAllRequest);
|
|
601
|
+
message.subAddress =
|
|
602
|
+
object.subAddress !== undefined && object.subAddress !== null
|
|
603
|
+
? String(object.subAddress)
|
|
604
|
+
: "";
|
|
605
|
+
return message;
|
|
606
|
+
},
|
|
607
|
+
toJSON(message) {
|
|
608
|
+
const obj = {};
|
|
609
|
+
message.subAddress !== undefined && (obj.subAddress = message.subAddress);
|
|
610
|
+
return obj;
|
|
611
|
+
},
|
|
612
|
+
fromPartial(object) {
|
|
613
|
+
var _a;
|
|
614
|
+
const message = Object.assign({}, baseQueryMainAccountAllRequest);
|
|
615
|
+
message.subAddress = (_a = object.subAddress) !== null && _a !== void 0 ? _a : "";
|
|
616
|
+
return message;
|
|
617
|
+
},
|
|
618
|
+
};
|
|
619
|
+
const baseQueryMainAccountAllResponse = {};
|
|
620
|
+
exports.QueryMainAccountAllResponse = {
|
|
621
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
622
|
+
for (const v of message.mainAccounts) {
|
|
623
|
+
subaccount_1.MainAccount.encode(v, writer.uint32(10).fork()).ldelim();
|
|
624
|
+
}
|
|
625
|
+
return writer;
|
|
626
|
+
},
|
|
627
|
+
decode(input, length) {
|
|
628
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
629
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
630
|
+
const message = Object.assign({}, baseQueryMainAccountAllResponse);
|
|
631
|
+
message.mainAccounts = [];
|
|
632
|
+
while (reader.pos < end) {
|
|
633
|
+
const tag = reader.uint32();
|
|
634
|
+
switch (tag >>> 3) {
|
|
635
|
+
case 1:
|
|
636
|
+
message.mainAccounts.push(subaccount_1.MainAccount.decode(reader, reader.uint32()));
|
|
637
|
+
break;
|
|
638
|
+
default:
|
|
639
|
+
reader.skipType(tag & 7);
|
|
640
|
+
break;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
return message;
|
|
644
|
+
},
|
|
645
|
+
fromJSON(object) {
|
|
646
|
+
var _a;
|
|
647
|
+
const message = Object.assign({}, baseQueryMainAccountAllResponse);
|
|
648
|
+
message.mainAccounts = ((_a = object.mainAccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.MainAccount.fromJSON(e));
|
|
649
|
+
return message;
|
|
650
|
+
},
|
|
651
|
+
toJSON(message) {
|
|
652
|
+
const obj = {};
|
|
653
|
+
if (message.mainAccounts) {
|
|
654
|
+
obj.mainAccounts = message.mainAccounts.map((e) => e ? subaccount_1.MainAccount.toJSON(e) : undefined);
|
|
655
|
+
}
|
|
656
|
+
else {
|
|
657
|
+
obj.mainAccounts = [];
|
|
658
|
+
}
|
|
659
|
+
return obj;
|
|
660
|
+
},
|
|
661
|
+
fromPartial(object) {
|
|
662
|
+
var _a;
|
|
663
|
+
const message = Object.assign({}, baseQueryMainAccountAllResponse);
|
|
664
|
+
message.mainAccounts = ((_a = object.mainAccounts) !== null && _a !== void 0 ? _a : []).map((e) => subaccount_1.MainAccount.fromPartial(e));
|
|
665
|
+
return message;
|
|
666
|
+
},
|
|
667
|
+
};
|
|
668
|
+
const baseQueryMainAccountRequest = { subAddress: "", role: "" };
|
|
669
|
+
exports.QueryMainAccountRequest = {
|
|
670
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
671
|
+
if (message.subAddress !== "") {
|
|
672
|
+
writer.uint32(10).string(message.subAddress);
|
|
673
|
+
}
|
|
674
|
+
if (message.role !== "") {
|
|
675
|
+
writer.uint32(18).string(message.role);
|
|
676
|
+
}
|
|
677
|
+
return writer;
|
|
678
|
+
},
|
|
679
|
+
decode(input, length) {
|
|
680
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
681
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
682
|
+
const message = Object.assign({}, baseQueryMainAccountRequest);
|
|
683
|
+
while (reader.pos < end) {
|
|
684
|
+
const tag = reader.uint32();
|
|
685
|
+
switch (tag >>> 3) {
|
|
686
|
+
case 1:
|
|
687
|
+
message.subAddress = reader.string();
|
|
688
|
+
break;
|
|
689
|
+
case 2:
|
|
690
|
+
message.role = reader.string();
|
|
691
|
+
break;
|
|
692
|
+
default:
|
|
693
|
+
reader.skipType(tag & 7);
|
|
694
|
+
break;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
return message;
|
|
698
|
+
},
|
|
699
|
+
fromJSON(object) {
|
|
700
|
+
const message = Object.assign({}, baseQueryMainAccountRequest);
|
|
701
|
+
message.subAddress =
|
|
702
|
+
object.subAddress !== undefined && object.subAddress !== null
|
|
703
|
+
? String(object.subAddress)
|
|
704
|
+
: "";
|
|
705
|
+
message.role =
|
|
706
|
+
object.role !== undefined && object.role !== null
|
|
707
|
+
? String(object.role)
|
|
708
|
+
: "";
|
|
709
|
+
return message;
|
|
710
|
+
},
|
|
711
|
+
toJSON(message) {
|
|
712
|
+
const obj = {};
|
|
713
|
+
message.subAddress !== undefined && (obj.subAddress = message.subAddress);
|
|
714
|
+
message.role !== undefined && (obj.role = message.role);
|
|
715
|
+
return obj;
|
|
716
|
+
},
|
|
717
|
+
fromPartial(object) {
|
|
718
|
+
var _a, _b;
|
|
719
|
+
const message = Object.assign({}, baseQueryMainAccountRequest);
|
|
720
|
+
message.subAddress = (_a = object.subAddress) !== null && _a !== void 0 ? _a : "";
|
|
721
|
+
message.role = (_b = object.role) !== null && _b !== void 0 ? _b : "";
|
|
722
|
+
return message;
|
|
723
|
+
},
|
|
724
|
+
};
|
|
725
|
+
const baseQueryMainAccountResponse = {};
|
|
726
|
+
exports.QueryMainAccountResponse = {
|
|
727
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
728
|
+
if (message.mainAccount !== undefined) {
|
|
729
|
+
subaccount_1.MainAccount.encode(message.mainAccount, writer.uint32(10).fork()).ldelim();
|
|
730
|
+
}
|
|
731
|
+
return writer;
|
|
732
|
+
},
|
|
733
|
+
decode(input, length) {
|
|
734
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
735
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
736
|
+
const message = Object.assign({}, baseQueryMainAccountResponse);
|
|
737
|
+
while (reader.pos < end) {
|
|
738
|
+
const tag = reader.uint32();
|
|
739
|
+
switch (tag >>> 3) {
|
|
740
|
+
case 1:
|
|
741
|
+
message.mainAccount = subaccount_1.MainAccount.decode(reader, reader.uint32());
|
|
742
|
+
break;
|
|
743
|
+
default:
|
|
744
|
+
reader.skipType(tag & 7);
|
|
745
|
+
break;
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
return message;
|
|
749
|
+
},
|
|
750
|
+
fromJSON(object) {
|
|
751
|
+
const message = Object.assign({}, baseQueryMainAccountResponse);
|
|
752
|
+
message.mainAccount =
|
|
753
|
+
object.mainAccount !== undefined && object.mainAccount !== null
|
|
754
|
+
? subaccount_1.MainAccount.fromJSON(object.mainAccount)
|
|
755
|
+
: undefined;
|
|
756
|
+
return message;
|
|
757
|
+
},
|
|
758
|
+
toJSON(message) {
|
|
759
|
+
const obj = {};
|
|
760
|
+
message.mainAccount !== undefined &&
|
|
761
|
+
(obj.mainAccount = message.mainAccount
|
|
762
|
+
? subaccount_1.MainAccount.toJSON(message.mainAccount)
|
|
763
|
+
: undefined);
|
|
764
|
+
return obj;
|
|
765
|
+
},
|
|
766
|
+
fromPartial(object) {
|
|
767
|
+
const message = Object.assign({}, baseQueryMainAccountResponse);
|
|
768
|
+
message.mainAccount =
|
|
769
|
+
object.mainAccount !== undefined && object.mainAccount !== null
|
|
770
|
+
? subaccount_1.MainAccount.fromPartial(object.mainAccount)
|
|
771
|
+
: undefined;
|
|
772
|
+
return message;
|
|
773
|
+
},
|
|
774
|
+
};
|
|
775
|
+
const baseQueryParamsRequest = {};
|
|
776
|
+
exports.QueryParamsRequest = {
|
|
777
|
+
encode(_, writer = minimal_1.default.Writer.create()) {
|
|
778
|
+
return writer;
|
|
779
|
+
},
|
|
780
|
+
decode(input, length) {
|
|
781
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
782
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
783
|
+
const message = Object.assign({}, baseQueryParamsRequest);
|
|
784
|
+
while (reader.pos < end) {
|
|
785
|
+
const tag = reader.uint32();
|
|
786
|
+
switch (tag >>> 3) {
|
|
787
|
+
default:
|
|
788
|
+
reader.skipType(tag & 7);
|
|
789
|
+
break;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
return message;
|
|
793
|
+
},
|
|
794
|
+
fromJSON(_) {
|
|
795
|
+
const message = Object.assign({}, baseQueryParamsRequest);
|
|
796
|
+
return message;
|
|
797
|
+
},
|
|
798
|
+
toJSON(_) {
|
|
799
|
+
const obj = {};
|
|
800
|
+
return obj;
|
|
801
|
+
},
|
|
802
|
+
fromPartial(_) {
|
|
803
|
+
const message = Object.assign({}, baseQueryParamsRequest);
|
|
804
|
+
return message;
|
|
805
|
+
},
|
|
806
|
+
};
|
|
807
|
+
const baseQueryParamsResponse = {};
|
|
808
|
+
exports.QueryParamsResponse = {
|
|
809
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
810
|
+
if (message.params !== undefined) {
|
|
811
|
+
subaccount_1.Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
812
|
+
}
|
|
813
|
+
return writer;
|
|
814
|
+
},
|
|
815
|
+
decode(input, length) {
|
|
816
|
+
const reader = input instanceof minimal_1.default.Reader ? input : new minimal_1.default.Reader(input);
|
|
817
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
818
|
+
const message = Object.assign({}, baseQueryParamsResponse);
|
|
819
|
+
while (reader.pos < end) {
|
|
820
|
+
const tag = reader.uint32();
|
|
821
|
+
switch (tag >>> 3) {
|
|
822
|
+
case 1:
|
|
823
|
+
message.params = subaccount_1.Params.decode(reader, reader.uint32());
|
|
824
|
+
break;
|
|
825
|
+
default:
|
|
826
|
+
reader.skipType(tag & 7);
|
|
827
|
+
break;
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
return message;
|
|
831
|
+
},
|
|
832
|
+
fromJSON(object) {
|
|
833
|
+
const message = Object.assign({}, baseQueryParamsResponse);
|
|
834
|
+
message.params =
|
|
835
|
+
object.params !== undefined && object.params !== null
|
|
836
|
+
? subaccount_1.Params.fromJSON(object.params)
|
|
837
|
+
: undefined;
|
|
838
|
+
return message;
|
|
839
|
+
},
|
|
840
|
+
toJSON(message) {
|
|
841
|
+
const obj = {};
|
|
842
|
+
message.params !== undefined &&
|
|
843
|
+
(obj.params = message.params ? subaccount_1.Params.toJSON(message.params) : undefined);
|
|
844
|
+
return obj;
|
|
845
|
+
},
|
|
846
|
+
fromPartial(object) {
|
|
847
|
+
const message = Object.assign({}, baseQueryParamsResponse);
|
|
848
|
+
message.params =
|
|
849
|
+
object.params !== undefined && object.params !== null
|
|
850
|
+
? subaccount_1.Params.fromPartial(object.params)
|
|
851
|
+
: undefined;
|
|
852
|
+
return message;
|
|
853
|
+
},
|
|
854
|
+
};
|
|
423
855
|
class QueryClientImpl {
|
|
424
856
|
constructor(rpc) {
|
|
425
857
|
this.rpc = rpc;
|
|
426
858
|
this.SubAccount = this.SubAccount.bind(this);
|
|
859
|
+
this.PendingSubAccount = this.PendingSubAccount.bind(this);
|
|
427
860
|
this.SubAccountAll = this.SubAccountAll.bind(this);
|
|
428
|
-
this.
|
|
861
|
+
this.PendingSubAccountAll = this.PendingSubAccountAll.bind(this);
|
|
429
862
|
this.SubAccountPower = this.SubAccountPower.bind(this);
|
|
863
|
+
this.MainAccountAll = this.MainAccountAll.bind(this);
|
|
864
|
+
this.MainAccount = this.MainAccount.bind(this);
|
|
865
|
+
this.Params = this.Params.bind(this);
|
|
430
866
|
}
|
|
431
867
|
SubAccount(request) {
|
|
432
868
|
const data = exports.QueryGetSubAccountRequest.encode(request).finish();
|
|
433
869
|
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "SubAccount", data);
|
|
434
870
|
return promise.then((data) => exports.QueryGetSubAccountResponse.decode(new minimal_1.default.Reader(data)));
|
|
435
871
|
}
|
|
872
|
+
PendingSubAccount(request) {
|
|
873
|
+
const data = exports.QueryGetPendingSubAccountRequest.encode(request).finish();
|
|
874
|
+
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "PendingSubAccount", data);
|
|
875
|
+
return promise.then((data) => exports.QueryGetSubAccountResponse.decode(new minimal_1.default.Reader(data)));
|
|
876
|
+
}
|
|
436
877
|
SubAccountAll(request) {
|
|
437
878
|
const data = exports.QueryAllSubAccountRequest.encode(request).finish();
|
|
438
879
|
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "SubAccountAll", data);
|
|
439
880
|
return promise.then((data) => exports.QueryAllSubAccountResponse.decode(new minimal_1.default.Reader(data)));
|
|
440
881
|
}
|
|
441
|
-
|
|
442
|
-
const data = exports.
|
|
443
|
-
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "
|
|
444
|
-
return promise.then((data) => exports.
|
|
882
|
+
PendingSubAccountAll(request) {
|
|
883
|
+
const data = exports.QueryAllPendingSubAccountRequest.encode(request).finish();
|
|
884
|
+
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "PendingSubAccountAll", data);
|
|
885
|
+
return promise.then((data) => exports.QueryAllPendingSubAccountResponse.decode(new minimal_1.default.Reader(data)));
|
|
445
886
|
}
|
|
446
887
|
SubAccountPower(request) {
|
|
447
888
|
const data = exports.QuerySubAccountPowerRequest.encode(request).finish();
|
|
448
889
|
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "SubAccountPower", data);
|
|
449
890
|
return promise.then((data) => exports.QuerySubAccountPowerResponse.decode(new minimal_1.default.Reader(data)));
|
|
450
891
|
}
|
|
892
|
+
MainAccountAll(request) {
|
|
893
|
+
const data = exports.QueryMainAccountAllRequest.encode(request).finish();
|
|
894
|
+
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "MainAccountAll", data);
|
|
895
|
+
return promise.then((data) => exports.QueryMainAccountAllResponse.decode(new minimal_1.default.Reader(data)));
|
|
896
|
+
}
|
|
897
|
+
MainAccount(request) {
|
|
898
|
+
const data = exports.QueryMainAccountRequest.encode(request).finish();
|
|
899
|
+
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "MainAccount", data);
|
|
900
|
+
return promise.then((data) => exports.QueryMainAccountResponse.decode(new minimal_1.default.Reader(data)));
|
|
901
|
+
}
|
|
902
|
+
Params(request) {
|
|
903
|
+
const data = exports.QueryParamsRequest.encode(request).finish();
|
|
904
|
+
const promise = this.rpc.request("Switcheo.carbon.subaccount.Query", "Params", data);
|
|
905
|
+
return promise.then((data) => exports.QueryParamsResponse.decode(new minimal_1.default.Reader(data)));
|
|
906
|
+
}
|
|
451
907
|
}
|
|
452
908
|
exports.QueryClientImpl = QueryClientImpl;
|
|
453
909
|
if (minimal_1.default.util.Long !== long_1.default) {
|