@sparkdreamnft/sparkdreamjs 0.0.16 → 0.0.18
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/blog/v1/params.js +51 -50
- package/esm/sparkdream/blog/v1/tx.amino.js +53 -20
- package/esm/sparkdream/bundle.js +448 -346
- package/esm/sparkdream/client.js +7 -1
- package/esm/sparkdream/collect/v1/params.js +13 -1
- package/esm/sparkdream/collect/v1/tx.amino.js +138 -36
- package/esm/sparkdream/collect/v1/types.js +13 -1
- package/esm/sparkdream/commons/v1/genesis.js +29 -1
- package/esm/sparkdream/commons/v1/query.js +317 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +23 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +20 -1
- package/esm/sparkdream/commons/v1/recurring_spend.js +296 -0
- package/esm/sparkdream/commons/v1/tx.amino.js +76 -6
- package/esm/sparkdream/commons/v1/tx.js +693 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +74 -2
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +33 -1
- package/esm/sparkdream/ecosystem/v1/tx.amino.js +18 -4
- package/esm/sparkdream/federation/v1/genesis.js +10 -10
- package/esm/sparkdream/federation/v1/params.js +29 -54
- package/esm/sparkdream/federation/v1/query.js +216 -71
- package/esm/sparkdream/federation/v1/query.lcd.js +11 -6
- package/esm/sparkdream/federation/v1/query.rpc.Query.js +24 -15
- package/esm/sparkdream/federation/v1/tx.amino.js +21 -21
- package/esm/sparkdream/federation/v1/tx.js +1146 -1105
- package/esm/sparkdream/federation/v1/tx.registry.js +74 -74
- package/esm/sparkdream/federation/v1/tx.rpc.msg.js +32 -26
- package/esm/sparkdream/federation/v1/types.js +355 -99
- package/esm/sparkdream/federation/v1/verifier_activity.js +13 -1
- package/esm/sparkdream/forum/v1/params.js +173 -148
- package/esm/sparkdream/forum/v1/tx.amino.js +69 -40
- package/esm/sparkdream/guardian/module/v1/module.js +68 -0
- package/esm/sparkdream/guardian/v1/query.js +128 -0
- package/esm/sparkdream/guardian/v1/query.lcd.js +13 -0
- package/esm/sparkdream/guardian/v1/query.rpc.Query.js +26 -0
- package/esm/sparkdream/guardian/v1/tx.amino.js +9 -0
- package/esm/sparkdream/guardian/v1/tx.js +175 -0
- package/esm/sparkdream/guardian/v1/tx.registry.js +33 -0
- package/esm/sparkdream/guardian/v1/tx.rpc.msg.js +24 -0
- package/esm/sparkdream/identity/module/v1/module.js +71 -0
- package/esm/sparkdream/identity/v1/chain_identity.js +199 -0
- package/esm/sparkdream/identity/v1/genesis.js +84 -0
- package/esm/sparkdream/identity/v1/query.js +372 -0
- package/esm/sparkdream/identity/v1/query.lcd.js +21 -0
- package/esm/sparkdream/identity/v1/query.rpc.Query.js +42 -0
- package/esm/sparkdream/lcd.js +15 -0
- package/esm/sparkdream/name/v1/params.js +19 -18
- package/esm/sparkdream/rep/v1/bonded_role.js +48 -2
- package/esm/sparkdream/rep/v1/tag.js +6 -13
- package/esm/sparkdream/rep/v1/tx.amino.js +177 -58
- package/esm/sparkdream/reveal/v1/tx.amino.js +34 -13
- package/esm/sparkdream/rpc.query.js +9 -0
- package/esm/sparkdream/rpc.tx.js +6 -0
- package/esm/sparkdream/service/module/v1/module.js +71 -0
- package/esm/sparkdream/service/v1/controller_transfer_case.js +155 -0
- package/esm/sparkdream/service/v1/genesis.js +240 -0
- package/esm/sparkdream/service/v1/operator.js +250 -0
- package/esm/sparkdream/service/v1/params.js +355 -0
- package/esm/sparkdream/service/v1/query.js +1582 -0
- package/esm/sparkdream/service/v1/query.lcd.js +107 -0
- package/esm/sparkdream/service/v1/query.rpc.Query.js +109 -0
- package/esm/sparkdream/service/v1/refile_cooldown.js +121 -0
- package/esm/sparkdream/service/v1/report.js +212 -0
- package/esm/sparkdream/service/v1/reporter_rate_limit.js +137 -0
- package/esm/sparkdream/service/v1/service_type_config.js +264 -0
- package/esm/sparkdream/service/v1/system_report_rate_limit.js +115 -0
- package/esm/sparkdream/service/v1/tier1_escrow_entry.js +145 -0
- package/esm/sparkdream/service/v1/tier1_last_slash.js +121 -0
- package/esm/sparkdream/service/v1/tx.amino.js +69 -0
- package/esm/sparkdream/service/v1/tx.js +2124 -0
- package/esm/sparkdream/service/v1/tx.registry.js +249 -0
- package/esm/sparkdream/service/v1/tx.rpc.msg.js +100 -0
- package/esm/sparkdream/service/v1/types.js +353 -0
- package/esm/sparkdream/session/v1/genesis.js +136 -10
- package/esm/sparkdream/session/v1/grant.js +1020 -0
- package/esm/sparkdream/session/v1/params.js +543 -19
- package/esm/sparkdream/session/v1/query.js +487 -0
- package/esm/sparkdream/session/v1/query.lcd.js +41 -3
- package/esm/sparkdream/session/v1/query.rpc.Query.js +36 -4
- package/esm/sparkdream/session/v1/session.js +6 -0
- package/esm/sparkdream/session/v1/tx.amino.js +17 -1
- package/esm/sparkdream/session/v1/tx.js +1066 -0
- package/esm/sparkdream/session/v1/tx.registry.js +110 -2
- package/esm/sparkdream/session/v1/tx.rpc.msg.js +65 -3
- package/esm/sparkdream/shield/v1/tx.amino.js +61 -8
- 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/blog/v1/params.d.ts +37 -28
- package/sparkdream/blog/v1/params.js +51 -50
- package/sparkdream/blog/v1/post.d.ts +2 -2
- package/sparkdream/blog/v1/tx.amino.d.ts +2 -2
- package/sparkdream/blog/v1/tx.amino.js +53 -20
- package/sparkdream/blog/v1/tx.d.ts +4 -4
- package/sparkdream/bundle.d.ts +14945 -12924
- package/sparkdream/bundle.js +448 -346
- package/sparkdream/client.d.ts +125 -50
- package/sparkdream/client.js +7 -1
- package/sparkdream/collect/v1/params.d.ts +16 -0
- package/sparkdream/collect/v1/params.js +13 -1
- package/sparkdream/collect/v1/tx.amino.d.ts +7 -7
- package/sparkdream/collect/v1/tx.amino.js +138 -36
- package/sparkdream/collect/v1/types.d.ts +2 -0
- package/sparkdream/collect/v1/types.js +13 -1
- package/sparkdream/commons/v1/genesis.d.ts +17 -0
- package/sparkdream/commons/v1/genesis.js +29 -1
- package/sparkdream/commons/v1/query.d.ts +186 -0
- package/sparkdream/commons/v1/query.js +318 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +23 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +12 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +19 -0
- package/sparkdream/commons/v1/recurring_spend.d.ts +234 -0
- package/sparkdream/commons/v1/recurring_spend.js +301 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +11 -6
- package/sparkdream/commons/v1/tx.amino.js +75 -5
- package/sparkdream/commons/v1/tx.d.ts +472 -0
- package/sparkdream/commons/v1/tx.js +694 -1
- package/sparkdream/commons/v1/tx.registry.d.ts +49 -1
- package/sparkdream/commons/v1/tx.registry.js +73 -1
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +29 -1
- package/sparkdream/commons/v1/tx.rpc.msg.js +32 -0
- package/sparkdream/ecosystem/v1/tx.amino.d.ts +1 -1
- package/sparkdream/ecosystem/v1/tx.amino.js +19 -5
- package/sparkdream/federation/v1/genesis.d.ts +3 -3
- package/sparkdream/federation/v1/genesis.js +9 -9
- package/sparkdream/federation/v1/params.d.ts +64 -13
- package/sparkdream/federation/v1/params.js +29 -54
- package/sparkdream/federation/v1/query.d.ts +209 -100
- package/sparkdream/federation/v1/query.js +216 -71
- package/sparkdream/federation/v1/query.lcd.d.ts +4 -3
- package/sparkdream/federation/v1/query.lcd.js +11 -6
- package/sparkdream/federation/v1/query.rpc.Query.d.ts +10 -7
- package/sparkdream/federation/v1/query.rpc.Query.js +24 -15
- package/sparkdream/federation/v1/tx.amino.d.ts +21 -21
- package/sparkdream/federation/v1/tx.amino.js +20 -20
- package/sparkdream/federation/v1/tx.d.ts +479 -352
- package/sparkdream/federation/v1/tx.js +1147 -1106
- package/sparkdream/federation/v1/tx.registry.d.ts +49 -49
- package/sparkdream/federation/v1/tx.registry.js +73 -73
- package/sparkdream/federation/v1/tx.rpc.msg.d.ts +18 -9
- package/sparkdream/federation/v1/tx.rpc.msg.js +31 -25
- package/sparkdream/federation/v1/types.d.ts +307 -41
- package/sparkdream/federation/v1/types.js +360 -100
- package/sparkdream/federation/v1/verifier_activity.d.ts +18 -0
- package/sparkdream/federation/v1/verifier_activity.js +13 -1
- package/sparkdream/forum/v1/params.d.ts +99 -62
- package/sparkdream/forum/v1/params.js +173 -148
- package/sparkdream/forum/v1/tx.amino.d.ts +2 -2
- package/sparkdream/forum/v1/tx.amino.js +69 -40
- package/sparkdream/guardian/module/v1/module.d.ts +74 -0
- package/sparkdream/guardian/module/v1/module.js +71 -0
- package/sparkdream/guardian/v1/query.d.ts +88 -0
- package/sparkdream/guardian/v1/query.js +131 -0
- package/sparkdream/guardian/v1/query.lcd.d.ts +9 -0
- package/sparkdream/guardian/v1/query.lcd.js +17 -0
- package/sparkdream/guardian/v1/query.rpc.Query.d.ts +20 -0
- package/sparkdream/guardian/v1/query.rpc.Query.js +31 -0
- package/sparkdream/guardian/v1/tx.amino.d.ts +8 -0
- package/sparkdream/guardian/v1/tx.amino.js +12 -0
- package/sparkdream/guardian/v1/tx.d.ts +138 -0
- package/sparkdream/guardian/v1/tx.js +181 -0
- package/sparkdream/guardian/v1/tx.registry.d.ts +25 -0
- package/sparkdream/guardian/v1/tx.registry.js +37 -0
- package/sparkdream/guardian/v1/tx.rpc.msg.d.ts +22 -0
- package/sparkdream/guardian/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/identity/module/v1/module.d.ts +54 -0
- package/sparkdream/identity/module/v1/module.js +74 -0
- package/sparkdream/identity/v1/chain_identity.d.ts +131 -0
- package/sparkdream/identity/v1/chain_identity.js +202 -0
- package/sparkdream/identity/v1/genesis.d.ts +65 -0
- package/sparkdream/identity/v1/genesis.js +87 -0
- package/sparkdream/identity/v1/query.d.ts +243 -0
- package/sparkdream/identity/v1/query.js +375 -0
- package/sparkdream/identity/v1/query.lcd.d.ts +11 -0
- package/sparkdream/identity/v1/query.lcd.js +25 -0
- package/sparkdream/identity/v1/query.rpc.Query.d.ts +26 -0
- package/sparkdream/identity/v1/query.rpc.Query.js +47 -0
- package/sparkdream/lcd.d.ts +9 -0
- package/sparkdream/lcd.js +15 -0
- package/sparkdream/name/v1/params.d.ts +25 -8
- package/sparkdream/name/v1/params.js +19 -18
- package/sparkdream/rep/v1/bonded_role.d.ts +51 -0
- package/sparkdream/rep/v1/bonded_role.js +48 -2
- package/sparkdream/rep/v1/tag.d.ts +15 -2
- package/sparkdream/rep/v1/tag.js +6 -13
- package/sparkdream/rep/v1/tx.amino.d.ts +9 -9
- package/sparkdream/rep/v1/tx.amino.js +177 -58
- package/sparkdream/reveal/v1/tx.amino.d.ts +1 -1
- package/sparkdream/reveal/v1/tx.amino.js +34 -13
- package/sparkdream/rpc.query.d.ts +34 -2
- package/sparkdream/rpc.query.js +9 -0
- package/sparkdream/rpc.tx.d.ts +6 -0
- package/sparkdream/rpc.tx.js +6 -0
- package/sparkdream/service/module/v1/module.d.ts +54 -0
- package/sparkdream/service/module/v1/module.js +74 -0
- package/sparkdream/service/v1/controller_transfer_case.d.ts +125 -0
- package/sparkdream/service/v1/controller_transfer_case.js +158 -0
- package/sparkdream/service/v1/genesis.d.ts +172 -0
- package/sparkdream/service/v1/genesis.js +243 -0
- package/sparkdream/service/v1/operator.d.ts +215 -0
- package/sparkdream/service/v1/operator.js +253 -0
- package/sparkdream/service/v1/params.d.ts +346 -0
- package/sparkdream/service/v1/params.js +358 -0
- package/sparkdream/service/v1/query.d.ts +964 -0
- package/sparkdream/service/v1/query.js +1585 -0
- package/sparkdream/service/v1/query.lcd.d.ts +18 -0
- package/sparkdream/service/v1/query.lcd.js +111 -0
- package/sparkdream/service/v1/query.rpc.Query.d.ts +63 -0
- package/sparkdream/service/v1/query.rpc.Query.js +114 -0
- package/sparkdream/service/v1/refile_cooldown.d.ts +105 -0
- package/sparkdream/service/v1/refile_cooldown.js +124 -0
- package/sparkdream/service/v1/report.d.ts +174 -0
- package/sparkdream/service/v1/report.js +215 -0
- package/sparkdream/service/v1/reporter_rate_limit.d.ts +112 -0
- package/sparkdream/service/v1/reporter_rate_limit.js +140 -0
- package/sparkdream/service/v1/service_type_config.d.ts +222 -0
- package/sparkdream/service/v1/service_type_config.js +269 -0
- package/sparkdream/service/v1/system_report_rate_limit.d.ts +106 -0
- package/sparkdream/service/v1/system_report_rate_limit.js +118 -0
- package/sparkdream/service/v1/tier1_escrow_entry.d.ts +125 -0
- package/sparkdream/service/v1/tier1_escrow_entry.js +148 -0
- package/sparkdream/service/v1/tier1_last_slash.d.ts +101 -0
- package/sparkdream/service/v1/tier1_last_slash.js +124 -0
- package/sparkdream/service/v1/tx.amino.d.ts +68 -0
- package/sparkdream/service/v1/tx.amino.js +72 -0
- package/sparkdream/service/v1/tx.d.ts +1264 -0
- package/sparkdream/service/v1/tx.js +2127 -0
- package/sparkdream/service/v1/tx.registry.d.ts +169 -0
- package/sparkdream/service/v1/tx.registry.js +253 -0
- package/sparkdream/service/v1/tx.rpc.msg.d.ts +80 -0
- package/sparkdream/service/v1/tx.rpc.msg.js +105 -0
- package/sparkdream/service/v1/types.d.ts +94 -0
- package/sparkdream/service/v1/types.js +370 -0
- package/sparkdream/session/v1/genesis.d.ts +93 -9
- package/sparkdream/session/v1/genesis.js +137 -11
- package/sparkdream/session/v1/grant.d.ts +517 -0
- package/sparkdream/session/v1/grant.js +1027 -0
- package/sparkdream/session/v1/params.d.ts +338 -7
- package/sparkdream/session/v1/params.js +543 -19
- package/sparkdream/session/v1/query.d.ts +265 -0
- package/sparkdream/session/v1/query.js +488 -1
- package/sparkdream/session/v1/query.lcd.d.ts +4 -1
- package/sparkdream/session/v1/query.lcd.js +41 -3
- package/sparkdream/session/v1/query.rpc.Query.d.ts +27 -4
- package/sparkdream/session/v1/query.rpc.Query.js +35 -3
- package/sparkdream/session/v1/session.d.ts +18 -0
- package/sparkdream/session/v1/session.js +6 -0
- package/sparkdream/session/v1/tx.amino.d.ts +1 -1
- package/sparkdream/session/v1/tx.amino.js +17 -1
- package/sparkdream/session/v1/tx.d.ts +660 -0
- package/sparkdream/session/v1/tx.js +1067 -1
- package/sparkdream/session/v1/tx.registry.d.ts +73 -1
- package/sparkdream/session/v1/tx.registry.js +109 -1
- package/sparkdream/session/v1/tx.rpc.msg.d.ts +63 -3
- package/sparkdream/session/v1/tx.rpc.msg.js +64 -2
- package/sparkdream/shield/v1/tx.amino.d.ts +3 -3
- package/sparkdream/shield/v1/tx.amino.js +61 -8
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
package/sparkdream/bundle.js
CHANGED
|
@@ -59,215 +59,251 @@ const _195 = __importStar(require("./commons/v1/group"));
|
|
|
59
59
|
const _196 = __importStar(require("./commons/v1/params"));
|
|
60
60
|
const _197 = __importStar(require("./commons/v1/policy_permissions"));
|
|
61
61
|
const _198 = __importStar(require("./commons/v1/query"));
|
|
62
|
-
const _199 = __importStar(require("./commons/v1/
|
|
63
|
-
const _200 = __importStar(require("./
|
|
64
|
-
const _201 = __importStar(require("./ecosystem/v1/
|
|
65
|
-
const _202 = __importStar(require("./ecosystem/v1/
|
|
66
|
-
const _203 = __importStar(require("./ecosystem/v1/
|
|
67
|
-
const _204 = __importStar(require("./ecosystem/v1/
|
|
68
|
-
const _205 = __importStar(require("./
|
|
69
|
-
const _206 = __importStar(require("./federation/v1/
|
|
70
|
-
const _207 = __importStar(require("./federation/v1/
|
|
71
|
-
const _208 = __importStar(require("./federation/v1/
|
|
72
|
-
const _209 = __importStar(require("./federation/v1/
|
|
73
|
-
const _210 = __importStar(require("./federation/v1/
|
|
74
|
-
const _211 = __importStar(require("./federation/v1/
|
|
75
|
-
const _212 = __importStar(require("./federation/v1/
|
|
76
|
-
const _213 = __importStar(require("./
|
|
77
|
-
const _214 = __importStar(require("./forum/v1/
|
|
78
|
-
const _215 = __importStar(require("./forum/v1/
|
|
79
|
-
const _216 = __importStar(require("./forum/v1/
|
|
80
|
-
const _217 = __importStar(require("./forum/v1/
|
|
81
|
-
const _218 = __importStar(require("./forum/v1/
|
|
82
|
-
const _219 = __importStar(require("./forum/v1/
|
|
83
|
-
const _220 = __importStar(require("./forum/v1/
|
|
84
|
-
const _221 = __importStar(require("./forum/v1/
|
|
85
|
-
const _222 = __importStar(require("./forum/v1/
|
|
86
|
-
const _223 = __importStar(require("./forum/v1/
|
|
87
|
-
const _224 = __importStar(require("./forum/v1/
|
|
88
|
-
const _225 = __importStar(require("./forum/v1/
|
|
89
|
-
const _226 = __importStar(require("./forum/v1/
|
|
90
|
-
const _227 = __importStar(require("./forum/v1/
|
|
91
|
-
const _228 = __importStar(require("./forum/v1/
|
|
92
|
-
const _229 = __importStar(require("./forum/v1/
|
|
93
|
-
const _230 = __importStar(require("./forum/v1/
|
|
94
|
-
const _231 = __importStar(require("./forum/v1/
|
|
95
|
-
const _232 = __importStar(require("./
|
|
96
|
-
const _233 = __importStar(require("./futarchy/v1/
|
|
97
|
-
const _234 = __importStar(require("./futarchy/v1/
|
|
98
|
-
const _235 = __importStar(require("./futarchy/v1/
|
|
99
|
-
const _236 = __importStar(require("./futarchy/v1/
|
|
100
|
-
const _237 = __importStar(require("./futarchy/v1/
|
|
101
|
-
const _238 = __importStar(require("./
|
|
102
|
-
const _239 = __importStar(require("./
|
|
103
|
-
const _240 = __importStar(require("./
|
|
104
|
-
const _241 = __importStar(require("./
|
|
105
|
-
const _242 = __importStar(require("./
|
|
106
|
-
const _243 = __importStar(require("./
|
|
107
|
-
const _244 = __importStar(require("./
|
|
108
|
-
const _245 = __importStar(require("./
|
|
109
|
-
const _246 = __importStar(require("./
|
|
110
|
-
const _247 = __importStar(require("./
|
|
111
|
-
const _248 = __importStar(require("./
|
|
112
|
-
const _249 = __importStar(require("./
|
|
113
|
-
const _250 = __importStar(require("./
|
|
114
|
-
const _251 = __importStar(require("./
|
|
115
|
-
const _252 = __importStar(require("./
|
|
116
|
-
const _253 = __importStar(require("./
|
|
117
|
-
const _254 = __importStar(require("./rep/v1/
|
|
118
|
-
const _255 = __importStar(require("./rep/v1/
|
|
119
|
-
const _256 = __importStar(require("./rep/v1/
|
|
120
|
-
const _257 = __importStar(require("./rep/v1/
|
|
121
|
-
const _258 = __importStar(require("./rep/v1/
|
|
122
|
-
const _259 = __importStar(require("./rep/v1/
|
|
123
|
-
const _260 = __importStar(require("./rep/v1/
|
|
124
|
-
const _261 = __importStar(require("./rep/v1/
|
|
125
|
-
const _262 = __importStar(require("./rep/v1/
|
|
126
|
-
const _263 = __importStar(require("./rep/v1/
|
|
127
|
-
const _264 = __importStar(require("./rep/v1/
|
|
128
|
-
const _265 = __importStar(require("./rep/v1/
|
|
129
|
-
const _266 = __importStar(require("./rep/v1/
|
|
130
|
-
const _267 = __importStar(require("./rep/v1/
|
|
131
|
-
const _268 = __importStar(require("./rep/v1/
|
|
132
|
-
const _269 = __importStar(require("./rep/v1/
|
|
133
|
-
const _270 = __importStar(require("./rep/v1/
|
|
134
|
-
const _271 = __importStar(require("./rep/v1/
|
|
135
|
-
const _272 = __importStar(require("./
|
|
136
|
-
const _273 = __importStar(require("./
|
|
137
|
-
const _274 = __importStar(require("./
|
|
138
|
-
const _275 = __importStar(require("./
|
|
139
|
-
const _276 = __importStar(require("./
|
|
140
|
-
const _277 = __importStar(require("./
|
|
141
|
-
const _278 = __importStar(require("./
|
|
142
|
-
const _279 = __importStar(require("./
|
|
143
|
-
const _280 = __importStar(require("./
|
|
144
|
-
const _281 = __importStar(require("./
|
|
145
|
-
const _282 = __importStar(require("./
|
|
146
|
-
const _283 = __importStar(require("./
|
|
147
|
-
const _284 = __importStar(require("./
|
|
148
|
-
const _285 = __importStar(require("./
|
|
149
|
-
const _286 = __importStar(require("./season/v1/
|
|
150
|
-
const _287 = __importStar(require("./season/v1/
|
|
151
|
-
const _288 = __importStar(require("./season/v1/
|
|
152
|
-
const _289 = __importStar(require("./season/v1/
|
|
153
|
-
const _290 = __importStar(require("./season/v1/
|
|
154
|
-
const _291 = __importStar(require("./season/v1/
|
|
155
|
-
const _292 = __importStar(require("./season/v1/
|
|
156
|
-
const _293 = __importStar(require("./season/v1/
|
|
157
|
-
const _294 = __importStar(require("./season/v1/
|
|
158
|
-
const _295 = __importStar(require("./season/v1/
|
|
159
|
-
const _296 = __importStar(require("./season/v1/
|
|
160
|
-
const _297 = __importStar(require("./season/v1/
|
|
161
|
-
const _298 = __importStar(require("./season/v1/
|
|
162
|
-
const _299 = __importStar(require("./season/v1/
|
|
163
|
-
const _300 = __importStar(require("./season/v1/
|
|
164
|
-
const _301 = __importStar(require("./season/v1/
|
|
165
|
-
const _302 = __importStar(require("./season/v1/
|
|
166
|
-
const _303 = __importStar(require("./season/v1/
|
|
167
|
-
const _304 = __importStar(require("./season/v1/
|
|
168
|
-
const _305 = __importStar(require("./season/v1/
|
|
169
|
-
const _306 = __importStar(require("./season/v1/
|
|
170
|
-
const _307 = __importStar(require("./
|
|
171
|
-
const _308 = __importStar(require("./
|
|
172
|
-
const _309 = __importStar(require("./
|
|
173
|
-
const _310 = __importStar(require("./
|
|
174
|
-
const _311 = __importStar(require("./
|
|
175
|
-
const _312 = __importStar(require("./
|
|
176
|
-
const _313 = __importStar(require("./
|
|
177
|
-
const _314 = __importStar(require("./
|
|
178
|
-
const _315 = __importStar(require("./
|
|
179
|
-
const _316 = __importStar(require("./
|
|
180
|
-
const _317 = __importStar(require("./
|
|
181
|
-
const _318 = __importStar(require("./
|
|
182
|
-
const _319 = __importStar(require("./
|
|
183
|
-
const _320 = __importStar(require("./
|
|
184
|
-
const _321 = __importStar(require("./
|
|
185
|
-
const _322 = __importStar(require("./
|
|
186
|
-
const _323 = __importStar(require("./
|
|
187
|
-
const _324 = __importStar(require("./
|
|
188
|
-
const _325 = __importStar(require("./
|
|
189
|
-
const _326 = __importStar(require("./
|
|
190
|
-
const _327 = __importStar(require("./
|
|
191
|
-
const _328 = __importStar(require("./
|
|
192
|
-
const _329 = __importStar(require("./
|
|
193
|
-
const
|
|
194
|
-
const
|
|
195
|
-
const
|
|
196
|
-
const
|
|
197
|
-
const
|
|
198
|
-
const
|
|
199
|
-
const
|
|
200
|
-
const
|
|
201
|
-
const
|
|
202
|
-
const
|
|
203
|
-
const
|
|
204
|
-
const
|
|
205
|
-
const
|
|
206
|
-
const
|
|
207
|
-
const
|
|
208
|
-
const
|
|
209
|
-
const
|
|
210
|
-
const
|
|
211
|
-
const
|
|
212
|
-
const
|
|
213
|
-
const
|
|
214
|
-
const
|
|
215
|
-
const
|
|
216
|
-
const
|
|
217
|
-
const _502 = __importStar(require("./
|
|
218
|
-
const _503 = __importStar(require("./
|
|
219
|
-
const _504 = __importStar(require("./
|
|
220
|
-
const _505 = __importStar(require("./
|
|
221
|
-
const _506 = __importStar(require("./
|
|
222
|
-
const _507 = __importStar(require("./
|
|
223
|
-
const _508 = __importStar(require("./
|
|
224
|
-
const _509 = __importStar(require("./
|
|
225
|
-
const _510 = __importStar(require("./
|
|
226
|
-
const _511 = __importStar(require("./
|
|
227
|
-
const _512 = __importStar(require("./
|
|
228
|
-
const _513 = __importStar(require("./
|
|
229
|
-
const _514 = __importStar(require("./
|
|
230
|
-
const _515 = __importStar(require("./
|
|
231
|
-
const _516 = __importStar(require("./
|
|
232
|
-
const _517 = __importStar(require("./
|
|
233
|
-
const _518 = __importStar(require("./
|
|
234
|
-
const _519 = __importStar(require("./
|
|
235
|
-
const _520 = __importStar(require("./
|
|
236
|
-
const _521 = __importStar(require("./
|
|
237
|
-
const _522 = __importStar(require("./
|
|
238
|
-
const _523 = __importStar(require("./
|
|
239
|
-
const _524 = __importStar(require("./
|
|
240
|
-
const _525 = __importStar(require("./
|
|
241
|
-
const _526 = __importStar(require("./
|
|
242
|
-
const _527 = __importStar(require("./
|
|
243
|
-
const _528 = __importStar(require("./
|
|
244
|
-
const _529 = __importStar(require("./
|
|
245
|
-
const _530 = __importStar(require("./
|
|
246
|
-
const _531 = __importStar(require("./
|
|
247
|
-
const _532 = __importStar(require("./
|
|
248
|
-
const _533 = __importStar(require("./
|
|
249
|
-
const _534 = __importStar(require("./
|
|
250
|
-
const _535 = __importStar(require("./
|
|
251
|
-
const _536 = __importStar(require("./
|
|
252
|
-
const _537 = __importStar(require("./
|
|
253
|
-
const _538 = __importStar(require("./
|
|
254
|
-
const _539 = __importStar(require("./
|
|
255
|
-
const _540 = __importStar(require("./
|
|
256
|
-
const _541 = __importStar(require("./
|
|
257
|
-
const _542 = __importStar(require("./
|
|
258
|
-
const _543 = __importStar(require("./
|
|
259
|
-
const _544 = __importStar(require("./
|
|
260
|
-
const _545 = __importStar(require("./name/v1/
|
|
261
|
-
const _546 = __importStar(require("./rep/v1/
|
|
262
|
-
const _547 = __importStar(require("./reveal/v1/
|
|
263
|
-
const _548 = __importStar(require("./season/v1/
|
|
264
|
-
const _549 = __importStar(require("./
|
|
265
|
-
const _550 = __importStar(require("./
|
|
266
|
-
const _551 = __importStar(require("./
|
|
267
|
-
const _552 = __importStar(require("./
|
|
268
|
-
const
|
|
269
|
-
const
|
|
270
|
-
const
|
|
62
|
+
const _199 = __importStar(require("./commons/v1/recurring_spend"));
|
|
63
|
+
const _200 = __importStar(require("./commons/v1/tx"));
|
|
64
|
+
const _201 = __importStar(require("./ecosystem/module/v1/module"));
|
|
65
|
+
const _202 = __importStar(require("./ecosystem/v1/genesis"));
|
|
66
|
+
const _203 = __importStar(require("./ecosystem/v1/params"));
|
|
67
|
+
const _204 = __importStar(require("./ecosystem/v1/query"));
|
|
68
|
+
const _205 = __importStar(require("./ecosystem/v1/tx"));
|
|
69
|
+
const _206 = __importStar(require("./federation/module/v1/module"));
|
|
70
|
+
const _207 = __importStar(require("./federation/v1/genesis"));
|
|
71
|
+
const _208 = __importStar(require("./federation/v1/packet"));
|
|
72
|
+
const _209 = __importStar(require("./federation/v1/params"));
|
|
73
|
+
const _210 = __importStar(require("./federation/v1/query"));
|
|
74
|
+
const _211 = __importStar(require("./federation/v1/tx"));
|
|
75
|
+
const _212 = __importStar(require("./federation/v1/types"));
|
|
76
|
+
const _213 = __importStar(require("./federation/v1/verifier_activity"));
|
|
77
|
+
const _214 = __importStar(require("./forum/module/v1/module"));
|
|
78
|
+
const _215 = __importStar(require("./forum/v1/archive_metadata"));
|
|
79
|
+
const _216 = __importStar(require("./forum/v1/bounty"));
|
|
80
|
+
const _217 = __importStar(require("./forum/v1/genesis"));
|
|
81
|
+
const _218 = __importStar(require("./forum/v1/hide_record"));
|
|
82
|
+
const _219 = __importStar(require("./forum/v1/params"));
|
|
83
|
+
const _220 = __importStar(require("./forum/v1/post_flag"));
|
|
84
|
+
const _221 = __importStar(require("./forum/v1/post"));
|
|
85
|
+
const _222 = __importStar(require("./forum/v1/query"));
|
|
86
|
+
const _223 = __importStar(require("./forum/v1/sentinel_activity"));
|
|
87
|
+
const _224 = __importStar(require("./forum/v1/thread_follow_count"));
|
|
88
|
+
const _225 = __importStar(require("./forum/v1/thread_follow"));
|
|
89
|
+
const _226 = __importStar(require("./forum/v1/thread_lock_record"));
|
|
90
|
+
const _227 = __importStar(require("./forum/v1/thread_metadata"));
|
|
91
|
+
const _228 = __importStar(require("./forum/v1/thread_move_record"));
|
|
92
|
+
const _229 = __importStar(require("./forum/v1/tx"));
|
|
93
|
+
const _230 = __importStar(require("./forum/v1/types"));
|
|
94
|
+
const _231 = __importStar(require("./forum/v1/user_rate_limit"));
|
|
95
|
+
const _232 = __importStar(require("./forum/v1/user_reaction_limit"));
|
|
96
|
+
const _233 = __importStar(require("./futarchy/module/v1/module"));
|
|
97
|
+
const _234 = __importStar(require("./futarchy/v1/genesis"));
|
|
98
|
+
const _235 = __importStar(require("./futarchy/v1/market"));
|
|
99
|
+
const _236 = __importStar(require("./futarchy/v1/params"));
|
|
100
|
+
const _237 = __importStar(require("./futarchy/v1/query"));
|
|
101
|
+
const _238 = __importStar(require("./futarchy/v1/tx"));
|
|
102
|
+
const _239 = __importStar(require("./guardian/module/v1/module"));
|
|
103
|
+
const _240 = __importStar(require("./guardian/v1/query"));
|
|
104
|
+
const _241 = __importStar(require("./guardian/v1/tx"));
|
|
105
|
+
const _242 = __importStar(require("./identity/module/v1/module"));
|
|
106
|
+
const _243 = __importStar(require("./identity/v1/chain_identity"));
|
|
107
|
+
const _244 = __importStar(require("./identity/v1/genesis"));
|
|
108
|
+
const _245 = __importStar(require("./identity/v1/query"));
|
|
109
|
+
const _246 = __importStar(require("./name/module/v1/module"));
|
|
110
|
+
const _247 = __importStar(require("./name/v1/dispute"));
|
|
111
|
+
const _248 = __importStar(require("./name/v1/genesis"));
|
|
112
|
+
const _249 = __importStar(require("./name/v1/name_record"));
|
|
113
|
+
const _250 = __importStar(require("./name/v1/owner_info"));
|
|
114
|
+
const _251 = __importStar(require("./name/v1/params"));
|
|
115
|
+
const _252 = __importStar(require("./name/v1/query"));
|
|
116
|
+
const _253 = __importStar(require("./name/v1/tx"));
|
|
117
|
+
const _254 = __importStar(require("./rep/module/v1/module"));
|
|
118
|
+
const _255 = __importStar(require("./rep/v1/accountability"));
|
|
119
|
+
const _256 = __importStar(require("./rep/v1/bonded_role"));
|
|
120
|
+
const _257 = __importStar(require("./rep/v1/challenge"));
|
|
121
|
+
const _258 = __importStar(require("./rep/v1/content_challenge"));
|
|
122
|
+
const _259 = __importStar(require("./rep/v1/genesis"));
|
|
123
|
+
const _260 = __importStar(require("./rep/v1/gov_action_appeal"));
|
|
124
|
+
const _261 = __importStar(require("./rep/v1/initiative"));
|
|
125
|
+
const _262 = __importStar(require("./rep/v1/interim_template"));
|
|
126
|
+
const _263 = __importStar(require("./rep/v1/interim"));
|
|
127
|
+
const _264 = __importStar(require("./rep/v1/invitation"));
|
|
128
|
+
const _265 = __importStar(require("./rep/v1/jury_participation"));
|
|
129
|
+
const _266 = __importStar(require("./rep/v1/jury_review"));
|
|
130
|
+
const _267 = __importStar(require("./rep/v1/member_report"));
|
|
131
|
+
const _268 = __importStar(require("./rep/v1/member_warning"));
|
|
132
|
+
const _269 = __importStar(require("./rep/v1/member"));
|
|
133
|
+
const _270 = __importStar(require("./rep/v1/params"));
|
|
134
|
+
const _271 = __importStar(require("./rep/v1/project"));
|
|
135
|
+
const _272 = __importStar(require("./rep/v1/query"));
|
|
136
|
+
const _273 = __importStar(require("./rep/v1/reserved_tag"));
|
|
137
|
+
const _274 = __importStar(require("./rep/v1/stake"));
|
|
138
|
+
const _275 = __importStar(require("./rep/v1/tag_budget_award"));
|
|
139
|
+
const _276 = __importStar(require("./rep/v1/tag_budget"));
|
|
140
|
+
const _277 = __importStar(require("./rep/v1/tag_report"));
|
|
141
|
+
const _278 = __importStar(require("./rep/v1/tag"));
|
|
142
|
+
const _279 = __importStar(require("./rep/v1/tx"));
|
|
143
|
+
const _280 = __importStar(require("./reveal/module/v1/module"));
|
|
144
|
+
const _281 = __importStar(require("./reveal/v1/genesis"));
|
|
145
|
+
const _282 = __importStar(require("./reveal/v1/params"));
|
|
146
|
+
const _283 = __importStar(require("./reveal/v1/query"));
|
|
147
|
+
const _284 = __importStar(require("./reveal/v1/tx"));
|
|
148
|
+
const _285 = __importStar(require("./reveal/v1/types"));
|
|
149
|
+
const _286 = __importStar(require("./season/module/v1/module"));
|
|
150
|
+
const _287 = __importStar(require("./season/v1/achievement"));
|
|
151
|
+
const _288 = __importStar(require("./season/v1/display_name_appeal_stake"));
|
|
152
|
+
const _289 = __importStar(require("./season/v1/display_name_moderation"));
|
|
153
|
+
const _290 = __importStar(require("./season/v1/display_name_report_stake"));
|
|
154
|
+
const _291 = __importStar(require("./season/v1/enums"));
|
|
155
|
+
const _292 = __importStar(require("./season/v1/epoch_xp_tracker"));
|
|
156
|
+
const _293 = __importStar(require("./season/v1/forum_xp_cooldown"));
|
|
157
|
+
const _294 = __importStar(require("./season/v1/genesis"));
|
|
158
|
+
const _295 = __importStar(require("./season/v1/guild_invite"));
|
|
159
|
+
const _296 = __importStar(require("./season/v1/guild_membership"));
|
|
160
|
+
const _297 = __importStar(require("./season/v1/guild"));
|
|
161
|
+
const _298 = __importStar(require("./season/v1/member_profile"));
|
|
162
|
+
const _299 = __importStar(require("./season/v1/member_quest_progress"));
|
|
163
|
+
const _300 = __importStar(require("./season/v1/member_registration"));
|
|
164
|
+
const _301 = __importStar(require("./season/v1/member_season_snapshot"));
|
|
165
|
+
const _302 = __importStar(require("./season/v1/next_season_info"));
|
|
166
|
+
const _303 = __importStar(require("./season/v1/nomination"));
|
|
167
|
+
const _304 = __importStar(require("./season/v1/params"));
|
|
168
|
+
const _305 = __importStar(require("./season/v1/query"));
|
|
169
|
+
const _306 = __importStar(require("./season/v1/quest"));
|
|
170
|
+
const _307 = __importStar(require("./season/v1/season_snapshot"));
|
|
171
|
+
const _308 = __importStar(require("./season/v1/season_title_eligibility"));
|
|
172
|
+
const _309 = __importStar(require("./season/v1/season_transition_state"));
|
|
173
|
+
const _310 = __importStar(require("./season/v1/season"));
|
|
174
|
+
const _311 = __importStar(require("./season/v1/title"));
|
|
175
|
+
const _312 = __importStar(require("./season/v1/transition_recovery_state"));
|
|
176
|
+
const _313 = __importStar(require("./season/v1/tx"));
|
|
177
|
+
const _314 = __importStar(require("./season/v1/vote_xp_record"));
|
|
178
|
+
const _315 = __importStar(require("./service/module/v1/module"));
|
|
179
|
+
const _316 = __importStar(require("./service/v1/controller_transfer_case"));
|
|
180
|
+
const _317 = __importStar(require("./service/v1/genesis"));
|
|
181
|
+
const _318 = __importStar(require("./service/v1/operator"));
|
|
182
|
+
const _319 = __importStar(require("./service/v1/params"));
|
|
183
|
+
const _320 = __importStar(require("./service/v1/query"));
|
|
184
|
+
const _321 = __importStar(require("./service/v1/refile_cooldown"));
|
|
185
|
+
const _322 = __importStar(require("./service/v1/report"));
|
|
186
|
+
const _323 = __importStar(require("./service/v1/reporter_rate_limit"));
|
|
187
|
+
const _324 = __importStar(require("./service/v1/service_type_config"));
|
|
188
|
+
const _325 = __importStar(require("./service/v1/system_report_rate_limit"));
|
|
189
|
+
const _326 = __importStar(require("./service/v1/tier1_escrow_entry"));
|
|
190
|
+
const _327 = __importStar(require("./service/v1/tier1_last_slash"));
|
|
191
|
+
const _328 = __importStar(require("./service/v1/tx"));
|
|
192
|
+
const _329 = __importStar(require("./service/v1/types"));
|
|
193
|
+
const _330 = __importStar(require("./session/module/v1/module"));
|
|
194
|
+
const _331 = __importStar(require("./session/v1/genesis"));
|
|
195
|
+
const _332 = __importStar(require("./session/v1/grant"));
|
|
196
|
+
const _333 = __importStar(require("./session/v1/params"));
|
|
197
|
+
const _334 = __importStar(require("./session/v1/query"));
|
|
198
|
+
const _335 = __importStar(require("./session/v1/session"));
|
|
199
|
+
const _336 = __importStar(require("./session/v1/tx"));
|
|
200
|
+
const _337 = __importStar(require("./shield/module/v1/module"));
|
|
201
|
+
const _338 = __importStar(require("./shield/v1/genesis"));
|
|
202
|
+
const _339 = __importStar(require("./shield/v1/params"));
|
|
203
|
+
const _340 = __importStar(require("./shield/v1/query"));
|
|
204
|
+
const _341 = __importStar(require("./shield/v1/tx"));
|
|
205
|
+
const _342 = __importStar(require("./shield/v1/types"));
|
|
206
|
+
const _343 = __importStar(require("./sparkdream/module/v1/module"));
|
|
207
|
+
const _344 = __importStar(require("./sparkdream/v1/genesis"));
|
|
208
|
+
const _345 = __importStar(require("./sparkdream/v1/params"));
|
|
209
|
+
const _346 = __importStar(require("./sparkdream/v1/query"));
|
|
210
|
+
const _347 = __importStar(require("./sparkdream/v1/tx"));
|
|
211
|
+
const _348 = __importStar(require("./split/module/v1/module"));
|
|
212
|
+
const _349 = __importStar(require("./split/v1/genesis"));
|
|
213
|
+
const _350 = __importStar(require("./split/v1/params"));
|
|
214
|
+
const _351 = __importStar(require("./split/v1/query"));
|
|
215
|
+
const _352 = __importStar(require("./split/v1/share"));
|
|
216
|
+
const _353 = __importStar(require("./split/v1/tx"));
|
|
217
|
+
const _502 = __importStar(require("./blog/v1/tx.amino"));
|
|
218
|
+
const _503 = __importStar(require("./collect/v1/tx.amino"));
|
|
219
|
+
const _504 = __importStar(require("./commons/v1/tx.amino"));
|
|
220
|
+
const _505 = __importStar(require("./ecosystem/v1/tx.amino"));
|
|
221
|
+
const _506 = __importStar(require("./federation/v1/tx.amino"));
|
|
222
|
+
const _507 = __importStar(require("./forum/v1/tx.amino"));
|
|
223
|
+
const _508 = __importStar(require("./futarchy/v1/tx.amino"));
|
|
224
|
+
const _509 = __importStar(require("./guardian/v1/tx.amino"));
|
|
225
|
+
const _510 = __importStar(require("./name/v1/tx.amino"));
|
|
226
|
+
const _511 = __importStar(require("./rep/v1/tx.amino"));
|
|
227
|
+
const _512 = __importStar(require("./reveal/v1/tx.amino"));
|
|
228
|
+
const _513 = __importStar(require("./season/v1/tx.amino"));
|
|
229
|
+
const _514 = __importStar(require("./service/v1/tx.amino"));
|
|
230
|
+
const _515 = __importStar(require("./session/v1/tx.amino"));
|
|
231
|
+
const _516 = __importStar(require("./shield/v1/tx.amino"));
|
|
232
|
+
const _517 = __importStar(require("./sparkdream/v1/tx.amino"));
|
|
233
|
+
const _518 = __importStar(require("./split/v1/tx.amino"));
|
|
234
|
+
const _519 = __importStar(require("./blog/v1/tx.registry"));
|
|
235
|
+
const _520 = __importStar(require("./collect/v1/tx.registry"));
|
|
236
|
+
const _521 = __importStar(require("./commons/v1/tx.registry"));
|
|
237
|
+
const _522 = __importStar(require("./ecosystem/v1/tx.registry"));
|
|
238
|
+
const _523 = __importStar(require("./federation/v1/tx.registry"));
|
|
239
|
+
const _524 = __importStar(require("./forum/v1/tx.registry"));
|
|
240
|
+
const _525 = __importStar(require("./futarchy/v1/tx.registry"));
|
|
241
|
+
const _526 = __importStar(require("./guardian/v1/tx.registry"));
|
|
242
|
+
const _527 = __importStar(require("./name/v1/tx.registry"));
|
|
243
|
+
const _528 = __importStar(require("./rep/v1/tx.registry"));
|
|
244
|
+
const _529 = __importStar(require("./reveal/v1/tx.registry"));
|
|
245
|
+
const _530 = __importStar(require("./season/v1/tx.registry"));
|
|
246
|
+
const _531 = __importStar(require("./service/v1/tx.registry"));
|
|
247
|
+
const _532 = __importStar(require("./session/v1/tx.registry"));
|
|
248
|
+
const _533 = __importStar(require("./shield/v1/tx.registry"));
|
|
249
|
+
const _534 = __importStar(require("./sparkdream/v1/tx.registry"));
|
|
250
|
+
const _535 = __importStar(require("./split/v1/tx.registry"));
|
|
251
|
+
const _536 = __importStar(require("./blog/v1/query.lcd"));
|
|
252
|
+
const _537 = __importStar(require("./collect/v1/query.lcd"));
|
|
253
|
+
const _538 = __importStar(require("./commons/v1/query.lcd"));
|
|
254
|
+
const _539 = __importStar(require("./ecosystem/v1/query.lcd"));
|
|
255
|
+
const _540 = __importStar(require("./federation/v1/query.lcd"));
|
|
256
|
+
const _541 = __importStar(require("./forum/v1/query.lcd"));
|
|
257
|
+
const _542 = __importStar(require("./futarchy/v1/query.lcd"));
|
|
258
|
+
const _543 = __importStar(require("./guardian/v1/query.lcd"));
|
|
259
|
+
const _544 = __importStar(require("./identity/v1/query.lcd"));
|
|
260
|
+
const _545 = __importStar(require("./name/v1/query.lcd"));
|
|
261
|
+
const _546 = __importStar(require("./rep/v1/query.lcd"));
|
|
262
|
+
const _547 = __importStar(require("./reveal/v1/query.lcd"));
|
|
263
|
+
const _548 = __importStar(require("./season/v1/query.lcd"));
|
|
264
|
+
const _549 = __importStar(require("./service/v1/query.lcd"));
|
|
265
|
+
const _550 = __importStar(require("./session/v1/query.lcd"));
|
|
266
|
+
const _551 = __importStar(require("./shield/v1/query.lcd"));
|
|
267
|
+
const _552 = __importStar(require("./sparkdream/v1/query.lcd"));
|
|
268
|
+
const _553 = __importStar(require("./split/v1/query.lcd"));
|
|
269
|
+
const _554 = __importStar(require("./blog/v1/query.rpc.Query"));
|
|
270
|
+
const _555 = __importStar(require("./collect/v1/query.rpc.Query"));
|
|
271
|
+
const _556 = __importStar(require("./commons/v1/query.rpc.Query"));
|
|
272
|
+
const _557 = __importStar(require("./ecosystem/v1/query.rpc.Query"));
|
|
273
|
+
const _558 = __importStar(require("./federation/v1/query.rpc.Query"));
|
|
274
|
+
const _559 = __importStar(require("./forum/v1/query.rpc.Query"));
|
|
275
|
+
const _560 = __importStar(require("./futarchy/v1/query.rpc.Query"));
|
|
276
|
+
const _561 = __importStar(require("./guardian/v1/query.rpc.Query"));
|
|
277
|
+
const _562 = __importStar(require("./identity/v1/query.rpc.Query"));
|
|
278
|
+
const _563 = __importStar(require("./name/v1/query.rpc.Query"));
|
|
279
|
+
const _564 = __importStar(require("./rep/v1/query.rpc.Query"));
|
|
280
|
+
const _565 = __importStar(require("./reveal/v1/query.rpc.Query"));
|
|
281
|
+
const _566 = __importStar(require("./season/v1/query.rpc.Query"));
|
|
282
|
+
const _567 = __importStar(require("./service/v1/query.rpc.Query"));
|
|
283
|
+
const _568 = __importStar(require("./session/v1/query.rpc.Query"));
|
|
284
|
+
const _569 = __importStar(require("./shield/v1/query.rpc.Query"));
|
|
285
|
+
const _570 = __importStar(require("./sparkdream/v1/query.rpc.Query"));
|
|
286
|
+
const _571 = __importStar(require("./split/v1/query.rpc.Query"));
|
|
287
|
+
const _572 = __importStar(require("./blog/v1/tx.rpc.msg"));
|
|
288
|
+
const _573 = __importStar(require("./collect/v1/tx.rpc.msg"));
|
|
289
|
+
const _574 = __importStar(require("./commons/v1/tx.rpc.msg"));
|
|
290
|
+
const _575 = __importStar(require("./ecosystem/v1/tx.rpc.msg"));
|
|
291
|
+
const _576 = __importStar(require("./federation/v1/tx.rpc.msg"));
|
|
292
|
+
const _577 = __importStar(require("./forum/v1/tx.rpc.msg"));
|
|
293
|
+
const _578 = __importStar(require("./futarchy/v1/tx.rpc.msg"));
|
|
294
|
+
const _579 = __importStar(require("./guardian/v1/tx.rpc.msg"));
|
|
295
|
+
const _580 = __importStar(require("./name/v1/tx.rpc.msg"));
|
|
296
|
+
const _581 = __importStar(require("./rep/v1/tx.rpc.msg"));
|
|
297
|
+
const _582 = __importStar(require("./reveal/v1/tx.rpc.msg"));
|
|
298
|
+
const _583 = __importStar(require("./season/v1/tx.rpc.msg"));
|
|
299
|
+
const _584 = __importStar(require("./service/v1/tx.rpc.msg"));
|
|
300
|
+
const _585 = __importStar(require("./session/v1/tx.rpc.msg"));
|
|
301
|
+
const _586 = __importStar(require("./shield/v1/tx.rpc.msg"));
|
|
302
|
+
const _587 = __importStar(require("./sparkdream/v1/tx.rpc.msg"));
|
|
303
|
+
const _588 = __importStar(require("./split/v1/tx.rpc.msg"));
|
|
304
|
+
const _595 = __importStar(require("./lcd"));
|
|
305
|
+
const _596 = __importStar(require("./rpc.query"));
|
|
306
|
+
const _597 = __importStar(require("./rpc.tx"));
|
|
271
307
|
var sparkdream;
|
|
272
308
|
(function (sparkdream_1) {
|
|
273
309
|
let blog;
|
|
@@ -285,11 +321,11 @@ var sparkdream;
|
|
|
285
321
|
..._179,
|
|
286
322
|
..._180,
|
|
287
323
|
..._181,
|
|
288
|
-
...
|
|
289
|
-
...
|
|
290
|
-
...
|
|
291
|
-
...
|
|
292
|
-
...
|
|
324
|
+
..._502,
|
|
325
|
+
..._519,
|
|
326
|
+
..._536,
|
|
327
|
+
..._554,
|
|
328
|
+
..._572
|
|
293
329
|
};
|
|
294
330
|
})(blog = sparkdream_1.blog || (sparkdream_1.blog = {}));
|
|
295
331
|
let collect;
|
|
@@ -307,11 +343,11 @@ var sparkdream;
|
|
|
307
343
|
..._186,
|
|
308
344
|
..._187,
|
|
309
345
|
..._188,
|
|
310
|
-
...
|
|
311
|
-
...
|
|
312
|
-
...
|
|
313
|
-
...
|
|
314
|
-
...
|
|
346
|
+
..._503,
|
|
347
|
+
..._520,
|
|
348
|
+
..._537,
|
|
349
|
+
..._555,
|
|
350
|
+
..._573
|
|
315
351
|
};
|
|
316
352
|
})(collect = sparkdream_1.collect || (sparkdream_1.collect = {}));
|
|
317
353
|
let common;
|
|
@@ -338,11 +374,12 @@ var sparkdream;
|
|
|
338
374
|
..._197,
|
|
339
375
|
..._198,
|
|
340
376
|
..._199,
|
|
341
|
-
...
|
|
342
|
-
...
|
|
343
|
-
...
|
|
344
|
-
...
|
|
345
|
-
...
|
|
377
|
+
..._200,
|
|
378
|
+
..._504,
|
|
379
|
+
..._521,
|
|
380
|
+
..._538,
|
|
381
|
+
..._556,
|
|
382
|
+
..._574
|
|
346
383
|
};
|
|
347
384
|
})(commons = sparkdream_1.commons || (sparkdream_1.commons = {}));
|
|
348
385
|
let ecosystem;
|
|
@@ -350,19 +387,19 @@ var sparkdream;
|
|
|
350
387
|
let module;
|
|
351
388
|
(function (module) {
|
|
352
389
|
module.v1 = {
|
|
353
|
-
...
|
|
390
|
+
..._201
|
|
354
391
|
};
|
|
355
392
|
})(module = ecosystem.module || (ecosystem.module = {}));
|
|
356
393
|
ecosystem.v1 = {
|
|
357
|
-
..._201,
|
|
358
394
|
..._202,
|
|
359
395
|
..._203,
|
|
360
396
|
..._204,
|
|
361
|
-
...
|
|
362
|
-
...
|
|
363
|
-
...
|
|
364
|
-
...
|
|
365
|
-
...
|
|
397
|
+
..._205,
|
|
398
|
+
..._505,
|
|
399
|
+
..._522,
|
|
400
|
+
..._539,
|
|
401
|
+
..._557,
|
|
402
|
+
..._575
|
|
366
403
|
};
|
|
367
404
|
})(ecosystem = sparkdream_1.ecosystem || (sparkdream_1.ecosystem = {}));
|
|
368
405
|
let federation;
|
|
@@ -370,22 +407,22 @@ var sparkdream;
|
|
|
370
407
|
let module;
|
|
371
408
|
(function (module) {
|
|
372
409
|
module.v1 = {
|
|
373
|
-
...
|
|
410
|
+
..._206
|
|
374
411
|
};
|
|
375
412
|
})(module = federation.module || (federation.module = {}));
|
|
376
413
|
federation.v1 = {
|
|
377
|
-
..._206,
|
|
378
414
|
..._207,
|
|
379
415
|
..._208,
|
|
380
416
|
..._209,
|
|
381
417
|
..._210,
|
|
382
418
|
..._211,
|
|
383
419
|
..._212,
|
|
384
|
-
...
|
|
385
|
-
...
|
|
386
|
-
...
|
|
387
|
-
...
|
|
388
|
-
...
|
|
420
|
+
..._213,
|
|
421
|
+
..._506,
|
|
422
|
+
..._523,
|
|
423
|
+
..._540,
|
|
424
|
+
..._558,
|
|
425
|
+
..._576
|
|
389
426
|
};
|
|
390
427
|
})(federation = sparkdream_1.federation || (sparkdream_1.federation = {}));
|
|
391
428
|
let forum;
|
|
@@ -393,11 +430,10 @@ var sparkdream;
|
|
|
393
430
|
let module;
|
|
394
431
|
(function (module) {
|
|
395
432
|
module.v1 = {
|
|
396
|
-
...
|
|
433
|
+
..._214
|
|
397
434
|
};
|
|
398
435
|
})(module = forum.module || (forum.module = {}));
|
|
399
436
|
forum.v1 = {
|
|
400
|
-
..._214,
|
|
401
437
|
..._215,
|
|
402
438
|
..._216,
|
|
403
439
|
..._217,
|
|
@@ -415,11 +451,12 @@ var sparkdream;
|
|
|
415
451
|
..._229,
|
|
416
452
|
..._230,
|
|
417
453
|
..._231,
|
|
418
|
-
...
|
|
419
|
-
...
|
|
420
|
-
...
|
|
421
|
-
...
|
|
422
|
-
...
|
|
454
|
+
..._232,
|
|
455
|
+
..._507,
|
|
456
|
+
..._524,
|
|
457
|
+
..._541,
|
|
458
|
+
..._559,
|
|
459
|
+
..._577
|
|
423
460
|
};
|
|
424
461
|
})(forum = sparkdream_1.forum || (sparkdream_1.forum = {}));
|
|
425
462
|
let futarchy;
|
|
@@ -427,54 +464,65 @@ var sparkdream;
|
|
|
427
464
|
let module;
|
|
428
465
|
(function (module) {
|
|
429
466
|
module.v1 = {
|
|
430
|
-
...
|
|
467
|
+
..._233
|
|
431
468
|
};
|
|
432
469
|
})(module = futarchy.module || (futarchy.module = {}));
|
|
433
470
|
futarchy.v1 = {
|
|
434
|
-
..._233,
|
|
435
471
|
..._234,
|
|
436
472
|
..._235,
|
|
437
473
|
..._236,
|
|
438
474
|
..._237,
|
|
439
|
-
...
|
|
440
|
-
...
|
|
441
|
-
...
|
|
442
|
-
...
|
|
443
|
-
...
|
|
475
|
+
..._238,
|
|
476
|
+
..._508,
|
|
477
|
+
..._525,
|
|
478
|
+
..._542,
|
|
479
|
+
..._560,
|
|
480
|
+
..._578
|
|
444
481
|
};
|
|
445
482
|
})(futarchy = sparkdream_1.futarchy || (sparkdream_1.futarchy = {}));
|
|
446
|
-
let
|
|
447
|
-
(function (
|
|
483
|
+
let guardian;
|
|
484
|
+
(function (guardian) {
|
|
448
485
|
let module;
|
|
449
486
|
(function (module) {
|
|
450
487
|
module.v1 = {
|
|
451
|
-
...
|
|
488
|
+
..._239
|
|
452
489
|
};
|
|
453
|
-
})(module =
|
|
454
|
-
|
|
455
|
-
..._239,
|
|
490
|
+
})(module = guardian.module || (guardian.module = {}));
|
|
491
|
+
guardian.v1 = {
|
|
456
492
|
..._240,
|
|
457
493
|
..._241,
|
|
458
|
-
...
|
|
494
|
+
..._509,
|
|
495
|
+
..._526,
|
|
496
|
+
..._543,
|
|
497
|
+
..._561,
|
|
498
|
+
..._579
|
|
499
|
+
};
|
|
500
|
+
})(guardian = sparkdream_1.guardian || (sparkdream_1.guardian = {}));
|
|
501
|
+
let identity;
|
|
502
|
+
(function (identity) {
|
|
503
|
+
let module;
|
|
504
|
+
(function (module) {
|
|
505
|
+
module.v1 = {
|
|
506
|
+
..._242
|
|
507
|
+
};
|
|
508
|
+
})(module = identity.module || (identity.module = {}));
|
|
509
|
+
identity.v1 = {
|
|
459
510
|
..._243,
|
|
460
511
|
..._244,
|
|
461
512
|
..._245,
|
|
462
|
-
...
|
|
463
|
-
...
|
|
464
|
-
..._515,
|
|
465
|
-
..._530,
|
|
466
|
-
..._545
|
|
513
|
+
..._544,
|
|
514
|
+
..._562
|
|
467
515
|
};
|
|
468
|
-
})(
|
|
469
|
-
let
|
|
470
|
-
(function (
|
|
516
|
+
})(identity = sparkdream_1.identity || (sparkdream_1.identity = {}));
|
|
517
|
+
let name;
|
|
518
|
+
(function (name) {
|
|
471
519
|
let module;
|
|
472
520
|
(function (module) {
|
|
473
521
|
module.v1 = {
|
|
474
522
|
..._246
|
|
475
523
|
};
|
|
476
|
-
})(module =
|
|
477
|
-
|
|
524
|
+
})(module = name.module || (name.module = {}));
|
|
525
|
+
name.v1 = {
|
|
478
526
|
..._247,
|
|
479
527
|
..._248,
|
|
480
528
|
..._249,
|
|
@@ -482,7 +530,22 @@ var sparkdream;
|
|
|
482
530
|
..._251,
|
|
483
531
|
..._252,
|
|
484
532
|
..._253,
|
|
485
|
-
...
|
|
533
|
+
..._510,
|
|
534
|
+
..._527,
|
|
535
|
+
..._545,
|
|
536
|
+
..._563,
|
|
537
|
+
..._580
|
|
538
|
+
};
|
|
539
|
+
})(name = sparkdream_1.name || (sparkdream_1.name = {}));
|
|
540
|
+
let rep;
|
|
541
|
+
(function (rep) {
|
|
542
|
+
let module;
|
|
543
|
+
(function (module) {
|
|
544
|
+
module.v1 = {
|
|
545
|
+
..._254
|
|
546
|
+
};
|
|
547
|
+
})(module = rep.module || (rep.module = {}));
|
|
548
|
+
rep.v1 = {
|
|
486
549
|
..._255,
|
|
487
550
|
..._256,
|
|
488
551
|
..._257,
|
|
@@ -500,11 +563,19 @@ var sparkdream;
|
|
|
500
563
|
..._269,
|
|
501
564
|
..._270,
|
|
502
565
|
..._271,
|
|
503
|
-
...
|
|
504
|
-
...
|
|
505
|
-
...
|
|
506
|
-
...
|
|
507
|
-
...
|
|
566
|
+
..._272,
|
|
567
|
+
..._273,
|
|
568
|
+
..._274,
|
|
569
|
+
..._275,
|
|
570
|
+
..._276,
|
|
571
|
+
..._277,
|
|
572
|
+
..._278,
|
|
573
|
+
..._279,
|
|
574
|
+
..._511,
|
|
575
|
+
..._528,
|
|
576
|
+
..._546,
|
|
577
|
+
..._564,
|
|
578
|
+
..._581
|
|
508
579
|
};
|
|
509
580
|
})(rep = sparkdream_1.rep || (sparkdream_1.rep = {}));
|
|
510
581
|
let reveal;
|
|
@@ -512,20 +583,20 @@ var sparkdream;
|
|
|
512
583
|
let module;
|
|
513
584
|
(function (module) {
|
|
514
585
|
module.v1 = {
|
|
515
|
-
...
|
|
586
|
+
..._280
|
|
516
587
|
};
|
|
517
588
|
})(module = reveal.module || (reveal.module = {}));
|
|
518
589
|
reveal.v1 = {
|
|
519
|
-
...
|
|
520
|
-
...
|
|
521
|
-
...
|
|
522
|
-
...
|
|
523
|
-
...
|
|
524
|
-
...
|
|
525
|
-
...
|
|
526
|
-
...
|
|
527
|
-
...
|
|
528
|
-
...
|
|
590
|
+
..._281,
|
|
591
|
+
..._282,
|
|
592
|
+
..._283,
|
|
593
|
+
..._284,
|
|
594
|
+
..._285,
|
|
595
|
+
..._512,
|
|
596
|
+
..._529,
|
|
597
|
+
..._547,
|
|
598
|
+
..._565,
|
|
599
|
+
..._582
|
|
529
600
|
};
|
|
530
601
|
})(reveal = sparkdream_1.reveal || (sparkdream_1.reveal = {}));
|
|
531
602
|
let season;
|
|
@@ -533,18 +604,10 @@ var sparkdream;
|
|
|
533
604
|
let module;
|
|
534
605
|
(function (module) {
|
|
535
606
|
module.v1 = {
|
|
536
|
-
...
|
|
607
|
+
..._286
|
|
537
608
|
};
|
|
538
609
|
})(module = season.module || (season.module = {}));
|
|
539
610
|
season.v1 = {
|
|
540
|
-
..._279,
|
|
541
|
-
..._280,
|
|
542
|
-
..._281,
|
|
543
|
-
..._282,
|
|
544
|
-
..._283,
|
|
545
|
-
..._284,
|
|
546
|
-
..._285,
|
|
547
|
-
..._286,
|
|
548
611
|
..._287,
|
|
549
612
|
..._288,
|
|
550
613
|
..._289,
|
|
@@ -565,32 +628,71 @@ var sparkdream;
|
|
|
565
628
|
..._304,
|
|
566
629
|
..._305,
|
|
567
630
|
..._306,
|
|
568
|
-
...
|
|
569
|
-
...
|
|
570
|
-
...
|
|
571
|
-
...
|
|
572
|
-
...
|
|
631
|
+
..._307,
|
|
632
|
+
..._308,
|
|
633
|
+
..._309,
|
|
634
|
+
..._310,
|
|
635
|
+
..._311,
|
|
636
|
+
..._312,
|
|
637
|
+
..._313,
|
|
638
|
+
..._314,
|
|
639
|
+
..._513,
|
|
640
|
+
..._530,
|
|
641
|
+
..._548,
|
|
642
|
+
..._566,
|
|
643
|
+
..._583
|
|
573
644
|
};
|
|
574
645
|
})(season = sparkdream_1.season || (sparkdream_1.season = {}));
|
|
646
|
+
let service;
|
|
647
|
+
(function (service) {
|
|
648
|
+
let module;
|
|
649
|
+
(function (module) {
|
|
650
|
+
module.v1 = {
|
|
651
|
+
..._315
|
|
652
|
+
};
|
|
653
|
+
})(module = service.module || (service.module = {}));
|
|
654
|
+
service.v1 = {
|
|
655
|
+
..._316,
|
|
656
|
+
..._317,
|
|
657
|
+
..._318,
|
|
658
|
+
..._319,
|
|
659
|
+
..._320,
|
|
660
|
+
..._321,
|
|
661
|
+
..._322,
|
|
662
|
+
..._323,
|
|
663
|
+
..._324,
|
|
664
|
+
..._325,
|
|
665
|
+
..._326,
|
|
666
|
+
..._327,
|
|
667
|
+
..._328,
|
|
668
|
+
..._329,
|
|
669
|
+
..._514,
|
|
670
|
+
..._531,
|
|
671
|
+
..._549,
|
|
672
|
+
..._567,
|
|
673
|
+
..._584
|
|
674
|
+
};
|
|
675
|
+
})(service = sparkdream_1.service || (sparkdream_1.service = {}));
|
|
575
676
|
let session;
|
|
576
677
|
(function (session) {
|
|
577
678
|
let module;
|
|
578
679
|
(function (module) {
|
|
579
680
|
module.v1 = {
|
|
580
|
-
...
|
|
681
|
+
..._330
|
|
581
682
|
};
|
|
582
683
|
})(module = session.module || (session.module = {}));
|
|
583
684
|
session.v1 = {
|
|
584
|
-
...
|
|
585
|
-
...
|
|
586
|
-
...
|
|
587
|
-
...
|
|
588
|
-
...
|
|
589
|
-
...
|
|
590
|
-
...
|
|
591
|
-
...
|
|
592
|
-
...
|
|
593
|
-
...
|
|
685
|
+
..._331,
|
|
686
|
+
..._332,
|
|
687
|
+
..._333,
|
|
688
|
+
..._334,
|
|
689
|
+
..._335,
|
|
690
|
+
..._336,
|
|
691
|
+
..._515,
|
|
692
|
+
..._532,
|
|
693
|
+
..._550,
|
|
694
|
+
..._568,
|
|
695
|
+
..._585
|
|
594
696
|
};
|
|
595
697
|
})(session = sparkdream_1.session || (sparkdream_1.session = {}));
|
|
596
698
|
let shield;
|
|
@@ -598,20 +700,20 @@ var sparkdream;
|
|
|
598
700
|
let module;
|
|
599
701
|
(function (module) {
|
|
600
702
|
module.v1 = {
|
|
601
|
-
...
|
|
703
|
+
..._337
|
|
602
704
|
};
|
|
603
705
|
})(module = shield.module || (shield.module = {}));
|
|
604
706
|
shield.v1 = {
|
|
605
|
-
...
|
|
606
|
-
...
|
|
607
|
-
...
|
|
608
|
-
...
|
|
609
|
-
...
|
|
610
|
-
...
|
|
611
|
-
...
|
|
612
|
-
...
|
|
613
|
-
...
|
|
614
|
-
...
|
|
707
|
+
..._338,
|
|
708
|
+
..._339,
|
|
709
|
+
..._340,
|
|
710
|
+
..._341,
|
|
711
|
+
..._342,
|
|
712
|
+
..._516,
|
|
713
|
+
..._533,
|
|
714
|
+
..._551,
|
|
715
|
+
..._569,
|
|
716
|
+
..._586
|
|
615
717
|
};
|
|
616
718
|
})(shield = sparkdream_1.shield || (sparkdream_1.shield = {}));
|
|
617
719
|
let sparkdream;
|
|
@@ -619,19 +721,19 @@ var sparkdream;
|
|
|
619
721
|
let module;
|
|
620
722
|
(function (module) {
|
|
621
723
|
module.v1 = {
|
|
622
|
-
...
|
|
724
|
+
..._343
|
|
623
725
|
};
|
|
624
726
|
})(module = sparkdream.module || (sparkdream.module = {}));
|
|
625
727
|
sparkdream.v1 = {
|
|
626
|
-
...
|
|
627
|
-
...
|
|
628
|
-
...
|
|
629
|
-
...
|
|
630
|
-
...
|
|
631
|
-
...
|
|
632
|
-
...
|
|
633
|
-
...
|
|
634
|
-
...
|
|
728
|
+
..._344,
|
|
729
|
+
..._345,
|
|
730
|
+
..._346,
|
|
731
|
+
..._347,
|
|
732
|
+
..._517,
|
|
733
|
+
..._534,
|
|
734
|
+
..._552,
|
|
735
|
+
..._570,
|
|
736
|
+
..._587
|
|
635
737
|
};
|
|
636
738
|
})(sparkdream = sparkdream_1.sparkdream || (sparkdream_1.sparkdream = {}));
|
|
637
739
|
let split;
|
|
@@ -639,25 +741,25 @@ var sparkdream;
|
|
|
639
741
|
let module;
|
|
640
742
|
(function (module) {
|
|
641
743
|
module.v1 = {
|
|
642
|
-
...
|
|
744
|
+
..._348
|
|
643
745
|
};
|
|
644
746
|
})(module = split.module || (split.module = {}));
|
|
645
747
|
split.v1 = {
|
|
646
|
-
...
|
|
647
|
-
...
|
|
648
|
-
...
|
|
649
|
-
...
|
|
650
|
-
...
|
|
651
|
-
...
|
|
652
|
-
...
|
|
653
|
-
...
|
|
654
|
-
...
|
|
655
|
-
...
|
|
748
|
+
..._349,
|
|
749
|
+
..._350,
|
|
750
|
+
..._351,
|
|
751
|
+
..._352,
|
|
752
|
+
..._353,
|
|
753
|
+
..._518,
|
|
754
|
+
..._535,
|
|
755
|
+
..._553,
|
|
756
|
+
..._571,
|
|
757
|
+
..._588
|
|
656
758
|
};
|
|
657
759
|
})(split = sparkdream_1.split || (sparkdream_1.split = {}));
|
|
658
760
|
sparkdream_1.ClientFactory = {
|
|
659
|
-
...
|
|
660
|
-
...
|
|
661
|
-
...
|
|
761
|
+
..._595,
|
|
762
|
+
..._596,
|
|
763
|
+
..._597
|
|
662
764
|
};
|
|
663
765
|
})(sparkdream || (exports.sparkdream = sparkdream = {}));
|