@sparkdreamnft/sparkdreamjs 0.0.17 → 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/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/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.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/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/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/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.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/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.d.ts +4 -4
- package/sparkdream/bundle.d.ts +14912 -12896
- package/sparkdream/bundle.js +448 -346
- package/sparkdream/client.d.ts +90 -20
- 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/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.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/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/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/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.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/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
package/ibc/bundle.js
CHANGED
|
@@ -88,59 +88,59 @@ const _171 = __importStar(require("./lightclients/wasm/v1/genesis"));
|
|
|
88
88
|
const _172 = __importStar(require("./lightclients/wasm/v1/query"));
|
|
89
89
|
const _173 = __importStar(require("./lightclients/wasm/v1/tx"));
|
|
90
90
|
const _174 = __importStar(require("./lightclients/wasm/v1/wasm"));
|
|
91
|
-
const
|
|
92
|
-
const
|
|
93
|
-
const
|
|
94
|
-
const
|
|
95
|
-
const
|
|
96
|
-
const
|
|
97
|
-
const
|
|
98
|
-
const
|
|
99
|
-
const
|
|
100
|
-
const
|
|
101
|
-
const
|
|
102
|
-
const
|
|
103
|
-
const
|
|
104
|
-
const
|
|
105
|
-
const
|
|
106
|
-
const
|
|
107
|
-
const
|
|
108
|
-
const
|
|
109
|
-
const
|
|
110
|
-
const
|
|
111
|
-
const
|
|
112
|
-
const
|
|
113
|
-
const
|
|
114
|
-
const
|
|
115
|
-
const
|
|
116
|
-
const
|
|
117
|
-
const
|
|
118
|
-
const
|
|
119
|
-
const
|
|
120
|
-
const
|
|
121
|
-
const
|
|
122
|
-
const
|
|
123
|
-
const
|
|
124
|
-
const
|
|
125
|
-
const
|
|
126
|
-
const
|
|
127
|
-
const
|
|
128
|
-
const
|
|
129
|
-
const
|
|
130
|
-
const
|
|
131
|
-
const
|
|
132
|
-
const
|
|
133
|
-
const
|
|
134
|
-
const
|
|
135
|
-
const
|
|
136
|
-
const
|
|
137
|
-
const
|
|
138
|
-
const
|
|
139
|
-
const
|
|
140
|
-
const
|
|
141
|
-
const
|
|
142
|
-
const
|
|
143
|
-
const
|
|
91
|
+
const _452 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.amino"));
|
|
92
|
+
const _453 = __importStar(require("./applications/interchain_accounts/host/v1/tx.amino"));
|
|
93
|
+
const _454 = __importStar(require("./applications/rate_limiting/v1/tx.amino"));
|
|
94
|
+
const _455 = __importStar(require("./applications/transfer/v1/tx.amino"));
|
|
95
|
+
const _456 = __importStar(require("./core/channel/v1/tx.amino"));
|
|
96
|
+
const _457 = __importStar(require("./core/channel/v2/tx.amino"));
|
|
97
|
+
const _458 = __importStar(require("./core/client/v1/tx.amino"));
|
|
98
|
+
const _459 = __importStar(require("./core/client/v2/tx.amino"));
|
|
99
|
+
const _460 = __importStar(require("./core/connection/v1/tx.amino"));
|
|
100
|
+
const _461 = __importStar(require("./lightclients/wasm/v1/tx.amino"));
|
|
101
|
+
const _462 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.registry"));
|
|
102
|
+
const _463 = __importStar(require("./applications/interchain_accounts/host/v1/tx.registry"));
|
|
103
|
+
const _464 = __importStar(require("./applications/rate_limiting/v1/tx.registry"));
|
|
104
|
+
const _465 = __importStar(require("./applications/transfer/v1/tx.registry"));
|
|
105
|
+
const _466 = __importStar(require("./core/channel/v1/tx.registry"));
|
|
106
|
+
const _467 = __importStar(require("./core/channel/v2/tx.registry"));
|
|
107
|
+
const _468 = __importStar(require("./core/client/v1/tx.registry"));
|
|
108
|
+
const _469 = __importStar(require("./core/client/v2/tx.registry"));
|
|
109
|
+
const _470 = __importStar(require("./core/connection/v1/tx.registry"));
|
|
110
|
+
const _471 = __importStar(require("./lightclients/wasm/v1/tx.registry"));
|
|
111
|
+
const _472 = __importStar(require("./applications/interchain_accounts/controller/v1/query.lcd"));
|
|
112
|
+
const _473 = __importStar(require("./applications/interchain_accounts/host/v1/query.lcd"));
|
|
113
|
+
const _474 = __importStar(require("./applications/rate_limiting/v1/query.lcd"));
|
|
114
|
+
const _475 = __importStar(require("./applications/transfer/v1/query.lcd"));
|
|
115
|
+
const _476 = __importStar(require("./core/channel/v1/query.lcd"));
|
|
116
|
+
const _477 = __importStar(require("./core/channel/v2/query.lcd"));
|
|
117
|
+
const _478 = __importStar(require("./core/client/v1/query.lcd"));
|
|
118
|
+
const _479 = __importStar(require("./core/client/v2/query.lcd"));
|
|
119
|
+
const _480 = __importStar(require("./core/connection/v1/query.lcd"));
|
|
120
|
+
const _481 = __importStar(require("./lightclients/wasm/v1/query.lcd"));
|
|
121
|
+
const _482 = __importStar(require("./applications/interchain_accounts/controller/v1/query.rpc.Query"));
|
|
122
|
+
const _483 = __importStar(require("./applications/interchain_accounts/host/v1/query.rpc.Query"));
|
|
123
|
+
const _484 = __importStar(require("./applications/rate_limiting/v1/query.rpc.Query"));
|
|
124
|
+
const _485 = __importStar(require("./applications/transfer/v1/query.rpc.Query"));
|
|
125
|
+
const _486 = __importStar(require("./core/channel/v1/query.rpc.Query"));
|
|
126
|
+
const _487 = __importStar(require("./core/channel/v2/query.rpc.Query"));
|
|
127
|
+
const _488 = __importStar(require("./core/client/v1/query.rpc.Query"));
|
|
128
|
+
const _489 = __importStar(require("./core/client/v2/query.rpc.Query"));
|
|
129
|
+
const _490 = __importStar(require("./core/connection/v1/query.rpc.Query"));
|
|
130
|
+
const _491 = __importStar(require("./lightclients/wasm/v1/query.rpc.Query"));
|
|
131
|
+
const _492 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.rpc.msg"));
|
|
132
|
+
const _493 = __importStar(require("./applications/interchain_accounts/host/v1/tx.rpc.msg"));
|
|
133
|
+
const _494 = __importStar(require("./applications/rate_limiting/v1/tx.rpc.msg"));
|
|
134
|
+
const _495 = __importStar(require("./applications/transfer/v1/tx.rpc.msg"));
|
|
135
|
+
const _496 = __importStar(require("./core/channel/v1/tx.rpc.msg"));
|
|
136
|
+
const _497 = __importStar(require("./core/channel/v2/tx.rpc.msg"));
|
|
137
|
+
const _498 = __importStar(require("./core/client/v1/tx.rpc.msg"));
|
|
138
|
+
const _499 = __importStar(require("./core/client/v2/tx.rpc.msg"));
|
|
139
|
+
const _500 = __importStar(require("./core/connection/v1/tx.rpc.msg"));
|
|
140
|
+
const _501 = __importStar(require("./lightclients/wasm/v1/tx.rpc.msg"));
|
|
141
|
+
const _592 = __importStar(require("./lcd"));
|
|
142
|
+
const _593 = __importStar(require("./rpc.query"));
|
|
143
|
+
const _594 = __importStar(require("./rpc.tx"));
|
|
144
144
|
var ibc;
|
|
145
145
|
(function (ibc) {
|
|
146
146
|
let applications;
|
|
@@ -153,11 +153,11 @@ var ibc;
|
|
|
153
153
|
..._122,
|
|
154
154
|
..._123,
|
|
155
155
|
..._124,
|
|
156
|
-
...
|
|
157
|
-
...
|
|
158
|
-
...
|
|
159
|
-
...
|
|
160
|
-
...
|
|
156
|
+
..._452,
|
|
157
|
+
..._462,
|
|
158
|
+
..._472,
|
|
159
|
+
..._482,
|
|
160
|
+
..._492
|
|
161
161
|
};
|
|
162
162
|
})(controller = interchain_accounts.controller || (interchain_accounts.controller = {}));
|
|
163
163
|
let genesis;
|
|
@@ -172,11 +172,11 @@ var ibc;
|
|
|
172
172
|
..._126,
|
|
173
173
|
..._127,
|
|
174
174
|
..._128,
|
|
175
|
-
...
|
|
176
|
-
...
|
|
177
|
-
...
|
|
178
|
-
...
|
|
179
|
-
...
|
|
175
|
+
..._453,
|
|
176
|
+
..._463,
|
|
177
|
+
..._473,
|
|
178
|
+
..._483,
|
|
179
|
+
..._493
|
|
180
180
|
};
|
|
181
181
|
})(host = interchain_accounts.host || (interchain_accounts.host = {}));
|
|
182
182
|
interchain_accounts.v1 = {
|
|
@@ -198,11 +198,11 @@ var ibc;
|
|
|
198
198
|
..._134,
|
|
199
199
|
..._135,
|
|
200
200
|
..._136,
|
|
201
|
-
...
|
|
202
|
-
...
|
|
203
|
-
...
|
|
204
|
-
...
|
|
205
|
-
...
|
|
201
|
+
..._454,
|
|
202
|
+
..._464,
|
|
203
|
+
..._474,
|
|
204
|
+
..._484,
|
|
205
|
+
..._494
|
|
206
206
|
};
|
|
207
207
|
})(rate_limiting = applications.rate_limiting || (applications.rate_limiting = {}));
|
|
208
208
|
let transfer;
|
|
@@ -216,11 +216,11 @@ var ibc;
|
|
|
216
216
|
..._142,
|
|
217
217
|
..._143,
|
|
218
218
|
..._144,
|
|
219
|
-
...
|
|
220
|
-
...
|
|
221
|
-
...
|
|
222
|
-
...
|
|
223
|
-
...
|
|
219
|
+
..._455,
|
|
220
|
+
..._465,
|
|
221
|
+
..._475,
|
|
222
|
+
..._485,
|
|
223
|
+
..._495
|
|
224
224
|
};
|
|
225
225
|
})(transfer = applications.transfer || (applications.transfer = {}));
|
|
226
226
|
})(applications = ibc.applications || (ibc.applications = {}));
|
|
@@ -233,22 +233,22 @@ var ibc;
|
|
|
233
233
|
..._146,
|
|
234
234
|
..._147,
|
|
235
235
|
..._148,
|
|
236
|
-
...
|
|
237
|
-
...
|
|
238
|
-
...
|
|
239
|
-
...
|
|
240
|
-
...
|
|
236
|
+
..._456,
|
|
237
|
+
..._466,
|
|
238
|
+
..._476,
|
|
239
|
+
..._486,
|
|
240
|
+
..._496
|
|
241
241
|
};
|
|
242
242
|
channel.v2 = {
|
|
243
243
|
..._149,
|
|
244
244
|
..._150,
|
|
245
245
|
..._151,
|
|
246
246
|
..._152,
|
|
247
|
-
...
|
|
248
|
-
...
|
|
249
|
-
...
|
|
250
|
-
...
|
|
251
|
-
...
|
|
247
|
+
..._457,
|
|
248
|
+
..._467,
|
|
249
|
+
..._477,
|
|
250
|
+
..._487,
|
|
251
|
+
..._497
|
|
252
252
|
};
|
|
253
253
|
})(channel = core.channel || (core.channel = {}));
|
|
254
254
|
let client;
|
|
@@ -258,11 +258,11 @@ var ibc;
|
|
|
258
258
|
..._154,
|
|
259
259
|
..._155,
|
|
260
260
|
..._156,
|
|
261
|
-
...
|
|
262
|
-
...
|
|
263
|
-
...
|
|
264
|
-
...
|
|
265
|
-
...
|
|
261
|
+
..._458,
|
|
262
|
+
..._468,
|
|
263
|
+
..._478,
|
|
264
|
+
..._488,
|
|
265
|
+
..._498
|
|
266
266
|
};
|
|
267
267
|
client.v2 = {
|
|
268
268
|
..._157,
|
|
@@ -270,11 +270,11 @@ var ibc;
|
|
|
270
270
|
..._159,
|
|
271
271
|
..._160,
|
|
272
272
|
..._161,
|
|
273
|
-
...
|
|
274
|
-
...
|
|
275
|
-
...
|
|
276
|
-
...
|
|
277
|
-
...
|
|
273
|
+
..._459,
|
|
274
|
+
..._469,
|
|
275
|
+
..._479,
|
|
276
|
+
..._489,
|
|
277
|
+
..._499
|
|
278
278
|
};
|
|
279
279
|
})(client = core.client || (core.client = {}));
|
|
280
280
|
let commitment;
|
|
@@ -293,11 +293,11 @@ var ibc;
|
|
|
293
293
|
..._165,
|
|
294
294
|
..._166,
|
|
295
295
|
..._167,
|
|
296
|
-
...
|
|
297
|
-
...
|
|
298
|
-
...
|
|
299
|
-
...
|
|
300
|
-
...
|
|
296
|
+
..._460,
|
|
297
|
+
..._470,
|
|
298
|
+
..._480,
|
|
299
|
+
..._490,
|
|
300
|
+
..._500
|
|
301
301
|
};
|
|
302
302
|
})(connection = core.connection || (core.connection = {}));
|
|
303
303
|
})(core = ibc.core || (ibc.core = {}));
|
|
@@ -325,17 +325,17 @@ var ibc;
|
|
|
325
325
|
..._172,
|
|
326
326
|
..._173,
|
|
327
327
|
..._174,
|
|
328
|
-
...
|
|
329
|
-
...
|
|
330
|
-
...
|
|
331
|
-
...
|
|
332
|
-
...
|
|
328
|
+
..._461,
|
|
329
|
+
..._471,
|
|
330
|
+
..._481,
|
|
331
|
+
..._491,
|
|
332
|
+
..._501
|
|
333
333
|
};
|
|
334
334
|
})(wasm = lightclients.wasm || (lightclients.wasm = {}));
|
|
335
335
|
})(lightclients = ibc.lightclients || (ibc.lightclients = {}));
|
|
336
336
|
ibc.ClientFactory = {
|
|
337
|
-
...
|
|
338
|
-
...
|
|
339
|
-
...
|
|
337
|
+
..._592,
|
|
338
|
+
..._593,
|
|
339
|
+
..._594
|
|
340
340
|
};
|
|
341
341
|
})(ibc || (exports.ibc = ibc = {}));
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
2
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
2
|
import { DeepPartial } from "../../../helpers";
|
|
4
3
|
/**
|
|
5
|
-
* Params defines the parameters for the module.
|
|
4
|
+
* Params defines the parameters for the module. Fee/cost fields are stored
|
|
5
|
+
* as bare amounts in the chain's bond denom (resolved at runtime from
|
|
6
|
+
* x/identity); the keeper wraps them into sdk.Coin at the point of use.
|
|
6
7
|
* @name Params
|
|
7
8
|
* @package sparkdream.blog.v1
|
|
8
9
|
* @see proto type: sparkdream.blog.v1.Params
|
|
@@ -17,9 +18,10 @@ export interface Params {
|
|
|
17
18
|
*/
|
|
18
19
|
maxBodyLength: bigint;
|
|
19
20
|
/**
|
|
20
|
-
*
|
|
21
|
+
* cost_per_byte_amount charged for on-chain content storage, in bond-denom
|
|
22
|
+
* micro-units. Applies to all posts; burned.
|
|
21
23
|
*/
|
|
22
|
-
|
|
24
|
+
costPerByteAmount: string;
|
|
23
25
|
/**
|
|
24
26
|
* cost_per_byte_exempt when true, disables cost_per_byte fee collection
|
|
25
27
|
*/
|
|
@@ -33,9 +35,9 @@ export interface Params {
|
|
|
33
35
|
*/
|
|
34
36
|
maxReplyDepth: number;
|
|
35
37
|
/**
|
|
36
|
-
* Flat fee per reaction
|
|
38
|
+
* Flat fee per reaction, in bond-denom micro-units.
|
|
37
39
|
*/
|
|
38
|
-
|
|
40
|
+
reactionFeeAmount: string;
|
|
39
41
|
/**
|
|
40
42
|
* Disable reaction fees
|
|
41
43
|
*/
|
|
@@ -69,13 +71,13 @@ export interface Params {
|
|
|
69
71
|
*/
|
|
70
72
|
minEphemeralContentTtl: bigint;
|
|
71
73
|
/**
|
|
72
|
-
* Governance-only ceiling for
|
|
74
|
+
* Governance-only ceiling for cost_per_byte_amount.
|
|
73
75
|
*/
|
|
74
|
-
|
|
76
|
+
maxCostPerByteAmount: string;
|
|
75
77
|
/**
|
|
76
|
-
* Governance-only ceiling for
|
|
78
|
+
* Governance-only ceiling for reaction_fee_amount.
|
|
77
79
|
*/
|
|
78
|
-
|
|
80
|
+
maxReactionFeeAmount: string;
|
|
79
81
|
/**
|
|
80
82
|
* Min conviction score to renew anonymous content at TTL expiry (default: 100.0; 0 = disabled)
|
|
81
83
|
*/
|
|
@@ -98,7 +100,9 @@ export interface ParamsProtoMsg {
|
|
|
98
100
|
value: Uint8Array;
|
|
99
101
|
}
|
|
100
102
|
/**
|
|
101
|
-
* Params defines the parameters for the module.
|
|
103
|
+
* Params defines the parameters for the module. Fee/cost fields are stored
|
|
104
|
+
* as bare amounts in the chain's bond denom (resolved at runtime from
|
|
105
|
+
* x/identity); the keeper wraps them into sdk.Coin at the point of use.
|
|
102
106
|
* @name ParamsAmino
|
|
103
107
|
* @package sparkdream.blog.v1
|
|
104
108
|
* @see proto type: sparkdream.blog.v1.Params
|
|
@@ -113,9 +117,10 @@ export interface ParamsAmino {
|
|
|
113
117
|
*/
|
|
114
118
|
max_body_length?: string;
|
|
115
119
|
/**
|
|
116
|
-
*
|
|
120
|
+
* cost_per_byte_amount charged for on-chain content storage, in bond-denom
|
|
121
|
+
* micro-units. Applies to all posts; burned.
|
|
117
122
|
*/
|
|
118
|
-
|
|
123
|
+
cost_per_byte_amount?: string;
|
|
119
124
|
/**
|
|
120
125
|
* cost_per_byte_exempt when true, disables cost_per_byte fee collection
|
|
121
126
|
*/
|
|
@@ -129,9 +134,9 @@ export interface ParamsAmino {
|
|
|
129
134
|
*/
|
|
130
135
|
max_reply_depth?: number;
|
|
131
136
|
/**
|
|
132
|
-
* Flat fee per reaction
|
|
137
|
+
* Flat fee per reaction, in bond-denom micro-units.
|
|
133
138
|
*/
|
|
134
|
-
|
|
139
|
+
reaction_fee_amount?: string;
|
|
135
140
|
/**
|
|
136
141
|
* Disable reaction fees
|
|
137
142
|
*/
|
|
@@ -165,13 +170,13 @@ export interface ParamsAmino {
|
|
|
165
170
|
*/
|
|
166
171
|
min_ephemeral_content_ttl?: string;
|
|
167
172
|
/**
|
|
168
|
-
* Governance-only ceiling for
|
|
173
|
+
* Governance-only ceiling for cost_per_byte_amount.
|
|
169
174
|
*/
|
|
170
|
-
|
|
175
|
+
max_cost_per_byte_amount?: string;
|
|
171
176
|
/**
|
|
172
|
-
* Governance-only ceiling for
|
|
177
|
+
* Governance-only ceiling for reaction_fee_amount.
|
|
173
178
|
*/
|
|
174
|
-
|
|
179
|
+
max_reaction_fee_amount?: string;
|
|
175
180
|
/**
|
|
176
181
|
* Min conviction score to renew anonymous content at TTL expiry (default: 100.0; 0 = disabled)
|
|
177
182
|
*/
|
|
@@ -202,17 +207,18 @@ export interface ParamsAminoMsg {
|
|
|
202
207
|
*/
|
|
203
208
|
export interface BlogOperationalParams {
|
|
204
209
|
/**
|
|
205
|
-
*
|
|
210
|
+
* cost_per_byte_amount charged for on-chain content storage, in bond-denom
|
|
211
|
+
* micro-units. Applies to all posts; burned.
|
|
206
212
|
*/
|
|
207
|
-
|
|
213
|
+
costPerByteAmount: string;
|
|
208
214
|
/**
|
|
209
215
|
* cost_per_byte_exempt when true, disables cost_per_byte fee collection
|
|
210
216
|
*/
|
|
211
217
|
costPerByteExempt: boolean;
|
|
212
218
|
/**
|
|
213
|
-
* Flat fee per reaction
|
|
219
|
+
* Flat fee per reaction, in bond-denom micro-units.
|
|
214
220
|
*/
|
|
215
|
-
|
|
221
|
+
reactionFeeAmount: string;
|
|
216
222
|
/**
|
|
217
223
|
* Disable reaction fees
|
|
218
224
|
*/
|
|
@@ -259,17 +265,18 @@ export interface BlogOperationalParamsProtoMsg {
|
|
|
259
265
|
*/
|
|
260
266
|
export interface BlogOperationalParamsAmino {
|
|
261
267
|
/**
|
|
262
|
-
*
|
|
268
|
+
* cost_per_byte_amount charged for on-chain content storage, in bond-denom
|
|
269
|
+
* micro-units. Applies to all posts; burned.
|
|
263
270
|
*/
|
|
264
|
-
|
|
271
|
+
cost_per_byte_amount?: string;
|
|
265
272
|
/**
|
|
266
273
|
* cost_per_byte_exempt when true, disables cost_per_byte fee collection
|
|
267
274
|
*/
|
|
268
275
|
cost_per_byte_exempt?: boolean;
|
|
269
276
|
/**
|
|
270
|
-
* Flat fee per reaction
|
|
277
|
+
* Flat fee per reaction, in bond-denom micro-units.
|
|
271
278
|
*/
|
|
272
|
-
|
|
279
|
+
reaction_fee_amount?: string;
|
|
273
280
|
/**
|
|
274
281
|
* Disable reaction fees
|
|
275
282
|
*/
|
|
@@ -308,7 +315,9 @@ export interface BlogOperationalParamsAminoMsg {
|
|
|
308
315
|
value: BlogOperationalParamsAmino;
|
|
309
316
|
}
|
|
310
317
|
/**
|
|
311
|
-
* Params defines the parameters for the module.
|
|
318
|
+
* Params defines the parameters for the module. Fee/cost fields are stored
|
|
319
|
+
* as bare amounts in the chain's bond denom (resolved at runtime from
|
|
320
|
+
* x/identity); the keeper wraps them into sdk.Coin at the point of use.
|
|
312
321
|
* @name Params
|
|
313
322
|
* @package sparkdream.blog.v1
|
|
314
323
|
* @see proto type: sparkdream.blog.v1.Params
|