@sparkdreamnft/sparkdreamjs 0.0.8 → 0.0.9
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/cosmos/bundle.d.ts +160 -160
- package/cosmos/bundle.js +182 -182
- package/esm/cosmos/bundle.js +182 -182
- package/esm/ibc/bundle.js +106 -106
- package/esm/sparkdream/bundle.js +368 -332
- package/esm/sparkdream/client.js +4 -1
- package/esm/sparkdream/{forum → commons}/v1/category.js +7 -5
- package/esm/sparkdream/commons/v1/genesis.js +29 -1
- package/esm/sparkdream/commons/v1/query.js +292 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +18 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +21 -1
- package/esm/sparkdream/commons/v1/tx.amino.js +6 -1
- package/esm/sparkdream/commons/v1/tx.js +193 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +20 -2
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +8 -1
- package/esm/sparkdream/federation/module/v1/module.js +71 -0
- package/esm/sparkdream/federation/v1/genesis.js +244 -0
- package/esm/sparkdream/federation/v1/packet.js +810 -0
- package/esm/sparkdream/federation/v1/params.js +789 -0
- package/esm/sparkdream/federation/v1/query.js +2629 -0
- package/esm/sparkdream/federation/v1/query.lcd.js +152 -0
- package/esm/sparkdream/federation/v1/query.rpc.Query.js +189 -0
- package/esm/sparkdream/federation/v1/tx.amino.js +139 -0
- package/esm/sparkdream/federation/v1/tx.js +4199 -0
- package/esm/sparkdream/federation/v1/tx.registry.js +501 -0
- package/esm/sparkdream/federation/v1/tx.rpc.msg.js +173 -0
- package/esm/sparkdream/federation/v1/types.js +2571 -0
- package/esm/sparkdream/forum/v1/genesis.js +26 -250
- package/esm/sparkdream/forum/v1/query.js +2084 -7387
- package/esm/sparkdream/forum/v1/query.lcd.js +0 -310
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +1 -339
- package/esm/sparkdream/forum/v1/sentinel_activity.js +46 -139
- package/esm/sparkdream/forum/v1/tx.amino.js +1 -76
- package/esm/sparkdream/forum/v1/tx.js +333 -2628
- package/esm/sparkdream/forum/v1/tx.registry.js +2 -272
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +1 -91
- package/esm/sparkdream/forum/v1/types.js +0 -216
- package/esm/sparkdream/lcd.js +5 -0
- package/esm/sparkdream/rep/v1/accountability.js +172 -0
- package/esm/sparkdream/rep/v1/genesis.js +209 -1
- package/esm/sparkdream/{forum → rep}/v1/gov_action_appeal.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/jury_participation.js +4 -4
- package/esm/sparkdream/rep/v1/member.js +25 -1
- package/esm/sparkdream/{forum → rep}/v1/member_report.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/member_warning.js +4 -4
- package/esm/sparkdream/rep/v1/params.js +782 -254
- package/esm/sparkdream/rep/v1/project.js +13 -1
- package/esm/sparkdream/rep/v1/query.js +5260 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +286 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +333 -1
- package/esm/sparkdream/{common → rep}/v1/reserved_tag.js +5 -5
- package/esm/sparkdream/rep/v1/sentinel_activity.js +214 -0
- package/esm/sparkdream/{common → rep}/v1/tag.js +6 -6
- package/esm/sparkdream/{forum → rep}/v1/tag_budget.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/tag_budget_award.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/tag_report.js +4 -4
- package/esm/sparkdream/rep/v1/tx.amino.js +81 -1
- package/esm/sparkdream/rep/v1/tx.js +2439 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +290 -2
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +102 -1
- package/esm/sparkdream/rpc.query.js +3 -0
- package/esm/sparkdream/rpc.tx.js +3 -0
- package/esm/sparkdream/season/v1/params.js +94 -46
- package/esm/sparkdream/shield/v1/types.js +47 -5
- package/esm/tendermint/bundle.js +20 -20
- package/ibc/bundle.d.ts +90 -90
- package/ibc/bundle.js +106 -106
- package/package.json +1 -1
- package/sparkdream/bundle.d.ts +13210 -11120
- package/sparkdream/bundle.js +368 -332
- package/sparkdream/client.d.ts +202 -57
- package/sparkdream/client.js +4 -1
- package/sparkdream/{forum → commons}/v1/category.d.ts +17 -11
- package/sparkdream/{forum → commons}/v1/category.js +7 -5
- package/sparkdream/commons/v1/genesis.d.ts +17 -0
- package/sparkdream/commons/v1/genesis.js +29 -1
- package/sparkdream/commons/v1/query.d.ts +179 -0
- package/sparkdream/commons/v1/query.js +293 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +18 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +9 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +20 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +6 -1
- package/sparkdream/commons/v1/tx.amino.js +5 -0
- package/sparkdream/commons/v1/tx.d.ts +98 -0
- package/sparkdream/commons/v1/tx.js +194 -1
- package/sparkdream/commons/v1/tx.registry.d.ts +13 -1
- package/sparkdream/commons/v1/tx.registry.js +19 -1
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +7 -1
- package/sparkdream/commons/v1/tx.rpc.msg.js +7 -0
- package/sparkdream/federation/module/v1/module.d.ts +54 -0
- package/sparkdream/federation/module/v1/module.js +74 -0
- package/sparkdream/federation/v1/genesis.d.ts +78 -0
- package/sparkdream/federation/v1/genesis.js +247 -0
- package/sparkdream/federation/v1/packet.d.ts +397 -0
- package/sparkdream/federation/v1/packet.js +813 -0
- package/sparkdream/federation/v1/params.d.ts +272 -0
- package/sparkdream/federation/v1/params.js +792 -0
- package/sparkdream/federation/v1/query.d.ts +1541 -0
- package/sparkdream/federation/v1/query.js +2632 -0
- package/sparkdream/federation/v1/query.lcd.d.ts +26 -0
- package/sparkdream/federation/v1/query.lcd.js +156 -0
- package/sparkdream/federation/v1/query.rpc.Query.d.ts +66 -0
- package/sparkdream/federation/v1/query.rpc.Query.js +194 -0
- package/sparkdream/federation/v1/tx.amino.d.ts +138 -0
- package/sparkdream/federation/v1/tx.amino.js +142 -0
- package/sparkdream/federation/v1/tx.d.ts +2311 -0
- package/sparkdream/federation/v1/tx.js +4203 -0
- package/sparkdream/federation/v1/tx.registry.d.ts +337 -0
- package/sparkdream/federation/v1/tx.registry.js +505 -0
- package/sparkdream/federation/v1/tx.rpc.msg.d.ts +64 -0
- package/sparkdream/federation/v1/tx.rpc.msg.js +178 -0
- package/sparkdream/federation/v1/types.d.ts +906 -0
- package/sparkdream/federation/v1/types.js +2588 -0
- package/sparkdream/forum/v1/genesis.d.ts +0 -41
- package/sparkdream/forum/v1/genesis.js +26 -250
- package/sparkdream/forum/v1/query.d.ts +65 -3164
- package/sparkdream/forum/v1/query.js +2086 -7391
- package/sparkdream/forum/v1/query.lcd.d.ts +1 -35
- package/sparkdream/forum/v1/query.lcd.js +0 -310
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +1 -137
- package/sparkdream/forum/v1/query.rpc.Query.js +0 -338
- package/sparkdream/forum/v1/sentinel_activity.d.ts +9 -20
- package/sparkdream/forum/v1/sentinel_activity.js +46 -139
- package/sparkdream/forum/v1/tx.amino.d.ts +1 -76
- package/sparkdream/forum/v1/tx.amino.js +0 -75
- package/sparkdream/forum/v1/tx.d.ts +85 -1445
- package/sparkdream/forum/v1/tx.js +335 -2630
- package/sparkdream/forum/v1/tx.registry.d.ts +1 -181
- package/sparkdream/forum/v1/tx.registry.js +1 -271
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +1 -46
- package/sparkdream/forum/v1/tx.rpc.msg.js +0 -90
- package/sparkdream/forum/v1/types.d.ts +0 -50
- package/sparkdream/forum/v1/types.js +1 -225
- package/sparkdream/lcd.d.ts +3 -0
- package/sparkdream/lcd.js +5 -0
- package/sparkdream/rep/v1/accountability.d.ts +39 -0
- package/sparkdream/rep/v1/accountability.js +181 -0
- package/sparkdream/rep/v1/genesis.d.ts +68 -0
- package/sparkdream/rep/v1/genesis.js +209 -1
- package/sparkdream/{forum → rep}/v1/gov_action_appeal.d.ts +9 -9
- package/sparkdream/{forum → rep}/v1/gov_action_appeal.js +4 -4
- package/sparkdream/{forum → rep}/v1/jury_participation.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/jury_participation.js +4 -4
- package/sparkdream/rep/v1/member.d.ts +16 -0
- package/sparkdream/rep/v1/member.js +25 -1
- package/sparkdream/{forum → rep}/v1/member_report.d.ts +9 -9
- package/sparkdream/{forum → rep}/v1/member_report.js +4 -4
- package/sparkdream/{forum → rep}/v1/member_warning.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/member_warning.js +4 -4
- package/sparkdream/rep/v1/params.d.ts +352 -8
- package/sparkdream/rep/v1/params.js +782 -254
- package/sparkdream/rep/v1/project.d.ts +10 -0
- package/sparkdream/rep/v1/project.js +13 -1
- package/sparkdream/rep/v1/query.d.ts +4197 -1129
- package/sparkdream/rep/v1/query.js +5263 -1
- package/sparkdream/rep/v1/query.lcd.d.ts +35 -1
- package/sparkdream/rep/v1/query.lcd.js +286 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +137 -1
- package/sparkdream/rep/v1/query.rpc.Query.js +332 -0
- package/sparkdream/{common → rep}/v1/reserved_tag.d.ts +11 -11
- package/sparkdream/{common → rep}/v1/reserved_tag.js +5 -5
- package/sparkdream/rep/v1/sentinel_activity.d.ts +79 -0
- package/sparkdream/rep/v1/sentinel_activity.js +219 -0
- package/sparkdream/{common → rep}/v1/tag.d.ts +14 -14
- package/sparkdream/{common → rep}/v1/tag.js +6 -6
- package/sparkdream/{forum → rep}/v1/tag_budget.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_budget.js +4 -4
- package/sparkdream/{forum → rep}/v1/tag_budget_award.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_budget_award.js +4 -4
- package/sparkdream/{forum → rep}/v1/tag_report.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_report.js +4 -4
- package/sparkdream/rep/v1/tx.amino.d.ts +81 -1
- package/sparkdream/rep/v1/tx.amino.js +80 -0
- package/sparkdream/rep/v1/tx.d.ts +1467 -0
- package/sparkdream/rep/v1/tx.js +2440 -1
- package/sparkdream/rep/v1/tx.registry.d.ts +193 -1
- package/sparkdream/rep/v1/tx.registry.js +289 -1
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +62 -1
- package/sparkdream/rep/v1/tx.rpc.msg.js +101 -0
- package/sparkdream/rpc.query.d.ts +58 -34
- package/sparkdream/rpc.query.js +3 -0
- package/sparkdream/rpc.tx.d.ts +3 -0
- package/sparkdream/rpc.tx.js +3 -0
- package/sparkdream/season/v1/params.d.ts +36 -4
- package/sparkdream/season/v1/params.js +94 -46
- package/sparkdream/shield/v1/types.d.ts +28 -0
- package/sparkdream/shield/v1/types.js +47 -5
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
- package/esm/sparkdream/forum/v1/member_salvation_status.js +0 -119
- package/sparkdream/forum/v1/member_salvation_status.d.ts +0 -54
- package/sparkdream/forum/v1/member_salvation_status.js +0 -122
package/ibc/bundle.d.ts
CHANGED
|
@@ -51,49 +51,49 @@ import * as _171 from "./lightclients/wasm/v1/genesis";
|
|
|
51
51
|
import * as _172 from "./lightclients/wasm/v1/query";
|
|
52
52
|
import * as _173 from "./lightclients/wasm/v1/tx";
|
|
53
53
|
import * as _174 from "./lightclients/wasm/v1/wasm";
|
|
54
|
-
import * as
|
|
55
|
-
import * as
|
|
56
|
-
import * as
|
|
57
|
-
import * as
|
|
58
|
-
import * as
|
|
59
|
-
import * as
|
|
60
|
-
import * as
|
|
61
|
-
import * as
|
|
62
|
-
import * as
|
|
63
|
-
import * as
|
|
64
|
-
import * as
|
|
65
|
-
import * as
|
|
66
|
-
import * as
|
|
67
|
-
import * as
|
|
68
|
-
import * as
|
|
69
|
-
import * as
|
|
70
|
-
import * as
|
|
71
|
-
import * as
|
|
72
|
-
import * as
|
|
73
|
-
import * as
|
|
74
|
-
import * as
|
|
75
|
-
import * as
|
|
76
|
-
import * as
|
|
77
|
-
import * as
|
|
78
|
-
import * as
|
|
79
|
-
import * as
|
|
80
|
-
import * as
|
|
81
|
-
import * as
|
|
82
|
-
import * as
|
|
83
|
-
import * as
|
|
54
|
+
import * as _446 from "./applications/interchain_accounts/controller/v1/query.lcd";
|
|
55
|
+
import * as _447 from "./applications/interchain_accounts/host/v1/query.lcd";
|
|
56
|
+
import * as _448 from "./applications/rate_limiting/v1/query.lcd";
|
|
57
|
+
import * as _449 from "./applications/transfer/v1/query.lcd";
|
|
58
|
+
import * as _450 from "./core/channel/v1/query.lcd";
|
|
59
|
+
import * as _451 from "./core/channel/v2/query.lcd";
|
|
60
|
+
import * as _452 from "./core/client/v1/query.lcd";
|
|
61
|
+
import * as _453 from "./core/client/v2/query.lcd";
|
|
62
|
+
import * as _454 from "./core/connection/v1/query.lcd";
|
|
63
|
+
import * as _455 from "./lightclients/wasm/v1/query.lcd";
|
|
64
|
+
import * as _456 from "./applications/interchain_accounts/controller/v1/query.rpc.Query";
|
|
65
|
+
import * as _457 from "./applications/interchain_accounts/host/v1/query.rpc.Query";
|
|
66
|
+
import * as _458 from "./applications/rate_limiting/v1/query.rpc.Query";
|
|
67
|
+
import * as _459 from "./applications/transfer/v1/query.rpc.Query";
|
|
68
|
+
import * as _460 from "./core/channel/v1/query.rpc.Query";
|
|
69
|
+
import * as _461 from "./core/channel/v2/query.rpc.Query";
|
|
70
|
+
import * as _462 from "./core/client/v1/query.rpc.Query";
|
|
71
|
+
import * as _463 from "./core/client/v2/query.rpc.Query";
|
|
72
|
+
import * as _464 from "./core/connection/v1/query.rpc.Query";
|
|
73
|
+
import * as _465 from "./lightclients/wasm/v1/query.rpc.Query";
|
|
74
|
+
import * as _466 from "./applications/interchain_accounts/controller/v1/tx.rpc.msg";
|
|
75
|
+
import * as _467 from "./applications/interchain_accounts/host/v1/tx.rpc.msg";
|
|
76
|
+
import * as _468 from "./applications/rate_limiting/v1/tx.rpc.msg";
|
|
77
|
+
import * as _469 from "./applications/transfer/v1/tx.rpc.msg";
|
|
78
|
+
import * as _470 from "./core/channel/v1/tx.rpc.msg";
|
|
79
|
+
import * as _471 from "./core/channel/v2/tx.rpc.msg";
|
|
80
|
+
import * as _472 from "./core/client/v1/tx.rpc.msg";
|
|
81
|
+
import * as _473 from "./core/client/v2/tx.rpc.msg";
|
|
82
|
+
import * as _474 from "./core/connection/v1/tx.rpc.msg";
|
|
83
|
+
import * as _475 from "./lightclients/wasm/v1/tx.rpc.msg";
|
|
84
84
|
export declare namespace ibc {
|
|
85
85
|
namespace applications {
|
|
86
86
|
namespace interchain_accounts {
|
|
87
87
|
namespace controller {
|
|
88
88
|
const v1: {
|
|
89
|
-
MsgClientImpl: typeof
|
|
90
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
91
|
-
QueryClientImpl: typeof
|
|
89
|
+
MsgClientImpl: typeof _466.MsgClientImpl;
|
|
90
|
+
createClientImpl: (rpc: import("..").TxRpc) => _466.MsgClientImpl;
|
|
91
|
+
QueryClientImpl: typeof _456.QueryClientImpl;
|
|
92
92
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
93
93
|
interchainAccount(request: _123.QueryInterchainAccountRequest): Promise<_123.QueryInterchainAccountResponse>;
|
|
94
94
|
params(request?: _123.QueryParamsRequest): Promise<_123.QueryParamsResponse>;
|
|
95
95
|
};
|
|
96
|
-
LCDQueryClient: typeof
|
|
96
|
+
LCDQueryClient: typeof _446.LCDQueryClient;
|
|
97
97
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
98
98
|
load: (protoRegistry: Registry) => void;
|
|
99
99
|
MessageComposer: {
|
|
@@ -389,13 +389,13 @@ export declare namespace ibc {
|
|
|
389
389
|
}
|
|
390
390
|
namespace host {
|
|
391
391
|
const v1: {
|
|
392
|
-
MsgClientImpl: typeof
|
|
393
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
394
|
-
QueryClientImpl: typeof
|
|
392
|
+
MsgClientImpl: typeof _467.MsgClientImpl;
|
|
393
|
+
createClientImpl: (rpc: import("..").TxRpc) => _467.MsgClientImpl;
|
|
394
|
+
QueryClientImpl: typeof _457.QueryClientImpl;
|
|
395
395
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
396
396
|
params(request?: _127.QueryParamsRequest): Promise<_127.QueryParamsResponse>;
|
|
397
397
|
};
|
|
398
|
-
LCDQueryClient: typeof
|
|
398
|
+
LCDQueryClient: typeof _447.LCDQueryClient;
|
|
399
399
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
400
400
|
load: (protoRegistry: Registry) => void;
|
|
401
401
|
MessageComposer: {
|
|
@@ -663,9 +663,9 @@ export declare namespace ibc {
|
|
|
663
663
|
}
|
|
664
664
|
namespace rate_limiting {
|
|
665
665
|
const v1: {
|
|
666
|
-
MsgClientImpl: typeof
|
|
667
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
668
|
-
QueryClientImpl: typeof
|
|
666
|
+
MsgClientImpl: typeof _468.MsgClientImpl;
|
|
667
|
+
createClientImpl: (rpc: import("..").TxRpc) => _468.MsgClientImpl;
|
|
668
|
+
QueryClientImpl: typeof _458.QueryClientImpl;
|
|
669
669
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
670
670
|
allRateLimits(request?: _134.QueryAllRateLimitsRequest): Promise<_134.QueryAllRateLimitsResponse>;
|
|
671
671
|
rateLimit(request: _134.QueryRateLimitRequest): Promise<_134.QueryRateLimitResponse>;
|
|
@@ -674,7 +674,7 @@ export declare namespace ibc {
|
|
|
674
674
|
allBlacklistedDenoms(request?: _134.QueryAllBlacklistedDenomsRequest): Promise<_134.QueryAllBlacklistedDenomsResponse>;
|
|
675
675
|
allWhitelistedAddresses(request?: _134.QueryAllWhitelistedAddressesRequest): Promise<_134.QueryAllWhitelistedAddressesResponse>;
|
|
676
676
|
};
|
|
677
|
-
LCDQueryClient: typeof
|
|
677
|
+
LCDQueryClient: typeof _448.LCDQueryClient;
|
|
678
678
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
679
679
|
load: (protoRegistry: Registry) => void;
|
|
680
680
|
MessageComposer: {
|
|
@@ -1141,9 +1141,9 @@ export declare namespace ibc {
|
|
|
1141
1141
|
}
|
|
1142
1142
|
namespace transfer {
|
|
1143
1143
|
const v1: {
|
|
1144
|
-
MsgClientImpl: typeof
|
|
1145
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
1146
|
-
QueryClientImpl: typeof
|
|
1144
|
+
MsgClientImpl: typeof _469.MsgClientImpl;
|
|
1145
|
+
createClientImpl: (rpc: import("..").TxRpc) => _469.MsgClientImpl;
|
|
1146
|
+
QueryClientImpl: typeof _459.QueryClientImpl;
|
|
1147
1147
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
1148
1148
|
params(request?: _141.QueryParamsRequest): Promise<_141.QueryParamsResponse>;
|
|
1149
1149
|
denoms(request?: _141.QueryDenomsRequest): Promise<_141.QueryDenomsResponse>;
|
|
@@ -1152,7 +1152,7 @@ export declare namespace ibc {
|
|
|
1152
1152
|
escrowAddress(request: _141.QueryEscrowAddressRequest): Promise<_141.QueryEscrowAddressResponse>;
|
|
1153
1153
|
totalEscrowForDenom(request: _141.QueryTotalEscrowForDenomRequest): Promise<_141.QueryTotalEscrowForDenomResponse>;
|
|
1154
1154
|
};
|
|
1155
|
-
LCDQueryClient: typeof
|
|
1155
|
+
LCDQueryClient: typeof _449.LCDQueryClient;
|
|
1156
1156
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
1157
1157
|
load: (protoRegistry: Registry) => void;
|
|
1158
1158
|
MessageComposer: {
|
|
@@ -1555,9 +1555,9 @@ export declare namespace ibc {
|
|
|
1555
1555
|
namespace core {
|
|
1556
1556
|
namespace channel {
|
|
1557
1557
|
const v1: {
|
|
1558
|
-
MsgClientImpl: typeof
|
|
1559
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
1560
|
-
QueryClientImpl: typeof
|
|
1558
|
+
MsgClientImpl: typeof _470.MsgClientImpl;
|
|
1559
|
+
createClientImpl: (rpc: import("..").TxRpc) => _470.MsgClientImpl;
|
|
1560
|
+
QueryClientImpl: typeof _460.QueryClientImpl;
|
|
1561
1561
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
1562
1562
|
channel(request: _147.QueryChannelRequest): Promise<_147.QueryChannelResponse>;
|
|
1563
1563
|
channels(request?: _147.QueryChannelsRequest): Promise<_147.QueryChannelsResponse>;
|
|
@@ -1574,7 +1574,7 @@ export declare namespace ibc {
|
|
|
1574
1574
|
nextSequenceReceive(request: _147.QueryNextSequenceReceiveRequest): Promise<_147.QueryNextSequenceReceiveResponse>;
|
|
1575
1575
|
nextSequenceSend(request: _147.QueryNextSequenceSendRequest): Promise<_147.QueryNextSequenceSendResponse>;
|
|
1576
1576
|
};
|
|
1577
|
-
LCDQueryClient: typeof
|
|
1577
|
+
LCDQueryClient: typeof _450.LCDQueryClient;
|
|
1578
1578
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
1579
1579
|
load: (protoRegistry: Registry) => void;
|
|
1580
1580
|
MessageComposer: {
|
|
@@ -2583,9 +2583,9 @@ export declare namespace ibc {
|
|
|
2583
2583
|
};
|
|
2584
2584
|
};
|
|
2585
2585
|
const v2: {
|
|
2586
|
-
MsgClientImpl: typeof
|
|
2587
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
2588
|
-
QueryClientImpl: typeof
|
|
2586
|
+
MsgClientImpl: typeof _471.MsgClientImpl;
|
|
2587
|
+
createClientImpl: (rpc: import("..").TxRpc) => _471.MsgClientImpl;
|
|
2588
|
+
QueryClientImpl: typeof _461.QueryClientImpl;
|
|
2589
2589
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
2590
2590
|
nextSequenceSend(request: _151.QueryNextSequenceSendRequest): Promise<_151.QueryNextSequenceSendResponse>;
|
|
2591
2591
|
packetCommitment(request: _151.QueryPacketCommitmentRequest): Promise<_151.QueryPacketCommitmentResponse>;
|
|
@@ -2596,7 +2596,7 @@ export declare namespace ibc {
|
|
|
2596
2596
|
unreceivedPackets(request: _151.QueryUnreceivedPacketsRequest): Promise<_151.QueryUnreceivedPacketsResponse>;
|
|
2597
2597
|
unreceivedAcks(request: _151.QueryUnreceivedAcksRequest): Promise<_151.QueryUnreceivedAcksResponse>;
|
|
2598
2598
|
};
|
|
2599
|
-
LCDQueryClient: typeof
|
|
2599
|
+
LCDQueryClient: typeof _451.LCDQueryClient;
|
|
2600
2600
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
2601
2601
|
load: (protoRegistry: Registry) => void;
|
|
2602
2602
|
MessageComposer: {
|
|
@@ -3123,9 +3123,9 @@ export declare namespace ibc {
|
|
|
3123
3123
|
}
|
|
3124
3124
|
namespace client {
|
|
3125
3125
|
const v1: {
|
|
3126
|
-
MsgClientImpl: typeof
|
|
3127
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
3128
|
-
QueryClientImpl: typeof
|
|
3126
|
+
MsgClientImpl: typeof _472.MsgClientImpl;
|
|
3127
|
+
createClientImpl: (rpc: import("..").TxRpc) => _472.MsgClientImpl;
|
|
3128
|
+
QueryClientImpl: typeof _462.QueryClientImpl;
|
|
3129
3129
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
3130
3130
|
clientState(request: _155.QueryClientStateRequest): Promise<_155.QueryClientStateResponse>;
|
|
3131
3131
|
clientStates(request?: _155.QueryClientStatesRequest): Promise<_155.QueryClientStatesResponse>;
|
|
@@ -3139,7 +3139,7 @@ export declare namespace ibc {
|
|
|
3139
3139
|
upgradedConsensusState(request?: _155.QueryUpgradedConsensusStateRequest): Promise<_155.QueryUpgradedConsensusStateResponse>;
|
|
3140
3140
|
verifyMembership(request: _155.QueryVerifyMembershipRequest): Promise<_155.QueryVerifyMembershipResponse>;
|
|
3141
3141
|
};
|
|
3142
|
-
LCDQueryClient: typeof
|
|
3142
|
+
LCDQueryClient: typeof _452.LCDQueryClient;
|
|
3143
3143
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
3144
3144
|
load: (protoRegistry: Registry) => void;
|
|
3145
3145
|
MessageComposer: {
|
|
@@ -3889,14 +3889,14 @@ export declare namespace ibc {
|
|
|
3889
3889
|
};
|
|
3890
3890
|
};
|
|
3891
3891
|
const v2: {
|
|
3892
|
-
MsgClientImpl: typeof
|
|
3893
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
3894
|
-
QueryClientImpl: typeof
|
|
3892
|
+
MsgClientImpl: typeof _473.MsgClientImpl;
|
|
3893
|
+
createClientImpl: (rpc: import("..").TxRpc) => _473.MsgClientImpl;
|
|
3894
|
+
QueryClientImpl: typeof _463.QueryClientImpl;
|
|
3895
3895
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
3896
3896
|
counterpartyInfo(request: _160.QueryCounterpartyInfoRequest): Promise<_160.QueryCounterpartyInfoResponse>;
|
|
3897
3897
|
config(request: _160.QueryConfigRequest): Promise<_160.QueryConfigResponse>;
|
|
3898
3898
|
};
|
|
3899
|
-
LCDQueryClient: typeof
|
|
3899
|
+
LCDQueryClient: typeof _453.LCDQueryClient;
|
|
3900
3900
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
3901
3901
|
load: (protoRegistry: Registry) => void;
|
|
3902
3902
|
MessageComposer: {
|
|
@@ -4177,9 +4177,9 @@ export declare namespace ibc {
|
|
|
4177
4177
|
}
|
|
4178
4178
|
namespace connection {
|
|
4179
4179
|
const v1: {
|
|
4180
|
-
MsgClientImpl: typeof
|
|
4181
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
4182
|
-
QueryClientImpl: typeof
|
|
4180
|
+
MsgClientImpl: typeof _474.MsgClientImpl;
|
|
4181
|
+
createClientImpl: (rpc: import("..").TxRpc) => _474.MsgClientImpl;
|
|
4182
|
+
QueryClientImpl: typeof _464.QueryClientImpl;
|
|
4183
4183
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
4184
4184
|
connection(request: _166.QueryConnectionRequest): Promise<_166.QueryConnectionResponse>;
|
|
4185
4185
|
connections(request?: _166.QueryConnectionsRequest): Promise<_166.QueryConnectionsResponse>;
|
|
@@ -4188,7 +4188,7 @@ export declare namespace ibc {
|
|
|
4188
4188
|
connectionConsensusState(request: _166.QueryConnectionConsensusStateRequest): Promise<_166.QueryConnectionConsensusStateResponse>;
|
|
4189
4189
|
connectionParams(request?: _166.QueryConnectionParamsRequest): Promise<_166.QueryConnectionParamsResponse>;
|
|
4190
4190
|
};
|
|
4191
|
-
LCDQueryClient: typeof
|
|
4191
|
+
LCDQueryClient: typeof _454.LCDQueryClient;
|
|
4192
4192
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
4193
4193
|
load: (protoRegistry: Registry) => void;
|
|
4194
4194
|
MessageComposer: {
|
|
@@ -5136,14 +5136,14 @@ export declare namespace ibc {
|
|
|
5136
5136
|
}
|
|
5137
5137
|
namespace wasm {
|
|
5138
5138
|
const v1: {
|
|
5139
|
-
MsgClientImpl: typeof
|
|
5140
|
-
createClientImpl: (rpc: import("..").TxRpc) =>
|
|
5141
|
-
QueryClientImpl: typeof
|
|
5139
|
+
MsgClientImpl: typeof _475.MsgClientImpl;
|
|
5140
|
+
createClientImpl: (rpc: import("..").TxRpc) => _475.MsgClientImpl;
|
|
5141
|
+
QueryClientImpl: typeof _465.QueryClientImpl;
|
|
5142
5142
|
createRpcQueryExtension: (base: QueryClient) => {
|
|
5143
5143
|
checksums(request?: _172.QueryChecksumsRequest): Promise<_172.QueryChecksumsResponse>;
|
|
5144
5144
|
code(request: _172.QueryCodeRequest): Promise<_172.QueryCodeResponse>;
|
|
5145
5145
|
};
|
|
5146
|
-
LCDQueryClient: typeof
|
|
5146
|
+
LCDQueryClient: typeof _455.LCDQueryClient;
|
|
5147
5147
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
5148
5148
|
load: (protoRegistry: Registry) => void;
|
|
5149
5149
|
MessageComposer: {
|
|
@@ -5479,35 +5479,35 @@ export declare namespace ibc {
|
|
|
5479
5479
|
applications: {
|
|
5480
5480
|
interchain_accounts: {
|
|
5481
5481
|
controller: {
|
|
5482
|
-
v1:
|
|
5482
|
+
v1: _466.MsgClientImpl;
|
|
5483
5483
|
};
|
|
5484
5484
|
host: {
|
|
5485
|
-
v1:
|
|
5485
|
+
v1: _467.MsgClientImpl;
|
|
5486
5486
|
};
|
|
5487
5487
|
};
|
|
5488
5488
|
rate_limiting: {
|
|
5489
|
-
v1:
|
|
5489
|
+
v1: _468.MsgClientImpl;
|
|
5490
5490
|
};
|
|
5491
5491
|
transfer: {
|
|
5492
|
-
v1:
|
|
5492
|
+
v1: _469.MsgClientImpl;
|
|
5493
5493
|
};
|
|
5494
5494
|
};
|
|
5495
5495
|
core: {
|
|
5496
5496
|
channel: {
|
|
5497
|
-
v1:
|
|
5498
|
-
v2:
|
|
5497
|
+
v1: _470.MsgClientImpl;
|
|
5498
|
+
v2: _471.MsgClientImpl;
|
|
5499
5499
|
};
|
|
5500
5500
|
client: {
|
|
5501
|
-
v1:
|
|
5502
|
-
v2:
|
|
5501
|
+
v1: _472.MsgClientImpl;
|
|
5502
|
+
v2: _473.MsgClientImpl;
|
|
5503
5503
|
};
|
|
5504
5504
|
connection: {
|
|
5505
|
-
v1:
|
|
5505
|
+
v1: _474.MsgClientImpl;
|
|
5506
5506
|
};
|
|
5507
5507
|
};
|
|
5508
5508
|
lightclients: {
|
|
5509
5509
|
wasm: {
|
|
5510
|
-
v1:
|
|
5510
|
+
v1: _475.MsgClientImpl;
|
|
5511
5511
|
};
|
|
5512
5512
|
};
|
|
5513
5513
|
};
|
|
@@ -5877,35 +5877,35 @@ export declare namespace ibc {
|
|
|
5877
5877
|
applications: {
|
|
5878
5878
|
interchain_accounts: {
|
|
5879
5879
|
controller: {
|
|
5880
|
-
v1:
|
|
5880
|
+
v1: _446.LCDQueryClient;
|
|
5881
5881
|
};
|
|
5882
5882
|
host: {
|
|
5883
|
-
v1:
|
|
5883
|
+
v1: _447.LCDQueryClient;
|
|
5884
5884
|
};
|
|
5885
5885
|
};
|
|
5886
5886
|
rate_limiting: {
|
|
5887
|
-
v1:
|
|
5887
|
+
v1: _448.LCDQueryClient;
|
|
5888
5888
|
};
|
|
5889
5889
|
transfer: {
|
|
5890
|
-
v1:
|
|
5890
|
+
v1: _449.LCDQueryClient;
|
|
5891
5891
|
};
|
|
5892
5892
|
};
|
|
5893
5893
|
core: {
|
|
5894
5894
|
channel: {
|
|
5895
|
-
v1:
|
|
5896
|
-
v2:
|
|
5895
|
+
v1: _450.LCDQueryClient;
|
|
5896
|
+
v2: _451.LCDQueryClient;
|
|
5897
5897
|
};
|
|
5898
5898
|
client: {
|
|
5899
|
-
v1:
|
|
5900
|
-
v2:
|
|
5899
|
+
v1: _452.LCDQueryClient;
|
|
5900
|
+
v2: _453.LCDQueryClient;
|
|
5901
5901
|
};
|
|
5902
5902
|
connection: {
|
|
5903
|
-
v1:
|
|
5903
|
+
v1: _454.LCDQueryClient;
|
|
5904
5904
|
};
|
|
5905
5905
|
};
|
|
5906
5906
|
lightclients: {
|
|
5907
5907
|
wasm: {
|
|
5908
|
-
v1:
|
|
5908
|
+
v1: _455.LCDQueryClient;
|
|
5909
5909
|
};
|
|
5910
5910
|
};
|
|
5911
5911
|
};
|