@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
|
@@ -0,0 +1,2311 @@
|
|
|
1
|
+
import { Params, ParamsAmino, FederationOperationalParams, FederationOperationalParamsAmino } from "./params";
|
|
2
|
+
import { PeerType, PeerPolicy, PeerPolicyAmino, FederatedContentStatus } from "./types";
|
|
3
|
+
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
4
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
|
+
import { DeepPartial } from "../../../helpers";
|
|
6
|
+
/**
|
|
7
|
+
* @name MsgUpdateParams
|
|
8
|
+
* @package sparkdream.federation.v1
|
|
9
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParams
|
|
10
|
+
*/
|
|
11
|
+
export interface MsgUpdateParams {
|
|
12
|
+
authority: string;
|
|
13
|
+
params: Params;
|
|
14
|
+
}
|
|
15
|
+
export interface MsgUpdateParamsProtoMsg {
|
|
16
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateParams";
|
|
17
|
+
value: Uint8Array;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @name MsgUpdateParamsAmino
|
|
21
|
+
* @package sparkdream.federation.v1
|
|
22
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParams
|
|
23
|
+
*/
|
|
24
|
+
export interface MsgUpdateParamsAmino {
|
|
25
|
+
authority?: string;
|
|
26
|
+
params: ParamsAmino;
|
|
27
|
+
}
|
|
28
|
+
export interface MsgUpdateParamsAminoMsg {
|
|
29
|
+
type: "sparkdream/x/federation/MsgUpdateParams";
|
|
30
|
+
value: MsgUpdateParamsAmino;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @name MsgUpdateParamsResponse
|
|
34
|
+
* @package sparkdream.federation.v1
|
|
35
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParamsResponse
|
|
36
|
+
*/
|
|
37
|
+
export interface MsgUpdateParamsResponse {
|
|
38
|
+
}
|
|
39
|
+
export interface MsgUpdateParamsResponseProtoMsg {
|
|
40
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateParamsResponse";
|
|
41
|
+
value: Uint8Array;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @name MsgUpdateParamsResponseAmino
|
|
45
|
+
* @package sparkdream.federation.v1
|
|
46
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParamsResponse
|
|
47
|
+
*/
|
|
48
|
+
export interface MsgUpdateParamsResponseAmino {
|
|
49
|
+
}
|
|
50
|
+
export interface MsgUpdateParamsResponseAminoMsg {
|
|
51
|
+
type: "/sparkdream.federation.v1.MsgUpdateParamsResponse";
|
|
52
|
+
value: MsgUpdateParamsResponseAmino;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @name MsgRegisterPeer
|
|
56
|
+
* @package sparkdream.federation.v1
|
|
57
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeer
|
|
58
|
+
*/
|
|
59
|
+
export interface MsgRegisterPeer {
|
|
60
|
+
authority: string;
|
|
61
|
+
peerId: string;
|
|
62
|
+
displayName: string;
|
|
63
|
+
type: PeerType;
|
|
64
|
+
ibcChannelId: string;
|
|
65
|
+
metadata: string;
|
|
66
|
+
}
|
|
67
|
+
export interface MsgRegisterPeerProtoMsg {
|
|
68
|
+
typeUrl: "/sparkdream.federation.v1.MsgRegisterPeer";
|
|
69
|
+
value: Uint8Array;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @name MsgRegisterPeerAmino
|
|
73
|
+
* @package sparkdream.federation.v1
|
|
74
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeer
|
|
75
|
+
*/
|
|
76
|
+
export interface MsgRegisterPeerAmino {
|
|
77
|
+
authority?: string;
|
|
78
|
+
peer_id?: string;
|
|
79
|
+
display_name?: string;
|
|
80
|
+
type?: PeerType;
|
|
81
|
+
ibc_channel_id?: string;
|
|
82
|
+
metadata?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface MsgRegisterPeerAminoMsg {
|
|
85
|
+
type: "/sparkdream.federation.v1.MsgRegisterPeer";
|
|
86
|
+
value: MsgRegisterPeerAmino;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @name MsgRegisterPeerResponse
|
|
90
|
+
* @package sparkdream.federation.v1
|
|
91
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeerResponse
|
|
92
|
+
*/
|
|
93
|
+
export interface MsgRegisterPeerResponse {
|
|
94
|
+
}
|
|
95
|
+
export interface MsgRegisterPeerResponseProtoMsg {
|
|
96
|
+
typeUrl: "/sparkdream.federation.v1.MsgRegisterPeerResponse";
|
|
97
|
+
value: Uint8Array;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @name MsgRegisterPeerResponseAmino
|
|
101
|
+
* @package sparkdream.federation.v1
|
|
102
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeerResponse
|
|
103
|
+
*/
|
|
104
|
+
export interface MsgRegisterPeerResponseAmino {
|
|
105
|
+
}
|
|
106
|
+
export interface MsgRegisterPeerResponseAminoMsg {
|
|
107
|
+
type: "/sparkdream.federation.v1.MsgRegisterPeerResponse";
|
|
108
|
+
value: MsgRegisterPeerResponseAmino;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @name MsgRemovePeer
|
|
112
|
+
* @package sparkdream.federation.v1
|
|
113
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeer
|
|
114
|
+
*/
|
|
115
|
+
export interface MsgRemovePeer {
|
|
116
|
+
authority: string;
|
|
117
|
+
peerId: string;
|
|
118
|
+
reason: string;
|
|
119
|
+
}
|
|
120
|
+
export interface MsgRemovePeerProtoMsg {
|
|
121
|
+
typeUrl: "/sparkdream.federation.v1.MsgRemovePeer";
|
|
122
|
+
value: Uint8Array;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* @name MsgRemovePeerAmino
|
|
126
|
+
* @package sparkdream.federation.v1
|
|
127
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeer
|
|
128
|
+
*/
|
|
129
|
+
export interface MsgRemovePeerAmino {
|
|
130
|
+
authority?: string;
|
|
131
|
+
peer_id?: string;
|
|
132
|
+
reason?: string;
|
|
133
|
+
}
|
|
134
|
+
export interface MsgRemovePeerAminoMsg {
|
|
135
|
+
type: "/sparkdream.federation.v1.MsgRemovePeer";
|
|
136
|
+
value: MsgRemovePeerAmino;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* @name MsgRemovePeerResponse
|
|
140
|
+
* @package sparkdream.federation.v1
|
|
141
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeerResponse
|
|
142
|
+
*/
|
|
143
|
+
export interface MsgRemovePeerResponse {
|
|
144
|
+
}
|
|
145
|
+
export interface MsgRemovePeerResponseProtoMsg {
|
|
146
|
+
typeUrl: "/sparkdream.federation.v1.MsgRemovePeerResponse";
|
|
147
|
+
value: Uint8Array;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @name MsgRemovePeerResponseAmino
|
|
151
|
+
* @package sparkdream.federation.v1
|
|
152
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeerResponse
|
|
153
|
+
*/
|
|
154
|
+
export interface MsgRemovePeerResponseAmino {
|
|
155
|
+
}
|
|
156
|
+
export interface MsgRemovePeerResponseAminoMsg {
|
|
157
|
+
type: "/sparkdream.federation.v1.MsgRemovePeerResponse";
|
|
158
|
+
value: MsgRemovePeerResponseAmino;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* @name MsgSuspendPeer
|
|
162
|
+
* @package sparkdream.federation.v1
|
|
163
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeer
|
|
164
|
+
*/
|
|
165
|
+
export interface MsgSuspendPeer {
|
|
166
|
+
authority: string;
|
|
167
|
+
peerId: string;
|
|
168
|
+
reason: string;
|
|
169
|
+
}
|
|
170
|
+
export interface MsgSuspendPeerProtoMsg {
|
|
171
|
+
typeUrl: "/sparkdream.federation.v1.MsgSuspendPeer";
|
|
172
|
+
value: Uint8Array;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @name MsgSuspendPeerAmino
|
|
176
|
+
* @package sparkdream.federation.v1
|
|
177
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeer
|
|
178
|
+
*/
|
|
179
|
+
export interface MsgSuspendPeerAmino {
|
|
180
|
+
authority?: string;
|
|
181
|
+
peer_id?: string;
|
|
182
|
+
reason?: string;
|
|
183
|
+
}
|
|
184
|
+
export interface MsgSuspendPeerAminoMsg {
|
|
185
|
+
type: "/sparkdream.federation.v1.MsgSuspendPeer";
|
|
186
|
+
value: MsgSuspendPeerAmino;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* @name MsgSuspendPeerResponse
|
|
190
|
+
* @package sparkdream.federation.v1
|
|
191
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeerResponse
|
|
192
|
+
*/
|
|
193
|
+
export interface MsgSuspendPeerResponse {
|
|
194
|
+
}
|
|
195
|
+
export interface MsgSuspendPeerResponseProtoMsg {
|
|
196
|
+
typeUrl: "/sparkdream.federation.v1.MsgSuspendPeerResponse";
|
|
197
|
+
value: Uint8Array;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* @name MsgSuspendPeerResponseAmino
|
|
201
|
+
* @package sparkdream.federation.v1
|
|
202
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeerResponse
|
|
203
|
+
*/
|
|
204
|
+
export interface MsgSuspendPeerResponseAmino {
|
|
205
|
+
}
|
|
206
|
+
export interface MsgSuspendPeerResponseAminoMsg {
|
|
207
|
+
type: "/sparkdream.federation.v1.MsgSuspendPeerResponse";
|
|
208
|
+
value: MsgSuspendPeerResponseAmino;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* @name MsgResumePeer
|
|
212
|
+
* @package sparkdream.federation.v1
|
|
213
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeer
|
|
214
|
+
*/
|
|
215
|
+
export interface MsgResumePeer {
|
|
216
|
+
authority: string;
|
|
217
|
+
peerId: string;
|
|
218
|
+
}
|
|
219
|
+
export interface MsgResumePeerProtoMsg {
|
|
220
|
+
typeUrl: "/sparkdream.federation.v1.MsgResumePeer";
|
|
221
|
+
value: Uint8Array;
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* @name MsgResumePeerAmino
|
|
225
|
+
* @package sparkdream.federation.v1
|
|
226
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeer
|
|
227
|
+
*/
|
|
228
|
+
export interface MsgResumePeerAmino {
|
|
229
|
+
authority?: string;
|
|
230
|
+
peer_id?: string;
|
|
231
|
+
}
|
|
232
|
+
export interface MsgResumePeerAminoMsg {
|
|
233
|
+
type: "/sparkdream.federation.v1.MsgResumePeer";
|
|
234
|
+
value: MsgResumePeerAmino;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* @name MsgResumePeerResponse
|
|
238
|
+
* @package sparkdream.federation.v1
|
|
239
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeerResponse
|
|
240
|
+
*/
|
|
241
|
+
export interface MsgResumePeerResponse {
|
|
242
|
+
}
|
|
243
|
+
export interface MsgResumePeerResponseProtoMsg {
|
|
244
|
+
typeUrl: "/sparkdream.federation.v1.MsgResumePeerResponse";
|
|
245
|
+
value: Uint8Array;
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* @name MsgResumePeerResponseAmino
|
|
249
|
+
* @package sparkdream.federation.v1
|
|
250
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeerResponse
|
|
251
|
+
*/
|
|
252
|
+
export interface MsgResumePeerResponseAmino {
|
|
253
|
+
}
|
|
254
|
+
export interface MsgResumePeerResponseAminoMsg {
|
|
255
|
+
type: "/sparkdream.federation.v1.MsgResumePeerResponse";
|
|
256
|
+
value: MsgResumePeerResponseAmino;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* @name MsgUpdatePeerPolicy
|
|
260
|
+
* @package sparkdream.federation.v1
|
|
261
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicy
|
|
262
|
+
*/
|
|
263
|
+
export interface MsgUpdatePeerPolicy {
|
|
264
|
+
authority: string;
|
|
265
|
+
peerId: string;
|
|
266
|
+
policy: PeerPolicy;
|
|
267
|
+
}
|
|
268
|
+
export interface MsgUpdatePeerPolicyProtoMsg {
|
|
269
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdatePeerPolicy";
|
|
270
|
+
value: Uint8Array;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* @name MsgUpdatePeerPolicyAmino
|
|
274
|
+
* @package sparkdream.federation.v1
|
|
275
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicy
|
|
276
|
+
*/
|
|
277
|
+
export interface MsgUpdatePeerPolicyAmino {
|
|
278
|
+
authority?: string;
|
|
279
|
+
peer_id?: string;
|
|
280
|
+
policy?: PeerPolicyAmino;
|
|
281
|
+
}
|
|
282
|
+
export interface MsgUpdatePeerPolicyAminoMsg {
|
|
283
|
+
type: "/sparkdream.federation.v1.MsgUpdatePeerPolicy";
|
|
284
|
+
value: MsgUpdatePeerPolicyAmino;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* @name MsgUpdatePeerPolicyResponse
|
|
288
|
+
* @package sparkdream.federation.v1
|
|
289
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicyResponse
|
|
290
|
+
*/
|
|
291
|
+
export interface MsgUpdatePeerPolicyResponse {
|
|
292
|
+
}
|
|
293
|
+
export interface MsgUpdatePeerPolicyResponseProtoMsg {
|
|
294
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdatePeerPolicyResponse";
|
|
295
|
+
value: Uint8Array;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* @name MsgUpdatePeerPolicyResponseAmino
|
|
299
|
+
* @package sparkdream.federation.v1
|
|
300
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicyResponse
|
|
301
|
+
*/
|
|
302
|
+
export interface MsgUpdatePeerPolicyResponseAmino {
|
|
303
|
+
}
|
|
304
|
+
export interface MsgUpdatePeerPolicyResponseAminoMsg {
|
|
305
|
+
type: "/sparkdream.federation.v1.MsgUpdatePeerPolicyResponse";
|
|
306
|
+
value: MsgUpdatePeerPolicyResponseAmino;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* @name MsgRegisterBridge
|
|
310
|
+
* @package sparkdream.federation.v1
|
|
311
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridge
|
|
312
|
+
*/
|
|
313
|
+
export interface MsgRegisterBridge {
|
|
314
|
+
authority: string;
|
|
315
|
+
operator: string;
|
|
316
|
+
peerId: string;
|
|
317
|
+
protocol: string;
|
|
318
|
+
endpoint: string;
|
|
319
|
+
}
|
|
320
|
+
export interface MsgRegisterBridgeProtoMsg {
|
|
321
|
+
typeUrl: "/sparkdream.federation.v1.MsgRegisterBridge";
|
|
322
|
+
value: Uint8Array;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* @name MsgRegisterBridgeAmino
|
|
326
|
+
* @package sparkdream.federation.v1
|
|
327
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridge
|
|
328
|
+
*/
|
|
329
|
+
export interface MsgRegisterBridgeAmino {
|
|
330
|
+
authority?: string;
|
|
331
|
+
operator?: string;
|
|
332
|
+
peer_id?: string;
|
|
333
|
+
protocol?: string;
|
|
334
|
+
endpoint?: string;
|
|
335
|
+
}
|
|
336
|
+
export interface MsgRegisterBridgeAminoMsg {
|
|
337
|
+
type: "/sparkdream.federation.v1.MsgRegisterBridge";
|
|
338
|
+
value: MsgRegisterBridgeAmino;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* @name MsgRegisterBridgeResponse
|
|
342
|
+
* @package sparkdream.federation.v1
|
|
343
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridgeResponse
|
|
344
|
+
*/
|
|
345
|
+
export interface MsgRegisterBridgeResponse {
|
|
346
|
+
}
|
|
347
|
+
export interface MsgRegisterBridgeResponseProtoMsg {
|
|
348
|
+
typeUrl: "/sparkdream.federation.v1.MsgRegisterBridgeResponse";
|
|
349
|
+
value: Uint8Array;
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* @name MsgRegisterBridgeResponseAmino
|
|
353
|
+
* @package sparkdream.federation.v1
|
|
354
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridgeResponse
|
|
355
|
+
*/
|
|
356
|
+
export interface MsgRegisterBridgeResponseAmino {
|
|
357
|
+
}
|
|
358
|
+
export interface MsgRegisterBridgeResponseAminoMsg {
|
|
359
|
+
type: "/sparkdream.federation.v1.MsgRegisterBridgeResponse";
|
|
360
|
+
value: MsgRegisterBridgeResponseAmino;
|
|
361
|
+
}
|
|
362
|
+
/**
|
|
363
|
+
* @name MsgRevokeBridge
|
|
364
|
+
* @package sparkdream.federation.v1
|
|
365
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridge
|
|
366
|
+
*/
|
|
367
|
+
export interface MsgRevokeBridge {
|
|
368
|
+
authority: string;
|
|
369
|
+
operator: string;
|
|
370
|
+
peerId: string;
|
|
371
|
+
reason: string;
|
|
372
|
+
}
|
|
373
|
+
export interface MsgRevokeBridgeProtoMsg {
|
|
374
|
+
typeUrl: "/sparkdream.federation.v1.MsgRevokeBridge";
|
|
375
|
+
value: Uint8Array;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* @name MsgRevokeBridgeAmino
|
|
379
|
+
* @package sparkdream.federation.v1
|
|
380
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridge
|
|
381
|
+
*/
|
|
382
|
+
export interface MsgRevokeBridgeAmino {
|
|
383
|
+
authority?: string;
|
|
384
|
+
operator?: string;
|
|
385
|
+
peer_id?: string;
|
|
386
|
+
reason?: string;
|
|
387
|
+
}
|
|
388
|
+
export interface MsgRevokeBridgeAminoMsg {
|
|
389
|
+
type: "/sparkdream.federation.v1.MsgRevokeBridge";
|
|
390
|
+
value: MsgRevokeBridgeAmino;
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* @name MsgRevokeBridgeResponse
|
|
394
|
+
* @package sparkdream.federation.v1
|
|
395
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridgeResponse
|
|
396
|
+
*/
|
|
397
|
+
export interface MsgRevokeBridgeResponse {
|
|
398
|
+
}
|
|
399
|
+
export interface MsgRevokeBridgeResponseProtoMsg {
|
|
400
|
+
typeUrl: "/sparkdream.federation.v1.MsgRevokeBridgeResponse";
|
|
401
|
+
value: Uint8Array;
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* @name MsgRevokeBridgeResponseAmino
|
|
405
|
+
* @package sparkdream.federation.v1
|
|
406
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridgeResponse
|
|
407
|
+
*/
|
|
408
|
+
export interface MsgRevokeBridgeResponseAmino {
|
|
409
|
+
}
|
|
410
|
+
export interface MsgRevokeBridgeResponseAminoMsg {
|
|
411
|
+
type: "/sparkdream.federation.v1.MsgRevokeBridgeResponse";
|
|
412
|
+
value: MsgRevokeBridgeResponseAmino;
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* @name MsgSlashBridge
|
|
416
|
+
* @package sparkdream.federation.v1
|
|
417
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridge
|
|
418
|
+
*/
|
|
419
|
+
export interface MsgSlashBridge {
|
|
420
|
+
authority: string;
|
|
421
|
+
operator: string;
|
|
422
|
+
peerId: string;
|
|
423
|
+
amount: string;
|
|
424
|
+
reason: string;
|
|
425
|
+
}
|
|
426
|
+
export interface MsgSlashBridgeProtoMsg {
|
|
427
|
+
typeUrl: "/sparkdream.federation.v1.MsgSlashBridge";
|
|
428
|
+
value: Uint8Array;
|
|
429
|
+
}
|
|
430
|
+
/**
|
|
431
|
+
* @name MsgSlashBridgeAmino
|
|
432
|
+
* @package sparkdream.federation.v1
|
|
433
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridge
|
|
434
|
+
*/
|
|
435
|
+
export interface MsgSlashBridgeAmino {
|
|
436
|
+
authority?: string;
|
|
437
|
+
operator?: string;
|
|
438
|
+
peer_id?: string;
|
|
439
|
+
amount?: string;
|
|
440
|
+
reason?: string;
|
|
441
|
+
}
|
|
442
|
+
export interface MsgSlashBridgeAminoMsg {
|
|
443
|
+
type: "/sparkdream.federation.v1.MsgSlashBridge";
|
|
444
|
+
value: MsgSlashBridgeAmino;
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* @name MsgSlashBridgeResponse
|
|
448
|
+
* @package sparkdream.federation.v1
|
|
449
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridgeResponse
|
|
450
|
+
*/
|
|
451
|
+
export interface MsgSlashBridgeResponse {
|
|
452
|
+
}
|
|
453
|
+
export interface MsgSlashBridgeResponseProtoMsg {
|
|
454
|
+
typeUrl: "/sparkdream.federation.v1.MsgSlashBridgeResponse";
|
|
455
|
+
value: Uint8Array;
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* @name MsgSlashBridgeResponseAmino
|
|
459
|
+
* @package sparkdream.federation.v1
|
|
460
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridgeResponse
|
|
461
|
+
*/
|
|
462
|
+
export interface MsgSlashBridgeResponseAmino {
|
|
463
|
+
}
|
|
464
|
+
export interface MsgSlashBridgeResponseAminoMsg {
|
|
465
|
+
type: "/sparkdream.federation.v1.MsgSlashBridgeResponse";
|
|
466
|
+
value: MsgSlashBridgeResponseAmino;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* @name MsgUpdateBridge
|
|
470
|
+
* @package sparkdream.federation.v1
|
|
471
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridge
|
|
472
|
+
*/
|
|
473
|
+
export interface MsgUpdateBridge {
|
|
474
|
+
authority: string;
|
|
475
|
+
operator: string;
|
|
476
|
+
peerId: string;
|
|
477
|
+
endpoint: string;
|
|
478
|
+
}
|
|
479
|
+
export interface MsgUpdateBridgeProtoMsg {
|
|
480
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateBridge";
|
|
481
|
+
value: Uint8Array;
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* @name MsgUpdateBridgeAmino
|
|
485
|
+
* @package sparkdream.federation.v1
|
|
486
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridge
|
|
487
|
+
*/
|
|
488
|
+
export interface MsgUpdateBridgeAmino {
|
|
489
|
+
authority?: string;
|
|
490
|
+
operator?: string;
|
|
491
|
+
peer_id?: string;
|
|
492
|
+
endpoint?: string;
|
|
493
|
+
}
|
|
494
|
+
export interface MsgUpdateBridgeAminoMsg {
|
|
495
|
+
type: "/sparkdream.federation.v1.MsgUpdateBridge";
|
|
496
|
+
value: MsgUpdateBridgeAmino;
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* @name MsgUpdateBridgeResponse
|
|
500
|
+
* @package sparkdream.federation.v1
|
|
501
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridgeResponse
|
|
502
|
+
*/
|
|
503
|
+
export interface MsgUpdateBridgeResponse {
|
|
504
|
+
}
|
|
505
|
+
export interface MsgUpdateBridgeResponseProtoMsg {
|
|
506
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateBridgeResponse";
|
|
507
|
+
value: Uint8Array;
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* @name MsgUpdateBridgeResponseAmino
|
|
511
|
+
* @package sparkdream.federation.v1
|
|
512
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridgeResponse
|
|
513
|
+
*/
|
|
514
|
+
export interface MsgUpdateBridgeResponseAmino {
|
|
515
|
+
}
|
|
516
|
+
export interface MsgUpdateBridgeResponseAminoMsg {
|
|
517
|
+
type: "/sparkdream.federation.v1.MsgUpdateBridgeResponse";
|
|
518
|
+
value: MsgUpdateBridgeResponseAmino;
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* @name MsgUnbondBridge
|
|
522
|
+
* @package sparkdream.federation.v1
|
|
523
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridge
|
|
524
|
+
*/
|
|
525
|
+
export interface MsgUnbondBridge {
|
|
526
|
+
operator: string;
|
|
527
|
+
peerId: string;
|
|
528
|
+
}
|
|
529
|
+
export interface MsgUnbondBridgeProtoMsg {
|
|
530
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnbondBridge";
|
|
531
|
+
value: Uint8Array;
|
|
532
|
+
}
|
|
533
|
+
/**
|
|
534
|
+
* @name MsgUnbondBridgeAmino
|
|
535
|
+
* @package sparkdream.federation.v1
|
|
536
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridge
|
|
537
|
+
*/
|
|
538
|
+
export interface MsgUnbondBridgeAmino {
|
|
539
|
+
operator?: string;
|
|
540
|
+
peer_id?: string;
|
|
541
|
+
}
|
|
542
|
+
export interface MsgUnbondBridgeAminoMsg {
|
|
543
|
+
type: "/sparkdream.federation.v1.MsgUnbondBridge";
|
|
544
|
+
value: MsgUnbondBridgeAmino;
|
|
545
|
+
}
|
|
546
|
+
/**
|
|
547
|
+
* @name MsgUnbondBridgeResponse
|
|
548
|
+
* @package sparkdream.federation.v1
|
|
549
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridgeResponse
|
|
550
|
+
*/
|
|
551
|
+
export interface MsgUnbondBridgeResponse {
|
|
552
|
+
}
|
|
553
|
+
export interface MsgUnbondBridgeResponseProtoMsg {
|
|
554
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnbondBridgeResponse";
|
|
555
|
+
value: Uint8Array;
|
|
556
|
+
}
|
|
557
|
+
/**
|
|
558
|
+
* @name MsgUnbondBridgeResponseAmino
|
|
559
|
+
* @package sparkdream.federation.v1
|
|
560
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridgeResponse
|
|
561
|
+
*/
|
|
562
|
+
export interface MsgUnbondBridgeResponseAmino {
|
|
563
|
+
}
|
|
564
|
+
export interface MsgUnbondBridgeResponseAminoMsg {
|
|
565
|
+
type: "/sparkdream.federation.v1.MsgUnbondBridgeResponse";
|
|
566
|
+
value: MsgUnbondBridgeResponseAmino;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* @name MsgTopUpBridgeStake
|
|
570
|
+
* @package sparkdream.federation.v1
|
|
571
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStake
|
|
572
|
+
*/
|
|
573
|
+
export interface MsgTopUpBridgeStake {
|
|
574
|
+
operator: string;
|
|
575
|
+
peerId: string;
|
|
576
|
+
amount: Coin;
|
|
577
|
+
}
|
|
578
|
+
export interface MsgTopUpBridgeStakeProtoMsg {
|
|
579
|
+
typeUrl: "/sparkdream.federation.v1.MsgTopUpBridgeStake";
|
|
580
|
+
value: Uint8Array;
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* @name MsgTopUpBridgeStakeAmino
|
|
584
|
+
* @package sparkdream.federation.v1
|
|
585
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStake
|
|
586
|
+
*/
|
|
587
|
+
export interface MsgTopUpBridgeStakeAmino {
|
|
588
|
+
operator?: string;
|
|
589
|
+
peer_id?: string;
|
|
590
|
+
amount?: CoinAmino;
|
|
591
|
+
}
|
|
592
|
+
export interface MsgTopUpBridgeStakeAminoMsg {
|
|
593
|
+
type: "/sparkdream.federation.v1.MsgTopUpBridgeStake";
|
|
594
|
+
value: MsgTopUpBridgeStakeAmino;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* @name MsgTopUpBridgeStakeResponse
|
|
598
|
+
* @package sparkdream.federation.v1
|
|
599
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStakeResponse
|
|
600
|
+
*/
|
|
601
|
+
export interface MsgTopUpBridgeStakeResponse {
|
|
602
|
+
}
|
|
603
|
+
export interface MsgTopUpBridgeStakeResponseProtoMsg {
|
|
604
|
+
typeUrl: "/sparkdream.federation.v1.MsgTopUpBridgeStakeResponse";
|
|
605
|
+
value: Uint8Array;
|
|
606
|
+
}
|
|
607
|
+
/**
|
|
608
|
+
* @name MsgTopUpBridgeStakeResponseAmino
|
|
609
|
+
* @package sparkdream.federation.v1
|
|
610
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStakeResponse
|
|
611
|
+
*/
|
|
612
|
+
export interface MsgTopUpBridgeStakeResponseAmino {
|
|
613
|
+
}
|
|
614
|
+
export interface MsgTopUpBridgeStakeResponseAminoMsg {
|
|
615
|
+
type: "/sparkdream.federation.v1.MsgTopUpBridgeStakeResponse";
|
|
616
|
+
value: MsgTopUpBridgeStakeResponseAmino;
|
|
617
|
+
}
|
|
618
|
+
/**
|
|
619
|
+
* @name MsgSubmitFederatedContent
|
|
620
|
+
* @package sparkdream.federation.v1
|
|
621
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContent
|
|
622
|
+
*/
|
|
623
|
+
export interface MsgSubmitFederatedContent {
|
|
624
|
+
operator: string;
|
|
625
|
+
peerId: string;
|
|
626
|
+
remoteContentId: string;
|
|
627
|
+
contentType: string;
|
|
628
|
+
creatorIdentity: string;
|
|
629
|
+
creatorName: string;
|
|
630
|
+
title: string;
|
|
631
|
+
body: string;
|
|
632
|
+
contentUri: string;
|
|
633
|
+
protocolMetadata: Uint8Array;
|
|
634
|
+
remoteCreatedAt: bigint;
|
|
635
|
+
contentHash: Uint8Array;
|
|
636
|
+
}
|
|
637
|
+
export interface MsgSubmitFederatedContentProtoMsg {
|
|
638
|
+
typeUrl: "/sparkdream.federation.v1.MsgSubmitFederatedContent";
|
|
639
|
+
value: Uint8Array;
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
* @name MsgSubmitFederatedContentAmino
|
|
643
|
+
* @package sparkdream.federation.v1
|
|
644
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContent
|
|
645
|
+
*/
|
|
646
|
+
export interface MsgSubmitFederatedContentAmino {
|
|
647
|
+
operator?: string;
|
|
648
|
+
peer_id?: string;
|
|
649
|
+
remote_content_id?: string;
|
|
650
|
+
content_type?: string;
|
|
651
|
+
creator_identity?: string;
|
|
652
|
+
creator_name?: string;
|
|
653
|
+
title?: string;
|
|
654
|
+
body?: string;
|
|
655
|
+
content_uri?: string;
|
|
656
|
+
protocol_metadata?: string;
|
|
657
|
+
remote_created_at?: string;
|
|
658
|
+
content_hash?: string;
|
|
659
|
+
}
|
|
660
|
+
export interface MsgSubmitFederatedContentAminoMsg {
|
|
661
|
+
type: "/sparkdream.federation.v1.MsgSubmitFederatedContent";
|
|
662
|
+
value: MsgSubmitFederatedContentAmino;
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* @name MsgSubmitFederatedContentResponse
|
|
666
|
+
* @package sparkdream.federation.v1
|
|
667
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContentResponse
|
|
668
|
+
*/
|
|
669
|
+
export interface MsgSubmitFederatedContentResponse {
|
|
670
|
+
contentId: bigint;
|
|
671
|
+
}
|
|
672
|
+
export interface MsgSubmitFederatedContentResponseProtoMsg {
|
|
673
|
+
typeUrl: "/sparkdream.federation.v1.MsgSubmitFederatedContentResponse";
|
|
674
|
+
value: Uint8Array;
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* @name MsgSubmitFederatedContentResponseAmino
|
|
678
|
+
* @package sparkdream.federation.v1
|
|
679
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContentResponse
|
|
680
|
+
*/
|
|
681
|
+
export interface MsgSubmitFederatedContentResponseAmino {
|
|
682
|
+
content_id?: string;
|
|
683
|
+
}
|
|
684
|
+
export interface MsgSubmitFederatedContentResponseAminoMsg {
|
|
685
|
+
type: "/sparkdream.federation.v1.MsgSubmitFederatedContentResponse";
|
|
686
|
+
value: MsgSubmitFederatedContentResponseAmino;
|
|
687
|
+
}
|
|
688
|
+
/**
|
|
689
|
+
* @name MsgFederateContent
|
|
690
|
+
* @package sparkdream.federation.v1
|
|
691
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContent
|
|
692
|
+
*/
|
|
693
|
+
export interface MsgFederateContent {
|
|
694
|
+
creator: string;
|
|
695
|
+
peerId: string;
|
|
696
|
+
contentType: string;
|
|
697
|
+
localContentId: string;
|
|
698
|
+
title: string;
|
|
699
|
+
body: string;
|
|
700
|
+
contentUri: string;
|
|
701
|
+
contentHash: Uint8Array;
|
|
702
|
+
}
|
|
703
|
+
export interface MsgFederateContentProtoMsg {
|
|
704
|
+
typeUrl: "/sparkdream.federation.v1.MsgFederateContent";
|
|
705
|
+
value: Uint8Array;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* @name MsgFederateContentAmino
|
|
709
|
+
* @package sparkdream.federation.v1
|
|
710
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContent
|
|
711
|
+
*/
|
|
712
|
+
export interface MsgFederateContentAmino {
|
|
713
|
+
creator?: string;
|
|
714
|
+
peer_id?: string;
|
|
715
|
+
content_type?: string;
|
|
716
|
+
local_content_id?: string;
|
|
717
|
+
title?: string;
|
|
718
|
+
body?: string;
|
|
719
|
+
content_uri?: string;
|
|
720
|
+
content_hash?: string;
|
|
721
|
+
}
|
|
722
|
+
export interface MsgFederateContentAminoMsg {
|
|
723
|
+
type: "/sparkdream.federation.v1.MsgFederateContent";
|
|
724
|
+
value: MsgFederateContentAmino;
|
|
725
|
+
}
|
|
726
|
+
/**
|
|
727
|
+
* @name MsgFederateContentResponse
|
|
728
|
+
* @package sparkdream.federation.v1
|
|
729
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContentResponse
|
|
730
|
+
*/
|
|
731
|
+
export interface MsgFederateContentResponse {
|
|
732
|
+
}
|
|
733
|
+
export interface MsgFederateContentResponseProtoMsg {
|
|
734
|
+
typeUrl: "/sparkdream.federation.v1.MsgFederateContentResponse";
|
|
735
|
+
value: Uint8Array;
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* @name MsgFederateContentResponseAmino
|
|
739
|
+
* @package sparkdream.federation.v1
|
|
740
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContentResponse
|
|
741
|
+
*/
|
|
742
|
+
export interface MsgFederateContentResponseAmino {
|
|
743
|
+
}
|
|
744
|
+
export interface MsgFederateContentResponseAminoMsg {
|
|
745
|
+
type: "/sparkdream.federation.v1.MsgFederateContentResponse";
|
|
746
|
+
value: MsgFederateContentResponseAmino;
|
|
747
|
+
}
|
|
748
|
+
/**
|
|
749
|
+
* @name MsgAttestOutbound
|
|
750
|
+
* @package sparkdream.federation.v1
|
|
751
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutbound
|
|
752
|
+
*/
|
|
753
|
+
export interface MsgAttestOutbound {
|
|
754
|
+
operator: string;
|
|
755
|
+
peerId: string;
|
|
756
|
+
contentType: string;
|
|
757
|
+
localContentId: string;
|
|
758
|
+
}
|
|
759
|
+
export interface MsgAttestOutboundProtoMsg {
|
|
760
|
+
typeUrl: "/sparkdream.federation.v1.MsgAttestOutbound";
|
|
761
|
+
value: Uint8Array;
|
|
762
|
+
}
|
|
763
|
+
/**
|
|
764
|
+
* @name MsgAttestOutboundAmino
|
|
765
|
+
* @package sparkdream.federation.v1
|
|
766
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutbound
|
|
767
|
+
*/
|
|
768
|
+
export interface MsgAttestOutboundAmino {
|
|
769
|
+
operator?: string;
|
|
770
|
+
peer_id?: string;
|
|
771
|
+
content_type?: string;
|
|
772
|
+
local_content_id?: string;
|
|
773
|
+
}
|
|
774
|
+
export interface MsgAttestOutboundAminoMsg {
|
|
775
|
+
type: "/sparkdream.federation.v1.MsgAttestOutbound";
|
|
776
|
+
value: MsgAttestOutboundAmino;
|
|
777
|
+
}
|
|
778
|
+
/**
|
|
779
|
+
* @name MsgAttestOutboundResponse
|
|
780
|
+
* @package sparkdream.federation.v1
|
|
781
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutboundResponse
|
|
782
|
+
*/
|
|
783
|
+
export interface MsgAttestOutboundResponse {
|
|
784
|
+
}
|
|
785
|
+
export interface MsgAttestOutboundResponseProtoMsg {
|
|
786
|
+
typeUrl: "/sparkdream.federation.v1.MsgAttestOutboundResponse";
|
|
787
|
+
value: Uint8Array;
|
|
788
|
+
}
|
|
789
|
+
/**
|
|
790
|
+
* @name MsgAttestOutboundResponseAmino
|
|
791
|
+
* @package sparkdream.federation.v1
|
|
792
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutboundResponse
|
|
793
|
+
*/
|
|
794
|
+
export interface MsgAttestOutboundResponseAmino {
|
|
795
|
+
}
|
|
796
|
+
export interface MsgAttestOutboundResponseAminoMsg {
|
|
797
|
+
type: "/sparkdream.federation.v1.MsgAttestOutboundResponse";
|
|
798
|
+
value: MsgAttestOutboundResponseAmino;
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
* @name MsgModerateContent
|
|
802
|
+
* @package sparkdream.federation.v1
|
|
803
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContent
|
|
804
|
+
*/
|
|
805
|
+
export interface MsgModerateContent {
|
|
806
|
+
authority: string;
|
|
807
|
+
contentId: bigint;
|
|
808
|
+
newStatus: FederatedContentStatus;
|
|
809
|
+
reason: string;
|
|
810
|
+
}
|
|
811
|
+
export interface MsgModerateContentProtoMsg {
|
|
812
|
+
typeUrl: "/sparkdream.federation.v1.MsgModerateContent";
|
|
813
|
+
value: Uint8Array;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* @name MsgModerateContentAmino
|
|
817
|
+
* @package sparkdream.federation.v1
|
|
818
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContent
|
|
819
|
+
*/
|
|
820
|
+
export interface MsgModerateContentAmino {
|
|
821
|
+
authority?: string;
|
|
822
|
+
content_id?: string;
|
|
823
|
+
new_status?: FederatedContentStatus;
|
|
824
|
+
reason?: string;
|
|
825
|
+
}
|
|
826
|
+
export interface MsgModerateContentAminoMsg {
|
|
827
|
+
type: "/sparkdream.federation.v1.MsgModerateContent";
|
|
828
|
+
value: MsgModerateContentAmino;
|
|
829
|
+
}
|
|
830
|
+
/**
|
|
831
|
+
* @name MsgModerateContentResponse
|
|
832
|
+
* @package sparkdream.federation.v1
|
|
833
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContentResponse
|
|
834
|
+
*/
|
|
835
|
+
export interface MsgModerateContentResponse {
|
|
836
|
+
}
|
|
837
|
+
export interface MsgModerateContentResponseProtoMsg {
|
|
838
|
+
typeUrl: "/sparkdream.federation.v1.MsgModerateContentResponse";
|
|
839
|
+
value: Uint8Array;
|
|
840
|
+
}
|
|
841
|
+
/**
|
|
842
|
+
* @name MsgModerateContentResponseAmino
|
|
843
|
+
* @package sparkdream.federation.v1
|
|
844
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContentResponse
|
|
845
|
+
*/
|
|
846
|
+
export interface MsgModerateContentResponseAmino {
|
|
847
|
+
}
|
|
848
|
+
export interface MsgModerateContentResponseAminoMsg {
|
|
849
|
+
type: "/sparkdream.federation.v1.MsgModerateContentResponse";
|
|
850
|
+
value: MsgModerateContentResponseAmino;
|
|
851
|
+
}
|
|
852
|
+
/**
|
|
853
|
+
* @name MsgLinkIdentity
|
|
854
|
+
* @package sparkdream.federation.v1
|
|
855
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentity
|
|
856
|
+
*/
|
|
857
|
+
export interface MsgLinkIdentity {
|
|
858
|
+
creator: string;
|
|
859
|
+
peerId: string;
|
|
860
|
+
remoteIdentity: string;
|
|
861
|
+
}
|
|
862
|
+
export interface MsgLinkIdentityProtoMsg {
|
|
863
|
+
typeUrl: "/sparkdream.federation.v1.MsgLinkIdentity";
|
|
864
|
+
value: Uint8Array;
|
|
865
|
+
}
|
|
866
|
+
/**
|
|
867
|
+
* @name MsgLinkIdentityAmino
|
|
868
|
+
* @package sparkdream.federation.v1
|
|
869
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentity
|
|
870
|
+
*/
|
|
871
|
+
export interface MsgLinkIdentityAmino {
|
|
872
|
+
creator?: string;
|
|
873
|
+
peer_id?: string;
|
|
874
|
+
remote_identity?: string;
|
|
875
|
+
}
|
|
876
|
+
export interface MsgLinkIdentityAminoMsg {
|
|
877
|
+
type: "/sparkdream.federation.v1.MsgLinkIdentity";
|
|
878
|
+
value: MsgLinkIdentityAmino;
|
|
879
|
+
}
|
|
880
|
+
/**
|
|
881
|
+
* @name MsgLinkIdentityResponse
|
|
882
|
+
* @package sparkdream.federation.v1
|
|
883
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentityResponse
|
|
884
|
+
*/
|
|
885
|
+
export interface MsgLinkIdentityResponse {
|
|
886
|
+
}
|
|
887
|
+
export interface MsgLinkIdentityResponseProtoMsg {
|
|
888
|
+
typeUrl: "/sparkdream.federation.v1.MsgLinkIdentityResponse";
|
|
889
|
+
value: Uint8Array;
|
|
890
|
+
}
|
|
891
|
+
/**
|
|
892
|
+
* @name MsgLinkIdentityResponseAmino
|
|
893
|
+
* @package sparkdream.federation.v1
|
|
894
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentityResponse
|
|
895
|
+
*/
|
|
896
|
+
export interface MsgLinkIdentityResponseAmino {
|
|
897
|
+
}
|
|
898
|
+
export interface MsgLinkIdentityResponseAminoMsg {
|
|
899
|
+
type: "/sparkdream.federation.v1.MsgLinkIdentityResponse";
|
|
900
|
+
value: MsgLinkIdentityResponseAmino;
|
|
901
|
+
}
|
|
902
|
+
/**
|
|
903
|
+
* @name MsgUnlinkIdentity
|
|
904
|
+
* @package sparkdream.federation.v1
|
|
905
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentity
|
|
906
|
+
*/
|
|
907
|
+
export interface MsgUnlinkIdentity {
|
|
908
|
+
creator: string;
|
|
909
|
+
peerId: string;
|
|
910
|
+
}
|
|
911
|
+
export interface MsgUnlinkIdentityProtoMsg {
|
|
912
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnlinkIdentity";
|
|
913
|
+
value: Uint8Array;
|
|
914
|
+
}
|
|
915
|
+
/**
|
|
916
|
+
* @name MsgUnlinkIdentityAmino
|
|
917
|
+
* @package sparkdream.federation.v1
|
|
918
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentity
|
|
919
|
+
*/
|
|
920
|
+
export interface MsgUnlinkIdentityAmino {
|
|
921
|
+
creator?: string;
|
|
922
|
+
peer_id?: string;
|
|
923
|
+
}
|
|
924
|
+
export interface MsgUnlinkIdentityAminoMsg {
|
|
925
|
+
type: "/sparkdream.federation.v1.MsgUnlinkIdentity";
|
|
926
|
+
value: MsgUnlinkIdentityAmino;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* @name MsgUnlinkIdentityResponse
|
|
930
|
+
* @package sparkdream.federation.v1
|
|
931
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentityResponse
|
|
932
|
+
*/
|
|
933
|
+
export interface MsgUnlinkIdentityResponse {
|
|
934
|
+
}
|
|
935
|
+
export interface MsgUnlinkIdentityResponseProtoMsg {
|
|
936
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnlinkIdentityResponse";
|
|
937
|
+
value: Uint8Array;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
* @name MsgUnlinkIdentityResponseAmino
|
|
941
|
+
* @package sparkdream.federation.v1
|
|
942
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentityResponse
|
|
943
|
+
*/
|
|
944
|
+
export interface MsgUnlinkIdentityResponseAmino {
|
|
945
|
+
}
|
|
946
|
+
export interface MsgUnlinkIdentityResponseAminoMsg {
|
|
947
|
+
type: "/sparkdream.federation.v1.MsgUnlinkIdentityResponse";
|
|
948
|
+
value: MsgUnlinkIdentityResponseAmino;
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* @name MsgConfirmIdentityLink
|
|
952
|
+
* @package sparkdream.federation.v1
|
|
953
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLink
|
|
954
|
+
*/
|
|
955
|
+
export interface MsgConfirmIdentityLink {
|
|
956
|
+
creator: string;
|
|
957
|
+
claimantChainPeerId: string;
|
|
958
|
+
}
|
|
959
|
+
export interface MsgConfirmIdentityLinkProtoMsg {
|
|
960
|
+
typeUrl: "/sparkdream.federation.v1.MsgConfirmIdentityLink";
|
|
961
|
+
value: Uint8Array;
|
|
962
|
+
}
|
|
963
|
+
/**
|
|
964
|
+
* @name MsgConfirmIdentityLinkAmino
|
|
965
|
+
* @package sparkdream.federation.v1
|
|
966
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLink
|
|
967
|
+
*/
|
|
968
|
+
export interface MsgConfirmIdentityLinkAmino {
|
|
969
|
+
creator?: string;
|
|
970
|
+
claimant_chain_peer_id?: string;
|
|
971
|
+
}
|
|
972
|
+
export interface MsgConfirmIdentityLinkAminoMsg {
|
|
973
|
+
type: "/sparkdream.federation.v1.MsgConfirmIdentityLink";
|
|
974
|
+
value: MsgConfirmIdentityLinkAmino;
|
|
975
|
+
}
|
|
976
|
+
/**
|
|
977
|
+
* @name MsgConfirmIdentityLinkResponse
|
|
978
|
+
* @package sparkdream.federation.v1
|
|
979
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLinkResponse
|
|
980
|
+
*/
|
|
981
|
+
export interface MsgConfirmIdentityLinkResponse {
|
|
982
|
+
}
|
|
983
|
+
export interface MsgConfirmIdentityLinkResponseProtoMsg {
|
|
984
|
+
typeUrl: "/sparkdream.federation.v1.MsgConfirmIdentityLinkResponse";
|
|
985
|
+
value: Uint8Array;
|
|
986
|
+
}
|
|
987
|
+
/**
|
|
988
|
+
* @name MsgConfirmIdentityLinkResponseAmino
|
|
989
|
+
* @package sparkdream.federation.v1
|
|
990
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLinkResponse
|
|
991
|
+
*/
|
|
992
|
+
export interface MsgConfirmIdentityLinkResponseAmino {
|
|
993
|
+
}
|
|
994
|
+
export interface MsgConfirmIdentityLinkResponseAminoMsg {
|
|
995
|
+
type: "/sparkdream.federation.v1.MsgConfirmIdentityLinkResponse";
|
|
996
|
+
value: MsgConfirmIdentityLinkResponseAmino;
|
|
997
|
+
}
|
|
998
|
+
/**
|
|
999
|
+
* @name MsgRequestReputationAttestation
|
|
1000
|
+
* @package sparkdream.federation.v1
|
|
1001
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestation
|
|
1002
|
+
*/
|
|
1003
|
+
export interface MsgRequestReputationAttestation {
|
|
1004
|
+
creator: string;
|
|
1005
|
+
peerId: string;
|
|
1006
|
+
remoteAddress: string;
|
|
1007
|
+
}
|
|
1008
|
+
export interface MsgRequestReputationAttestationProtoMsg {
|
|
1009
|
+
typeUrl: "/sparkdream.federation.v1.MsgRequestReputationAttestation";
|
|
1010
|
+
value: Uint8Array;
|
|
1011
|
+
}
|
|
1012
|
+
/**
|
|
1013
|
+
* @name MsgRequestReputationAttestationAmino
|
|
1014
|
+
* @package sparkdream.federation.v1
|
|
1015
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestation
|
|
1016
|
+
*/
|
|
1017
|
+
export interface MsgRequestReputationAttestationAmino {
|
|
1018
|
+
creator?: string;
|
|
1019
|
+
peer_id?: string;
|
|
1020
|
+
remote_address?: string;
|
|
1021
|
+
}
|
|
1022
|
+
export interface MsgRequestReputationAttestationAminoMsg {
|
|
1023
|
+
type: "/sparkdream.federation.v1.MsgRequestReputationAttestation";
|
|
1024
|
+
value: MsgRequestReputationAttestationAmino;
|
|
1025
|
+
}
|
|
1026
|
+
/**
|
|
1027
|
+
* @name MsgRequestReputationAttestationResponse
|
|
1028
|
+
* @package sparkdream.federation.v1
|
|
1029
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestationResponse
|
|
1030
|
+
*/
|
|
1031
|
+
export interface MsgRequestReputationAttestationResponse {
|
|
1032
|
+
}
|
|
1033
|
+
export interface MsgRequestReputationAttestationResponseProtoMsg {
|
|
1034
|
+
typeUrl: "/sparkdream.federation.v1.MsgRequestReputationAttestationResponse";
|
|
1035
|
+
value: Uint8Array;
|
|
1036
|
+
}
|
|
1037
|
+
/**
|
|
1038
|
+
* @name MsgRequestReputationAttestationResponseAmino
|
|
1039
|
+
* @package sparkdream.federation.v1
|
|
1040
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestationResponse
|
|
1041
|
+
*/
|
|
1042
|
+
export interface MsgRequestReputationAttestationResponseAmino {
|
|
1043
|
+
}
|
|
1044
|
+
export interface MsgRequestReputationAttestationResponseAminoMsg {
|
|
1045
|
+
type: "/sparkdream.federation.v1.MsgRequestReputationAttestationResponse";
|
|
1046
|
+
value: MsgRequestReputationAttestationResponseAmino;
|
|
1047
|
+
}
|
|
1048
|
+
/**
|
|
1049
|
+
* @name MsgBondVerifier
|
|
1050
|
+
* @package sparkdream.federation.v1
|
|
1051
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifier
|
|
1052
|
+
*/
|
|
1053
|
+
export interface MsgBondVerifier {
|
|
1054
|
+
creator: string;
|
|
1055
|
+
amount: string;
|
|
1056
|
+
}
|
|
1057
|
+
export interface MsgBondVerifierProtoMsg {
|
|
1058
|
+
typeUrl: "/sparkdream.federation.v1.MsgBondVerifier";
|
|
1059
|
+
value: Uint8Array;
|
|
1060
|
+
}
|
|
1061
|
+
/**
|
|
1062
|
+
* @name MsgBondVerifierAmino
|
|
1063
|
+
* @package sparkdream.federation.v1
|
|
1064
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifier
|
|
1065
|
+
*/
|
|
1066
|
+
export interface MsgBondVerifierAmino {
|
|
1067
|
+
creator?: string;
|
|
1068
|
+
amount?: string;
|
|
1069
|
+
}
|
|
1070
|
+
export interface MsgBondVerifierAminoMsg {
|
|
1071
|
+
type: "/sparkdream.federation.v1.MsgBondVerifier";
|
|
1072
|
+
value: MsgBondVerifierAmino;
|
|
1073
|
+
}
|
|
1074
|
+
/**
|
|
1075
|
+
* @name MsgBondVerifierResponse
|
|
1076
|
+
* @package sparkdream.federation.v1
|
|
1077
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifierResponse
|
|
1078
|
+
*/
|
|
1079
|
+
export interface MsgBondVerifierResponse {
|
|
1080
|
+
}
|
|
1081
|
+
export interface MsgBondVerifierResponseProtoMsg {
|
|
1082
|
+
typeUrl: "/sparkdream.federation.v1.MsgBondVerifierResponse";
|
|
1083
|
+
value: Uint8Array;
|
|
1084
|
+
}
|
|
1085
|
+
/**
|
|
1086
|
+
* @name MsgBondVerifierResponseAmino
|
|
1087
|
+
* @package sparkdream.federation.v1
|
|
1088
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifierResponse
|
|
1089
|
+
*/
|
|
1090
|
+
export interface MsgBondVerifierResponseAmino {
|
|
1091
|
+
}
|
|
1092
|
+
export interface MsgBondVerifierResponseAminoMsg {
|
|
1093
|
+
type: "/sparkdream.federation.v1.MsgBondVerifierResponse";
|
|
1094
|
+
value: MsgBondVerifierResponseAmino;
|
|
1095
|
+
}
|
|
1096
|
+
/**
|
|
1097
|
+
* @name MsgUnbondVerifier
|
|
1098
|
+
* @package sparkdream.federation.v1
|
|
1099
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifier
|
|
1100
|
+
*/
|
|
1101
|
+
export interface MsgUnbondVerifier {
|
|
1102
|
+
creator: string;
|
|
1103
|
+
amount: string;
|
|
1104
|
+
}
|
|
1105
|
+
export interface MsgUnbondVerifierProtoMsg {
|
|
1106
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnbondVerifier";
|
|
1107
|
+
value: Uint8Array;
|
|
1108
|
+
}
|
|
1109
|
+
/**
|
|
1110
|
+
* @name MsgUnbondVerifierAmino
|
|
1111
|
+
* @package sparkdream.federation.v1
|
|
1112
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifier
|
|
1113
|
+
*/
|
|
1114
|
+
export interface MsgUnbondVerifierAmino {
|
|
1115
|
+
creator?: string;
|
|
1116
|
+
amount?: string;
|
|
1117
|
+
}
|
|
1118
|
+
export interface MsgUnbondVerifierAminoMsg {
|
|
1119
|
+
type: "/sparkdream.federation.v1.MsgUnbondVerifier";
|
|
1120
|
+
value: MsgUnbondVerifierAmino;
|
|
1121
|
+
}
|
|
1122
|
+
/**
|
|
1123
|
+
* @name MsgUnbondVerifierResponse
|
|
1124
|
+
* @package sparkdream.federation.v1
|
|
1125
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifierResponse
|
|
1126
|
+
*/
|
|
1127
|
+
export interface MsgUnbondVerifierResponse {
|
|
1128
|
+
}
|
|
1129
|
+
export interface MsgUnbondVerifierResponseProtoMsg {
|
|
1130
|
+
typeUrl: "/sparkdream.federation.v1.MsgUnbondVerifierResponse";
|
|
1131
|
+
value: Uint8Array;
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
* @name MsgUnbondVerifierResponseAmino
|
|
1135
|
+
* @package sparkdream.federation.v1
|
|
1136
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifierResponse
|
|
1137
|
+
*/
|
|
1138
|
+
export interface MsgUnbondVerifierResponseAmino {
|
|
1139
|
+
}
|
|
1140
|
+
export interface MsgUnbondVerifierResponseAminoMsg {
|
|
1141
|
+
type: "/sparkdream.federation.v1.MsgUnbondVerifierResponse";
|
|
1142
|
+
value: MsgUnbondVerifierResponseAmino;
|
|
1143
|
+
}
|
|
1144
|
+
/**
|
|
1145
|
+
* @name MsgVerifyContent
|
|
1146
|
+
* @package sparkdream.federation.v1
|
|
1147
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContent
|
|
1148
|
+
*/
|
|
1149
|
+
export interface MsgVerifyContent {
|
|
1150
|
+
creator: string;
|
|
1151
|
+
contentId: bigint;
|
|
1152
|
+
contentHash: Uint8Array;
|
|
1153
|
+
}
|
|
1154
|
+
export interface MsgVerifyContentProtoMsg {
|
|
1155
|
+
typeUrl: "/sparkdream.federation.v1.MsgVerifyContent";
|
|
1156
|
+
value: Uint8Array;
|
|
1157
|
+
}
|
|
1158
|
+
/**
|
|
1159
|
+
* @name MsgVerifyContentAmino
|
|
1160
|
+
* @package sparkdream.federation.v1
|
|
1161
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContent
|
|
1162
|
+
*/
|
|
1163
|
+
export interface MsgVerifyContentAmino {
|
|
1164
|
+
creator?: string;
|
|
1165
|
+
content_id?: string;
|
|
1166
|
+
content_hash?: string;
|
|
1167
|
+
}
|
|
1168
|
+
export interface MsgVerifyContentAminoMsg {
|
|
1169
|
+
type: "/sparkdream.federation.v1.MsgVerifyContent";
|
|
1170
|
+
value: MsgVerifyContentAmino;
|
|
1171
|
+
}
|
|
1172
|
+
/**
|
|
1173
|
+
* @name MsgVerifyContentResponse
|
|
1174
|
+
* @package sparkdream.federation.v1
|
|
1175
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContentResponse
|
|
1176
|
+
*/
|
|
1177
|
+
export interface MsgVerifyContentResponse {
|
|
1178
|
+
}
|
|
1179
|
+
export interface MsgVerifyContentResponseProtoMsg {
|
|
1180
|
+
typeUrl: "/sparkdream.federation.v1.MsgVerifyContentResponse";
|
|
1181
|
+
value: Uint8Array;
|
|
1182
|
+
}
|
|
1183
|
+
/**
|
|
1184
|
+
* @name MsgVerifyContentResponseAmino
|
|
1185
|
+
* @package sparkdream.federation.v1
|
|
1186
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContentResponse
|
|
1187
|
+
*/
|
|
1188
|
+
export interface MsgVerifyContentResponseAmino {
|
|
1189
|
+
}
|
|
1190
|
+
export interface MsgVerifyContentResponseAminoMsg {
|
|
1191
|
+
type: "/sparkdream.federation.v1.MsgVerifyContentResponse";
|
|
1192
|
+
value: MsgVerifyContentResponseAmino;
|
|
1193
|
+
}
|
|
1194
|
+
/**
|
|
1195
|
+
* @name MsgChallengeVerification
|
|
1196
|
+
* @package sparkdream.federation.v1
|
|
1197
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerification
|
|
1198
|
+
*/
|
|
1199
|
+
export interface MsgChallengeVerification {
|
|
1200
|
+
creator: string;
|
|
1201
|
+
contentId: bigint;
|
|
1202
|
+
contentHash: Uint8Array;
|
|
1203
|
+
evidence: string;
|
|
1204
|
+
}
|
|
1205
|
+
export interface MsgChallengeVerificationProtoMsg {
|
|
1206
|
+
typeUrl: "/sparkdream.federation.v1.MsgChallengeVerification";
|
|
1207
|
+
value: Uint8Array;
|
|
1208
|
+
}
|
|
1209
|
+
/**
|
|
1210
|
+
* @name MsgChallengeVerificationAmino
|
|
1211
|
+
* @package sparkdream.federation.v1
|
|
1212
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerification
|
|
1213
|
+
*/
|
|
1214
|
+
export interface MsgChallengeVerificationAmino {
|
|
1215
|
+
creator?: string;
|
|
1216
|
+
content_id?: string;
|
|
1217
|
+
content_hash?: string;
|
|
1218
|
+
evidence?: string;
|
|
1219
|
+
}
|
|
1220
|
+
export interface MsgChallengeVerificationAminoMsg {
|
|
1221
|
+
type: "/sparkdream.federation.v1.MsgChallengeVerification";
|
|
1222
|
+
value: MsgChallengeVerificationAmino;
|
|
1223
|
+
}
|
|
1224
|
+
/**
|
|
1225
|
+
* @name MsgChallengeVerificationResponse
|
|
1226
|
+
* @package sparkdream.federation.v1
|
|
1227
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerificationResponse
|
|
1228
|
+
*/
|
|
1229
|
+
export interface MsgChallengeVerificationResponse {
|
|
1230
|
+
}
|
|
1231
|
+
export interface MsgChallengeVerificationResponseProtoMsg {
|
|
1232
|
+
typeUrl: "/sparkdream.federation.v1.MsgChallengeVerificationResponse";
|
|
1233
|
+
value: Uint8Array;
|
|
1234
|
+
}
|
|
1235
|
+
/**
|
|
1236
|
+
* @name MsgChallengeVerificationResponseAmino
|
|
1237
|
+
* @package sparkdream.federation.v1
|
|
1238
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerificationResponse
|
|
1239
|
+
*/
|
|
1240
|
+
export interface MsgChallengeVerificationResponseAmino {
|
|
1241
|
+
}
|
|
1242
|
+
export interface MsgChallengeVerificationResponseAminoMsg {
|
|
1243
|
+
type: "/sparkdream.federation.v1.MsgChallengeVerificationResponse";
|
|
1244
|
+
value: MsgChallengeVerificationResponseAmino;
|
|
1245
|
+
}
|
|
1246
|
+
/**
|
|
1247
|
+
* @name MsgSubmitArbiterHash
|
|
1248
|
+
* @package sparkdream.federation.v1
|
|
1249
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHash
|
|
1250
|
+
*/
|
|
1251
|
+
export interface MsgSubmitArbiterHash {
|
|
1252
|
+
creator: string;
|
|
1253
|
+
contentId: bigint;
|
|
1254
|
+
contentHash: Uint8Array;
|
|
1255
|
+
}
|
|
1256
|
+
export interface MsgSubmitArbiterHashProtoMsg {
|
|
1257
|
+
typeUrl: "/sparkdream.federation.v1.MsgSubmitArbiterHash";
|
|
1258
|
+
value: Uint8Array;
|
|
1259
|
+
}
|
|
1260
|
+
/**
|
|
1261
|
+
* @name MsgSubmitArbiterHashAmino
|
|
1262
|
+
* @package sparkdream.federation.v1
|
|
1263
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHash
|
|
1264
|
+
*/
|
|
1265
|
+
export interface MsgSubmitArbiterHashAmino {
|
|
1266
|
+
creator?: string;
|
|
1267
|
+
content_id?: string;
|
|
1268
|
+
content_hash?: string;
|
|
1269
|
+
}
|
|
1270
|
+
export interface MsgSubmitArbiterHashAminoMsg {
|
|
1271
|
+
type: "/sparkdream.federation.v1.MsgSubmitArbiterHash";
|
|
1272
|
+
value: MsgSubmitArbiterHashAmino;
|
|
1273
|
+
}
|
|
1274
|
+
/**
|
|
1275
|
+
* @name MsgSubmitArbiterHashResponse
|
|
1276
|
+
* @package sparkdream.federation.v1
|
|
1277
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHashResponse
|
|
1278
|
+
*/
|
|
1279
|
+
export interface MsgSubmitArbiterHashResponse {
|
|
1280
|
+
}
|
|
1281
|
+
export interface MsgSubmitArbiterHashResponseProtoMsg {
|
|
1282
|
+
typeUrl: "/sparkdream.federation.v1.MsgSubmitArbiterHashResponse";
|
|
1283
|
+
value: Uint8Array;
|
|
1284
|
+
}
|
|
1285
|
+
/**
|
|
1286
|
+
* @name MsgSubmitArbiterHashResponseAmino
|
|
1287
|
+
* @package sparkdream.federation.v1
|
|
1288
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHashResponse
|
|
1289
|
+
*/
|
|
1290
|
+
export interface MsgSubmitArbiterHashResponseAmino {
|
|
1291
|
+
}
|
|
1292
|
+
export interface MsgSubmitArbiterHashResponseAminoMsg {
|
|
1293
|
+
type: "/sparkdream.federation.v1.MsgSubmitArbiterHashResponse";
|
|
1294
|
+
value: MsgSubmitArbiterHashResponseAmino;
|
|
1295
|
+
}
|
|
1296
|
+
/**
|
|
1297
|
+
* @name MsgEscalateChallenge
|
|
1298
|
+
* @package sparkdream.federation.v1
|
|
1299
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallenge
|
|
1300
|
+
*/
|
|
1301
|
+
export interface MsgEscalateChallenge {
|
|
1302
|
+
creator: string;
|
|
1303
|
+
contentId: bigint;
|
|
1304
|
+
}
|
|
1305
|
+
export interface MsgEscalateChallengeProtoMsg {
|
|
1306
|
+
typeUrl: "/sparkdream.federation.v1.MsgEscalateChallenge";
|
|
1307
|
+
value: Uint8Array;
|
|
1308
|
+
}
|
|
1309
|
+
/**
|
|
1310
|
+
* @name MsgEscalateChallengeAmino
|
|
1311
|
+
* @package sparkdream.federation.v1
|
|
1312
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallenge
|
|
1313
|
+
*/
|
|
1314
|
+
export interface MsgEscalateChallengeAmino {
|
|
1315
|
+
creator?: string;
|
|
1316
|
+
content_id?: string;
|
|
1317
|
+
}
|
|
1318
|
+
export interface MsgEscalateChallengeAminoMsg {
|
|
1319
|
+
type: "/sparkdream.federation.v1.MsgEscalateChallenge";
|
|
1320
|
+
value: MsgEscalateChallengeAmino;
|
|
1321
|
+
}
|
|
1322
|
+
/**
|
|
1323
|
+
* @name MsgEscalateChallengeResponse
|
|
1324
|
+
* @package sparkdream.federation.v1
|
|
1325
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallengeResponse
|
|
1326
|
+
*/
|
|
1327
|
+
export interface MsgEscalateChallengeResponse {
|
|
1328
|
+
}
|
|
1329
|
+
export interface MsgEscalateChallengeResponseProtoMsg {
|
|
1330
|
+
typeUrl: "/sparkdream.federation.v1.MsgEscalateChallengeResponse";
|
|
1331
|
+
value: Uint8Array;
|
|
1332
|
+
}
|
|
1333
|
+
/**
|
|
1334
|
+
* @name MsgEscalateChallengeResponseAmino
|
|
1335
|
+
* @package sparkdream.federation.v1
|
|
1336
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallengeResponse
|
|
1337
|
+
*/
|
|
1338
|
+
export interface MsgEscalateChallengeResponseAmino {
|
|
1339
|
+
}
|
|
1340
|
+
export interface MsgEscalateChallengeResponseAminoMsg {
|
|
1341
|
+
type: "/sparkdream.federation.v1.MsgEscalateChallengeResponse";
|
|
1342
|
+
value: MsgEscalateChallengeResponseAmino;
|
|
1343
|
+
}
|
|
1344
|
+
/**
|
|
1345
|
+
* @name MsgUpdateOperationalParams
|
|
1346
|
+
* @package sparkdream.federation.v1
|
|
1347
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParams
|
|
1348
|
+
*/
|
|
1349
|
+
export interface MsgUpdateOperationalParams {
|
|
1350
|
+
authority: string;
|
|
1351
|
+
operationalParams: FederationOperationalParams;
|
|
1352
|
+
}
|
|
1353
|
+
export interface MsgUpdateOperationalParamsProtoMsg {
|
|
1354
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateOperationalParams";
|
|
1355
|
+
value: Uint8Array;
|
|
1356
|
+
}
|
|
1357
|
+
/**
|
|
1358
|
+
* @name MsgUpdateOperationalParamsAmino
|
|
1359
|
+
* @package sparkdream.federation.v1
|
|
1360
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParams
|
|
1361
|
+
*/
|
|
1362
|
+
export interface MsgUpdateOperationalParamsAmino {
|
|
1363
|
+
authority?: string;
|
|
1364
|
+
operational_params?: FederationOperationalParamsAmino;
|
|
1365
|
+
}
|
|
1366
|
+
export interface MsgUpdateOperationalParamsAminoMsg {
|
|
1367
|
+
type: "/sparkdream.federation.v1.MsgUpdateOperationalParams";
|
|
1368
|
+
value: MsgUpdateOperationalParamsAmino;
|
|
1369
|
+
}
|
|
1370
|
+
/**
|
|
1371
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
1372
|
+
* @package sparkdream.federation.v1
|
|
1373
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParamsResponse
|
|
1374
|
+
*/
|
|
1375
|
+
export interface MsgUpdateOperationalParamsResponse {
|
|
1376
|
+
}
|
|
1377
|
+
export interface MsgUpdateOperationalParamsResponseProtoMsg {
|
|
1378
|
+
typeUrl: "/sparkdream.federation.v1.MsgUpdateOperationalParamsResponse";
|
|
1379
|
+
value: Uint8Array;
|
|
1380
|
+
}
|
|
1381
|
+
/**
|
|
1382
|
+
* @name MsgUpdateOperationalParamsResponseAmino
|
|
1383
|
+
* @package sparkdream.federation.v1
|
|
1384
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParamsResponse
|
|
1385
|
+
*/
|
|
1386
|
+
export interface MsgUpdateOperationalParamsResponseAmino {
|
|
1387
|
+
}
|
|
1388
|
+
export interface MsgUpdateOperationalParamsResponseAminoMsg {
|
|
1389
|
+
type: "/sparkdream.federation.v1.MsgUpdateOperationalParamsResponse";
|
|
1390
|
+
value: MsgUpdateOperationalParamsResponseAmino;
|
|
1391
|
+
}
|
|
1392
|
+
/**
|
|
1393
|
+
* @name MsgUpdateParams
|
|
1394
|
+
* @package sparkdream.federation.v1
|
|
1395
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParams
|
|
1396
|
+
*/
|
|
1397
|
+
export declare const MsgUpdateParams: {
|
|
1398
|
+
typeUrl: string;
|
|
1399
|
+
aminoType: string;
|
|
1400
|
+
encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter;
|
|
1401
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams;
|
|
1402
|
+
fromPartial(object: DeepPartial<MsgUpdateParams>): MsgUpdateParams;
|
|
1403
|
+
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams;
|
|
1404
|
+
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino;
|
|
1405
|
+
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams;
|
|
1406
|
+
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg;
|
|
1407
|
+
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams;
|
|
1408
|
+
toProto(message: MsgUpdateParams): Uint8Array;
|
|
1409
|
+
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
1410
|
+
};
|
|
1411
|
+
/**
|
|
1412
|
+
* @name MsgUpdateParamsResponse
|
|
1413
|
+
* @package sparkdream.federation.v1
|
|
1414
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateParamsResponse
|
|
1415
|
+
*/
|
|
1416
|
+
export declare const MsgUpdateParamsResponse: {
|
|
1417
|
+
typeUrl: string;
|
|
1418
|
+
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1419
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse;
|
|
1420
|
+
fromPartial(_: DeepPartial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse;
|
|
1421
|
+
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse;
|
|
1422
|
+
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino;
|
|
1423
|
+
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse;
|
|
1424
|
+
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse;
|
|
1425
|
+
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
1426
|
+
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
1427
|
+
};
|
|
1428
|
+
/**
|
|
1429
|
+
* @name MsgRegisterPeer
|
|
1430
|
+
* @package sparkdream.federation.v1
|
|
1431
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeer
|
|
1432
|
+
*/
|
|
1433
|
+
export declare const MsgRegisterPeer: {
|
|
1434
|
+
typeUrl: string;
|
|
1435
|
+
encode(message: MsgRegisterPeer, writer?: BinaryWriter): BinaryWriter;
|
|
1436
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterPeer;
|
|
1437
|
+
fromPartial(object: DeepPartial<MsgRegisterPeer>): MsgRegisterPeer;
|
|
1438
|
+
fromAmino(object: MsgRegisterPeerAmino): MsgRegisterPeer;
|
|
1439
|
+
toAmino(message: MsgRegisterPeer): MsgRegisterPeerAmino;
|
|
1440
|
+
fromAminoMsg(object: MsgRegisterPeerAminoMsg): MsgRegisterPeer;
|
|
1441
|
+
fromProtoMsg(message: MsgRegisterPeerProtoMsg): MsgRegisterPeer;
|
|
1442
|
+
toProto(message: MsgRegisterPeer): Uint8Array;
|
|
1443
|
+
toProtoMsg(message: MsgRegisterPeer): MsgRegisterPeerProtoMsg;
|
|
1444
|
+
};
|
|
1445
|
+
/**
|
|
1446
|
+
* @name MsgRegisterPeerResponse
|
|
1447
|
+
* @package sparkdream.federation.v1
|
|
1448
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterPeerResponse
|
|
1449
|
+
*/
|
|
1450
|
+
export declare const MsgRegisterPeerResponse: {
|
|
1451
|
+
typeUrl: string;
|
|
1452
|
+
encode(_: MsgRegisterPeerResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1453
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterPeerResponse;
|
|
1454
|
+
fromPartial(_: DeepPartial<MsgRegisterPeerResponse>): MsgRegisterPeerResponse;
|
|
1455
|
+
fromAmino(_: MsgRegisterPeerResponseAmino): MsgRegisterPeerResponse;
|
|
1456
|
+
toAmino(_: MsgRegisterPeerResponse): MsgRegisterPeerResponseAmino;
|
|
1457
|
+
fromAminoMsg(object: MsgRegisterPeerResponseAminoMsg): MsgRegisterPeerResponse;
|
|
1458
|
+
fromProtoMsg(message: MsgRegisterPeerResponseProtoMsg): MsgRegisterPeerResponse;
|
|
1459
|
+
toProto(message: MsgRegisterPeerResponse): Uint8Array;
|
|
1460
|
+
toProtoMsg(message: MsgRegisterPeerResponse): MsgRegisterPeerResponseProtoMsg;
|
|
1461
|
+
};
|
|
1462
|
+
/**
|
|
1463
|
+
* @name MsgRemovePeer
|
|
1464
|
+
* @package sparkdream.federation.v1
|
|
1465
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeer
|
|
1466
|
+
*/
|
|
1467
|
+
export declare const MsgRemovePeer: {
|
|
1468
|
+
typeUrl: string;
|
|
1469
|
+
encode(message: MsgRemovePeer, writer?: BinaryWriter): BinaryWriter;
|
|
1470
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemovePeer;
|
|
1471
|
+
fromPartial(object: DeepPartial<MsgRemovePeer>): MsgRemovePeer;
|
|
1472
|
+
fromAmino(object: MsgRemovePeerAmino): MsgRemovePeer;
|
|
1473
|
+
toAmino(message: MsgRemovePeer): MsgRemovePeerAmino;
|
|
1474
|
+
fromAminoMsg(object: MsgRemovePeerAminoMsg): MsgRemovePeer;
|
|
1475
|
+
fromProtoMsg(message: MsgRemovePeerProtoMsg): MsgRemovePeer;
|
|
1476
|
+
toProto(message: MsgRemovePeer): Uint8Array;
|
|
1477
|
+
toProtoMsg(message: MsgRemovePeer): MsgRemovePeerProtoMsg;
|
|
1478
|
+
};
|
|
1479
|
+
/**
|
|
1480
|
+
* @name MsgRemovePeerResponse
|
|
1481
|
+
* @package sparkdream.federation.v1
|
|
1482
|
+
* @see proto type: sparkdream.federation.v1.MsgRemovePeerResponse
|
|
1483
|
+
*/
|
|
1484
|
+
export declare const MsgRemovePeerResponse: {
|
|
1485
|
+
typeUrl: string;
|
|
1486
|
+
encode(_: MsgRemovePeerResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1487
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemovePeerResponse;
|
|
1488
|
+
fromPartial(_: DeepPartial<MsgRemovePeerResponse>): MsgRemovePeerResponse;
|
|
1489
|
+
fromAmino(_: MsgRemovePeerResponseAmino): MsgRemovePeerResponse;
|
|
1490
|
+
toAmino(_: MsgRemovePeerResponse): MsgRemovePeerResponseAmino;
|
|
1491
|
+
fromAminoMsg(object: MsgRemovePeerResponseAminoMsg): MsgRemovePeerResponse;
|
|
1492
|
+
fromProtoMsg(message: MsgRemovePeerResponseProtoMsg): MsgRemovePeerResponse;
|
|
1493
|
+
toProto(message: MsgRemovePeerResponse): Uint8Array;
|
|
1494
|
+
toProtoMsg(message: MsgRemovePeerResponse): MsgRemovePeerResponseProtoMsg;
|
|
1495
|
+
};
|
|
1496
|
+
/**
|
|
1497
|
+
* @name MsgSuspendPeer
|
|
1498
|
+
* @package sparkdream.federation.v1
|
|
1499
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeer
|
|
1500
|
+
*/
|
|
1501
|
+
export declare const MsgSuspendPeer: {
|
|
1502
|
+
typeUrl: string;
|
|
1503
|
+
encode(message: MsgSuspendPeer, writer?: BinaryWriter): BinaryWriter;
|
|
1504
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSuspendPeer;
|
|
1505
|
+
fromPartial(object: DeepPartial<MsgSuspendPeer>): MsgSuspendPeer;
|
|
1506
|
+
fromAmino(object: MsgSuspendPeerAmino): MsgSuspendPeer;
|
|
1507
|
+
toAmino(message: MsgSuspendPeer): MsgSuspendPeerAmino;
|
|
1508
|
+
fromAminoMsg(object: MsgSuspendPeerAminoMsg): MsgSuspendPeer;
|
|
1509
|
+
fromProtoMsg(message: MsgSuspendPeerProtoMsg): MsgSuspendPeer;
|
|
1510
|
+
toProto(message: MsgSuspendPeer): Uint8Array;
|
|
1511
|
+
toProtoMsg(message: MsgSuspendPeer): MsgSuspendPeerProtoMsg;
|
|
1512
|
+
};
|
|
1513
|
+
/**
|
|
1514
|
+
* @name MsgSuspendPeerResponse
|
|
1515
|
+
* @package sparkdream.federation.v1
|
|
1516
|
+
* @see proto type: sparkdream.federation.v1.MsgSuspendPeerResponse
|
|
1517
|
+
*/
|
|
1518
|
+
export declare const MsgSuspendPeerResponse: {
|
|
1519
|
+
typeUrl: string;
|
|
1520
|
+
encode(_: MsgSuspendPeerResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1521
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSuspendPeerResponse;
|
|
1522
|
+
fromPartial(_: DeepPartial<MsgSuspendPeerResponse>): MsgSuspendPeerResponse;
|
|
1523
|
+
fromAmino(_: MsgSuspendPeerResponseAmino): MsgSuspendPeerResponse;
|
|
1524
|
+
toAmino(_: MsgSuspendPeerResponse): MsgSuspendPeerResponseAmino;
|
|
1525
|
+
fromAminoMsg(object: MsgSuspendPeerResponseAminoMsg): MsgSuspendPeerResponse;
|
|
1526
|
+
fromProtoMsg(message: MsgSuspendPeerResponseProtoMsg): MsgSuspendPeerResponse;
|
|
1527
|
+
toProto(message: MsgSuspendPeerResponse): Uint8Array;
|
|
1528
|
+
toProtoMsg(message: MsgSuspendPeerResponse): MsgSuspendPeerResponseProtoMsg;
|
|
1529
|
+
};
|
|
1530
|
+
/**
|
|
1531
|
+
* @name MsgResumePeer
|
|
1532
|
+
* @package sparkdream.federation.v1
|
|
1533
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeer
|
|
1534
|
+
*/
|
|
1535
|
+
export declare const MsgResumePeer: {
|
|
1536
|
+
typeUrl: string;
|
|
1537
|
+
encode(message: MsgResumePeer, writer?: BinaryWriter): BinaryWriter;
|
|
1538
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgResumePeer;
|
|
1539
|
+
fromPartial(object: DeepPartial<MsgResumePeer>): MsgResumePeer;
|
|
1540
|
+
fromAmino(object: MsgResumePeerAmino): MsgResumePeer;
|
|
1541
|
+
toAmino(message: MsgResumePeer): MsgResumePeerAmino;
|
|
1542
|
+
fromAminoMsg(object: MsgResumePeerAminoMsg): MsgResumePeer;
|
|
1543
|
+
fromProtoMsg(message: MsgResumePeerProtoMsg): MsgResumePeer;
|
|
1544
|
+
toProto(message: MsgResumePeer): Uint8Array;
|
|
1545
|
+
toProtoMsg(message: MsgResumePeer): MsgResumePeerProtoMsg;
|
|
1546
|
+
};
|
|
1547
|
+
/**
|
|
1548
|
+
* @name MsgResumePeerResponse
|
|
1549
|
+
* @package sparkdream.federation.v1
|
|
1550
|
+
* @see proto type: sparkdream.federation.v1.MsgResumePeerResponse
|
|
1551
|
+
*/
|
|
1552
|
+
export declare const MsgResumePeerResponse: {
|
|
1553
|
+
typeUrl: string;
|
|
1554
|
+
encode(_: MsgResumePeerResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1555
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgResumePeerResponse;
|
|
1556
|
+
fromPartial(_: DeepPartial<MsgResumePeerResponse>): MsgResumePeerResponse;
|
|
1557
|
+
fromAmino(_: MsgResumePeerResponseAmino): MsgResumePeerResponse;
|
|
1558
|
+
toAmino(_: MsgResumePeerResponse): MsgResumePeerResponseAmino;
|
|
1559
|
+
fromAminoMsg(object: MsgResumePeerResponseAminoMsg): MsgResumePeerResponse;
|
|
1560
|
+
fromProtoMsg(message: MsgResumePeerResponseProtoMsg): MsgResumePeerResponse;
|
|
1561
|
+
toProto(message: MsgResumePeerResponse): Uint8Array;
|
|
1562
|
+
toProtoMsg(message: MsgResumePeerResponse): MsgResumePeerResponseProtoMsg;
|
|
1563
|
+
};
|
|
1564
|
+
/**
|
|
1565
|
+
* @name MsgUpdatePeerPolicy
|
|
1566
|
+
* @package sparkdream.federation.v1
|
|
1567
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicy
|
|
1568
|
+
*/
|
|
1569
|
+
export declare const MsgUpdatePeerPolicy: {
|
|
1570
|
+
typeUrl: string;
|
|
1571
|
+
encode(message: MsgUpdatePeerPolicy, writer?: BinaryWriter): BinaryWriter;
|
|
1572
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdatePeerPolicy;
|
|
1573
|
+
fromPartial(object: DeepPartial<MsgUpdatePeerPolicy>): MsgUpdatePeerPolicy;
|
|
1574
|
+
fromAmino(object: MsgUpdatePeerPolicyAmino): MsgUpdatePeerPolicy;
|
|
1575
|
+
toAmino(message: MsgUpdatePeerPolicy): MsgUpdatePeerPolicyAmino;
|
|
1576
|
+
fromAminoMsg(object: MsgUpdatePeerPolicyAminoMsg): MsgUpdatePeerPolicy;
|
|
1577
|
+
fromProtoMsg(message: MsgUpdatePeerPolicyProtoMsg): MsgUpdatePeerPolicy;
|
|
1578
|
+
toProto(message: MsgUpdatePeerPolicy): Uint8Array;
|
|
1579
|
+
toProtoMsg(message: MsgUpdatePeerPolicy): MsgUpdatePeerPolicyProtoMsg;
|
|
1580
|
+
};
|
|
1581
|
+
/**
|
|
1582
|
+
* @name MsgUpdatePeerPolicyResponse
|
|
1583
|
+
* @package sparkdream.federation.v1
|
|
1584
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdatePeerPolicyResponse
|
|
1585
|
+
*/
|
|
1586
|
+
export declare const MsgUpdatePeerPolicyResponse: {
|
|
1587
|
+
typeUrl: string;
|
|
1588
|
+
encode(_: MsgUpdatePeerPolicyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1589
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdatePeerPolicyResponse;
|
|
1590
|
+
fromPartial(_: DeepPartial<MsgUpdatePeerPolicyResponse>): MsgUpdatePeerPolicyResponse;
|
|
1591
|
+
fromAmino(_: MsgUpdatePeerPolicyResponseAmino): MsgUpdatePeerPolicyResponse;
|
|
1592
|
+
toAmino(_: MsgUpdatePeerPolicyResponse): MsgUpdatePeerPolicyResponseAmino;
|
|
1593
|
+
fromAminoMsg(object: MsgUpdatePeerPolicyResponseAminoMsg): MsgUpdatePeerPolicyResponse;
|
|
1594
|
+
fromProtoMsg(message: MsgUpdatePeerPolicyResponseProtoMsg): MsgUpdatePeerPolicyResponse;
|
|
1595
|
+
toProto(message: MsgUpdatePeerPolicyResponse): Uint8Array;
|
|
1596
|
+
toProtoMsg(message: MsgUpdatePeerPolicyResponse): MsgUpdatePeerPolicyResponseProtoMsg;
|
|
1597
|
+
};
|
|
1598
|
+
/**
|
|
1599
|
+
* @name MsgRegisterBridge
|
|
1600
|
+
* @package sparkdream.federation.v1
|
|
1601
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridge
|
|
1602
|
+
*/
|
|
1603
|
+
export declare const MsgRegisterBridge: {
|
|
1604
|
+
typeUrl: string;
|
|
1605
|
+
encode(message: MsgRegisterBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1606
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterBridge;
|
|
1607
|
+
fromPartial(object: DeepPartial<MsgRegisterBridge>): MsgRegisterBridge;
|
|
1608
|
+
fromAmino(object: MsgRegisterBridgeAmino): MsgRegisterBridge;
|
|
1609
|
+
toAmino(message: MsgRegisterBridge): MsgRegisterBridgeAmino;
|
|
1610
|
+
fromAminoMsg(object: MsgRegisterBridgeAminoMsg): MsgRegisterBridge;
|
|
1611
|
+
fromProtoMsg(message: MsgRegisterBridgeProtoMsg): MsgRegisterBridge;
|
|
1612
|
+
toProto(message: MsgRegisterBridge): Uint8Array;
|
|
1613
|
+
toProtoMsg(message: MsgRegisterBridge): MsgRegisterBridgeProtoMsg;
|
|
1614
|
+
};
|
|
1615
|
+
/**
|
|
1616
|
+
* @name MsgRegisterBridgeResponse
|
|
1617
|
+
* @package sparkdream.federation.v1
|
|
1618
|
+
* @see proto type: sparkdream.federation.v1.MsgRegisterBridgeResponse
|
|
1619
|
+
*/
|
|
1620
|
+
export declare const MsgRegisterBridgeResponse: {
|
|
1621
|
+
typeUrl: string;
|
|
1622
|
+
encode(_: MsgRegisterBridgeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1623
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterBridgeResponse;
|
|
1624
|
+
fromPartial(_: DeepPartial<MsgRegisterBridgeResponse>): MsgRegisterBridgeResponse;
|
|
1625
|
+
fromAmino(_: MsgRegisterBridgeResponseAmino): MsgRegisterBridgeResponse;
|
|
1626
|
+
toAmino(_: MsgRegisterBridgeResponse): MsgRegisterBridgeResponseAmino;
|
|
1627
|
+
fromAminoMsg(object: MsgRegisterBridgeResponseAminoMsg): MsgRegisterBridgeResponse;
|
|
1628
|
+
fromProtoMsg(message: MsgRegisterBridgeResponseProtoMsg): MsgRegisterBridgeResponse;
|
|
1629
|
+
toProto(message: MsgRegisterBridgeResponse): Uint8Array;
|
|
1630
|
+
toProtoMsg(message: MsgRegisterBridgeResponse): MsgRegisterBridgeResponseProtoMsg;
|
|
1631
|
+
};
|
|
1632
|
+
/**
|
|
1633
|
+
* @name MsgRevokeBridge
|
|
1634
|
+
* @package sparkdream.federation.v1
|
|
1635
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridge
|
|
1636
|
+
*/
|
|
1637
|
+
export declare const MsgRevokeBridge: {
|
|
1638
|
+
typeUrl: string;
|
|
1639
|
+
encode(message: MsgRevokeBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1640
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeBridge;
|
|
1641
|
+
fromPartial(object: DeepPartial<MsgRevokeBridge>): MsgRevokeBridge;
|
|
1642
|
+
fromAmino(object: MsgRevokeBridgeAmino): MsgRevokeBridge;
|
|
1643
|
+
toAmino(message: MsgRevokeBridge): MsgRevokeBridgeAmino;
|
|
1644
|
+
fromAminoMsg(object: MsgRevokeBridgeAminoMsg): MsgRevokeBridge;
|
|
1645
|
+
fromProtoMsg(message: MsgRevokeBridgeProtoMsg): MsgRevokeBridge;
|
|
1646
|
+
toProto(message: MsgRevokeBridge): Uint8Array;
|
|
1647
|
+
toProtoMsg(message: MsgRevokeBridge): MsgRevokeBridgeProtoMsg;
|
|
1648
|
+
};
|
|
1649
|
+
/**
|
|
1650
|
+
* @name MsgRevokeBridgeResponse
|
|
1651
|
+
* @package sparkdream.federation.v1
|
|
1652
|
+
* @see proto type: sparkdream.federation.v1.MsgRevokeBridgeResponse
|
|
1653
|
+
*/
|
|
1654
|
+
export declare const MsgRevokeBridgeResponse: {
|
|
1655
|
+
typeUrl: string;
|
|
1656
|
+
encode(_: MsgRevokeBridgeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1657
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeBridgeResponse;
|
|
1658
|
+
fromPartial(_: DeepPartial<MsgRevokeBridgeResponse>): MsgRevokeBridgeResponse;
|
|
1659
|
+
fromAmino(_: MsgRevokeBridgeResponseAmino): MsgRevokeBridgeResponse;
|
|
1660
|
+
toAmino(_: MsgRevokeBridgeResponse): MsgRevokeBridgeResponseAmino;
|
|
1661
|
+
fromAminoMsg(object: MsgRevokeBridgeResponseAminoMsg): MsgRevokeBridgeResponse;
|
|
1662
|
+
fromProtoMsg(message: MsgRevokeBridgeResponseProtoMsg): MsgRevokeBridgeResponse;
|
|
1663
|
+
toProto(message: MsgRevokeBridgeResponse): Uint8Array;
|
|
1664
|
+
toProtoMsg(message: MsgRevokeBridgeResponse): MsgRevokeBridgeResponseProtoMsg;
|
|
1665
|
+
};
|
|
1666
|
+
/**
|
|
1667
|
+
* @name MsgSlashBridge
|
|
1668
|
+
* @package sparkdream.federation.v1
|
|
1669
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridge
|
|
1670
|
+
*/
|
|
1671
|
+
export declare const MsgSlashBridge: {
|
|
1672
|
+
typeUrl: string;
|
|
1673
|
+
encode(message: MsgSlashBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1674
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSlashBridge;
|
|
1675
|
+
fromPartial(object: DeepPartial<MsgSlashBridge>): MsgSlashBridge;
|
|
1676
|
+
fromAmino(object: MsgSlashBridgeAmino): MsgSlashBridge;
|
|
1677
|
+
toAmino(message: MsgSlashBridge): MsgSlashBridgeAmino;
|
|
1678
|
+
fromAminoMsg(object: MsgSlashBridgeAminoMsg): MsgSlashBridge;
|
|
1679
|
+
fromProtoMsg(message: MsgSlashBridgeProtoMsg): MsgSlashBridge;
|
|
1680
|
+
toProto(message: MsgSlashBridge): Uint8Array;
|
|
1681
|
+
toProtoMsg(message: MsgSlashBridge): MsgSlashBridgeProtoMsg;
|
|
1682
|
+
};
|
|
1683
|
+
/**
|
|
1684
|
+
* @name MsgSlashBridgeResponse
|
|
1685
|
+
* @package sparkdream.federation.v1
|
|
1686
|
+
* @see proto type: sparkdream.federation.v1.MsgSlashBridgeResponse
|
|
1687
|
+
*/
|
|
1688
|
+
export declare const MsgSlashBridgeResponse: {
|
|
1689
|
+
typeUrl: string;
|
|
1690
|
+
encode(_: MsgSlashBridgeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1691
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSlashBridgeResponse;
|
|
1692
|
+
fromPartial(_: DeepPartial<MsgSlashBridgeResponse>): MsgSlashBridgeResponse;
|
|
1693
|
+
fromAmino(_: MsgSlashBridgeResponseAmino): MsgSlashBridgeResponse;
|
|
1694
|
+
toAmino(_: MsgSlashBridgeResponse): MsgSlashBridgeResponseAmino;
|
|
1695
|
+
fromAminoMsg(object: MsgSlashBridgeResponseAminoMsg): MsgSlashBridgeResponse;
|
|
1696
|
+
fromProtoMsg(message: MsgSlashBridgeResponseProtoMsg): MsgSlashBridgeResponse;
|
|
1697
|
+
toProto(message: MsgSlashBridgeResponse): Uint8Array;
|
|
1698
|
+
toProtoMsg(message: MsgSlashBridgeResponse): MsgSlashBridgeResponseProtoMsg;
|
|
1699
|
+
};
|
|
1700
|
+
/**
|
|
1701
|
+
* @name MsgUpdateBridge
|
|
1702
|
+
* @package sparkdream.federation.v1
|
|
1703
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridge
|
|
1704
|
+
*/
|
|
1705
|
+
export declare const MsgUpdateBridge: {
|
|
1706
|
+
typeUrl: string;
|
|
1707
|
+
encode(message: MsgUpdateBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1708
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBridge;
|
|
1709
|
+
fromPartial(object: DeepPartial<MsgUpdateBridge>): MsgUpdateBridge;
|
|
1710
|
+
fromAmino(object: MsgUpdateBridgeAmino): MsgUpdateBridge;
|
|
1711
|
+
toAmino(message: MsgUpdateBridge): MsgUpdateBridgeAmino;
|
|
1712
|
+
fromAminoMsg(object: MsgUpdateBridgeAminoMsg): MsgUpdateBridge;
|
|
1713
|
+
fromProtoMsg(message: MsgUpdateBridgeProtoMsg): MsgUpdateBridge;
|
|
1714
|
+
toProto(message: MsgUpdateBridge): Uint8Array;
|
|
1715
|
+
toProtoMsg(message: MsgUpdateBridge): MsgUpdateBridgeProtoMsg;
|
|
1716
|
+
};
|
|
1717
|
+
/**
|
|
1718
|
+
* @name MsgUpdateBridgeResponse
|
|
1719
|
+
* @package sparkdream.federation.v1
|
|
1720
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateBridgeResponse
|
|
1721
|
+
*/
|
|
1722
|
+
export declare const MsgUpdateBridgeResponse: {
|
|
1723
|
+
typeUrl: string;
|
|
1724
|
+
encode(_: MsgUpdateBridgeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1725
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateBridgeResponse;
|
|
1726
|
+
fromPartial(_: DeepPartial<MsgUpdateBridgeResponse>): MsgUpdateBridgeResponse;
|
|
1727
|
+
fromAmino(_: MsgUpdateBridgeResponseAmino): MsgUpdateBridgeResponse;
|
|
1728
|
+
toAmino(_: MsgUpdateBridgeResponse): MsgUpdateBridgeResponseAmino;
|
|
1729
|
+
fromAminoMsg(object: MsgUpdateBridgeResponseAminoMsg): MsgUpdateBridgeResponse;
|
|
1730
|
+
fromProtoMsg(message: MsgUpdateBridgeResponseProtoMsg): MsgUpdateBridgeResponse;
|
|
1731
|
+
toProto(message: MsgUpdateBridgeResponse): Uint8Array;
|
|
1732
|
+
toProtoMsg(message: MsgUpdateBridgeResponse): MsgUpdateBridgeResponseProtoMsg;
|
|
1733
|
+
};
|
|
1734
|
+
/**
|
|
1735
|
+
* @name MsgUnbondBridge
|
|
1736
|
+
* @package sparkdream.federation.v1
|
|
1737
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridge
|
|
1738
|
+
*/
|
|
1739
|
+
export declare const MsgUnbondBridge: {
|
|
1740
|
+
typeUrl: string;
|
|
1741
|
+
encode(message: MsgUnbondBridge, writer?: BinaryWriter): BinaryWriter;
|
|
1742
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondBridge;
|
|
1743
|
+
fromPartial(object: DeepPartial<MsgUnbondBridge>): MsgUnbondBridge;
|
|
1744
|
+
fromAmino(object: MsgUnbondBridgeAmino): MsgUnbondBridge;
|
|
1745
|
+
toAmino(message: MsgUnbondBridge): MsgUnbondBridgeAmino;
|
|
1746
|
+
fromAminoMsg(object: MsgUnbondBridgeAminoMsg): MsgUnbondBridge;
|
|
1747
|
+
fromProtoMsg(message: MsgUnbondBridgeProtoMsg): MsgUnbondBridge;
|
|
1748
|
+
toProto(message: MsgUnbondBridge): Uint8Array;
|
|
1749
|
+
toProtoMsg(message: MsgUnbondBridge): MsgUnbondBridgeProtoMsg;
|
|
1750
|
+
};
|
|
1751
|
+
/**
|
|
1752
|
+
* @name MsgUnbondBridgeResponse
|
|
1753
|
+
* @package sparkdream.federation.v1
|
|
1754
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondBridgeResponse
|
|
1755
|
+
*/
|
|
1756
|
+
export declare const MsgUnbondBridgeResponse: {
|
|
1757
|
+
typeUrl: string;
|
|
1758
|
+
encode(_: MsgUnbondBridgeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1759
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondBridgeResponse;
|
|
1760
|
+
fromPartial(_: DeepPartial<MsgUnbondBridgeResponse>): MsgUnbondBridgeResponse;
|
|
1761
|
+
fromAmino(_: MsgUnbondBridgeResponseAmino): MsgUnbondBridgeResponse;
|
|
1762
|
+
toAmino(_: MsgUnbondBridgeResponse): MsgUnbondBridgeResponseAmino;
|
|
1763
|
+
fromAminoMsg(object: MsgUnbondBridgeResponseAminoMsg): MsgUnbondBridgeResponse;
|
|
1764
|
+
fromProtoMsg(message: MsgUnbondBridgeResponseProtoMsg): MsgUnbondBridgeResponse;
|
|
1765
|
+
toProto(message: MsgUnbondBridgeResponse): Uint8Array;
|
|
1766
|
+
toProtoMsg(message: MsgUnbondBridgeResponse): MsgUnbondBridgeResponseProtoMsg;
|
|
1767
|
+
};
|
|
1768
|
+
/**
|
|
1769
|
+
* @name MsgTopUpBridgeStake
|
|
1770
|
+
* @package sparkdream.federation.v1
|
|
1771
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStake
|
|
1772
|
+
*/
|
|
1773
|
+
export declare const MsgTopUpBridgeStake: {
|
|
1774
|
+
typeUrl: string;
|
|
1775
|
+
encode(message: MsgTopUpBridgeStake, writer?: BinaryWriter): BinaryWriter;
|
|
1776
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgTopUpBridgeStake;
|
|
1777
|
+
fromPartial(object: DeepPartial<MsgTopUpBridgeStake>): MsgTopUpBridgeStake;
|
|
1778
|
+
fromAmino(object: MsgTopUpBridgeStakeAmino): MsgTopUpBridgeStake;
|
|
1779
|
+
toAmino(message: MsgTopUpBridgeStake): MsgTopUpBridgeStakeAmino;
|
|
1780
|
+
fromAminoMsg(object: MsgTopUpBridgeStakeAminoMsg): MsgTopUpBridgeStake;
|
|
1781
|
+
fromProtoMsg(message: MsgTopUpBridgeStakeProtoMsg): MsgTopUpBridgeStake;
|
|
1782
|
+
toProto(message: MsgTopUpBridgeStake): Uint8Array;
|
|
1783
|
+
toProtoMsg(message: MsgTopUpBridgeStake): MsgTopUpBridgeStakeProtoMsg;
|
|
1784
|
+
};
|
|
1785
|
+
/**
|
|
1786
|
+
* @name MsgTopUpBridgeStakeResponse
|
|
1787
|
+
* @package sparkdream.federation.v1
|
|
1788
|
+
* @see proto type: sparkdream.federation.v1.MsgTopUpBridgeStakeResponse
|
|
1789
|
+
*/
|
|
1790
|
+
export declare const MsgTopUpBridgeStakeResponse: {
|
|
1791
|
+
typeUrl: string;
|
|
1792
|
+
encode(_: MsgTopUpBridgeStakeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1793
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgTopUpBridgeStakeResponse;
|
|
1794
|
+
fromPartial(_: DeepPartial<MsgTopUpBridgeStakeResponse>): MsgTopUpBridgeStakeResponse;
|
|
1795
|
+
fromAmino(_: MsgTopUpBridgeStakeResponseAmino): MsgTopUpBridgeStakeResponse;
|
|
1796
|
+
toAmino(_: MsgTopUpBridgeStakeResponse): MsgTopUpBridgeStakeResponseAmino;
|
|
1797
|
+
fromAminoMsg(object: MsgTopUpBridgeStakeResponseAminoMsg): MsgTopUpBridgeStakeResponse;
|
|
1798
|
+
fromProtoMsg(message: MsgTopUpBridgeStakeResponseProtoMsg): MsgTopUpBridgeStakeResponse;
|
|
1799
|
+
toProto(message: MsgTopUpBridgeStakeResponse): Uint8Array;
|
|
1800
|
+
toProtoMsg(message: MsgTopUpBridgeStakeResponse): MsgTopUpBridgeStakeResponseProtoMsg;
|
|
1801
|
+
};
|
|
1802
|
+
/**
|
|
1803
|
+
* @name MsgSubmitFederatedContent
|
|
1804
|
+
* @package sparkdream.federation.v1
|
|
1805
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContent
|
|
1806
|
+
*/
|
|
1807
|
+
export declare const MsgSubmitFederatedContent: {
|
|
1808
|
+
typeUrl: string;
|
|
1809
|
+
encode(message: MsgSubmitFederatedContent, writer?: BinaryWriter): BinaryWriter;
|
|
1810
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitFederatedContent;
|
|
1811
|
+
fromPartial(object: DeepPartial<MsgSubmitFederatedContent>): MsgSubmitFederatedContent;
|
|
1812
|
+
fromAmino(object: MsgSubmitFederatedContentAmino): MsgSubmitFederatedContent;
|
|
1813
|
+
toAmino(message: MsgSubmitFederatedContent): MsgSubmitFederatedContentAmino;
|
|
1814
|
+
fromAminoMsg(object: MsgSubmitFederatedContentAminoMsg): MsgSubmitFederatedContent;
|
|
1815
|
+
fromProtoMsg(message: MsgSubmitFederatedContentProtoMsg): MsgSubmitFederatedContent;
|
|
1816
|
+
toProto(message: MsgSubmitFederatedContent): Uint8Array;
|
|
1817
|
+
toProtoMsg(message: MsgSubmitFederatedContent): MsgSubmitFederatedContentProtoMsg;
|
|
1818
|
+
};
|
|
1819
|
+
/**
|
|
1820
|
+
* @name MsgSubmitFederatedContentResponse
|
|
1821
|
+
* @package sparkdream.federation.v1
|
|
1822
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitFederatedContentResponse
|
|
1823
|
+
*/
|
|
1824
|
+
export declare const MsgSubmitFederatedContentResponse: {
|
|
1825
|
+
typeUrl: string;
|
|
1826
|
+
encode(message: MsgSubmitFederatedContentResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1827
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitFederatedContentResponse;
|
|
1828
|
+
fromPartial(object: DeepPartial<MsgSubmitFederatedContentResponse>): MsgSubmitFederatedContentResponse;
|
|
1829
|
+
fromAmino(object: MsgSubmitFederatedContentResponseAmino): MsgSubmitFederatedContentResponse;
|
|
1830
|
+
toAmino(message: MsgSubmitFederatedContentResponse): MsgSubmitFederatedContentResponseAmino;
|
|
1831
|
+
fromAminoMsg(object: MsgSubmitFederatedContentResponseAminoMsg): MsgSubmitFederatedContentResponse;
|
|
1832
|
+
fromProtoMsg(message: MsgSubmitFederatedContentResponseProtoMsg): MsgSubmitFederatedContentResponse;
|
|
1833
|
+
toProto(message: MsgSubmitFederatedContentResponse): Uint8Array;
|
|
1834
|
+
toProtoMsg(message: MsgSubmitFederatedContentResponse): MsgSubmitFederatedContentResponseProtoMsg;
|
|
1835
|
+
};
|
|
1836
|
+
/**
|
|
1837
|
+
* @name MsgFederateContent
|
|
1838
|
+
* @package sparkdream.federation.v1
|
|
1839
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContent
|
|
1840
|
+
*/
|
|
1841
|
+
export declare const MsgFederateContent: {
|
|
1842
|
+
typeUrl: string;
|
|
1843
|
+
encode(message: MsgFederateContent, writer?: BinaryWriter): BinaryWriter;
|
|
1844
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgFederateContent;
|
|
1845
|
+
fromPartial(object: DeepPartial<MsgFederateContent>): MsgFederateContent;
|
|
1846
|
+
fromAmino(object: MsgFederateContentAmino): MsgFederateContent;
|
|
1847
|
+
toAmino(message: MsgFederateContent): MsgFederateContentAmino;
|
|
1848
|
+
fromAminoMsg(object: MsgFederateContentAminoMsg): MsgFederateContent;
|
|
1849
|
+
fromProtoMsg(message: MsgFederateContentProtoMsg): MsgFederateContent;
|
|
1850
|
+
toProto(message: MsgFederateContent): Uint8Array;
|
|
1851
|
+
toProtoMsg(message: MsgFederateContent): MsgFederateContentProtoMsg;
|
|
1852
|
+
};
|
|
1853
|
+
/**
|
|
1854
|
+
* @name MsgFederateContentResponse
|
|
1855
|
+
* @package sparkdream.federation.v1
|
|
1856
|
+
* @see proto type: sparkdream.federation.v1.MsgFederateContentResponse
|
|
1857
|
+
*/
|
|
1858
|
+
export declare const MsgFederateContentResponse: {
|
|
1859
|
+
typeUrl: string;
|
|
1860
|
+
encode(_: MsgFederateContentResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1861
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgFederateContentResponse;
|
|
1862
|
+
fromPartial(_: DeepPartial<MsgFederateContentResponse>): MsgFederateContentResponse;
|
|
1863
|
+
fromAmino(_: MsgFederateContentResponseAmino): MsgFederateContentResponse;
|
|
1864
|
+
toAmino(_: MsgFederateContentResponse): MsgFederateContentResponseAmino;
|
|
1865
|
+
fromAminoMsg(object: MsgFederateContentResponseAminoMsg): MsgFederateContentResponse;
|
|
1866
|
+
fromProtoMsg(message: MsgFederateContentResponseProtoMsg): MsgFederateContentResponse;
|
|
1867
|
+
toProto(message: MsgFederateContentResponse): Uint8Array;
|
|
1868
|
+
toProtoMsg(message: MsgFederateContentResponse): MsgFederateContentResponseProtoMsg;
|
|
1869
|
+
};
|
|
1870
|
+
/**
|
|
1871
|
+
* @name MsgAttestOutbound
|
|
1872
|
+
* @package sparkdream.federation.v1
|
|
1873
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutbound
|
|
1874
|
+
*/
|
|
1875
|
+
export declare const MsgAttestOutbound: {
|
|
1876
|
+
typeUrl: string;
|
|
1877
|
+
encode(message: MsgAttestOutbound, writer?: BinaryWriter): BinaryWriter;
|
|
1878
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAttestOutbound;
|
|
1879
|
+
fromPartial(object: DeepPartial<MsgAttestOutbound>): MsgAttestOutbound;
|
|
1880
|
+
fromAmino(object: MsgAttestOutboundAmino): MsgAttestOutbound;
|
|
1881
|
+
toAmino(message: MsgAttestOutbound): MsgAttestOutboundAmino;
|
|
1882
|
+
fromAminoMsg(object: MsgAttestOutboundAminoMsg): MsgAttestOutbound;
|
|
1883
|
+
fromProtoMsg(message: MsgAttestOutboundProtoMsg): MsgAttestOutbound;
|
|
1884
|
+
toProto(message: MsgAttestOutbound): Uint8Array;
|
|
1885
|
+
toProtoMsg(message: MsgAttestOutbound): MsgAttestOutboundProtoMsg;
|
|
1886
|
+
};
|
|
1887
|
+
/**
|
|
1888
|
+
* @name MsgAttestOutboundResponse
|
|
1889
|
+
* @package sparkdream.federation.v1
|
|
1890
|
+
* @see proto type: sparkdream.federation.v1.MsgAttestOutboundResponse
|
|
1891
|
+
*/
|
|
1892
|
+
export declare const MsgAttestOutboundResponse: {
|
|
1893
|
+
typeUrl: string;
|
|
1894
|
+
encode(_: MsgAttestOutboundResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1895
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAttestOutboundResponse;
|
|
1896
|
+
fromPartial(_: DeepPartial<MsgAttestOutboundResponse>): MsgAttestOutboundResponse;
|
|
1897
|
+
fromAmino(_: MsgAttestOutboundResponseAmino): MsgAttestOutboundResponse;
|
|
1898
|
+
toAmino(_: MsgAttestOutboundResponse): MsgAttestOutboundResponseAmino;
|
|
1899
|
+
fromAminoMsg(object: MsgAttestOutboundResponseAminoMsg): MsgAttestOutboundResponse;
|
|
1900
|
+
fromProtoMsg(message: MsgAttestOutboundResponseProtoMsg): MsgAttestOutboundResponse;
|
|
1901
|
+
toProto(message: MsgAttestOutboundResponse): Uint8Array;
|
|
1902
|
+
toProtoMsg(message: MsgAttestOutboundResponse): MsgAttestOutboundResponseProtoMsg;
|
|
1903
|
+
};
|
|
1904
|
+
/**
|
|
1905
|
+
* @name MsgModerateContent
|
|
1906
|
+
* @package sparkdream.federation.v1
|
|
1907
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContent
|
|
1908
|
+
*/
|
|
1909
|
+
export declare const MsgModerateContent: {
|
|
1910
|
+
typeUrl: string;
|
|
1911
|
+
encode(message: MsgModerateContent, writer?: BinaryWriter): BinaryWriter;
|
|
1912
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgModerateContent;
|
|
1913
|
+
fromPartial(object: DeepPartial<MsgModerateContent>): MsgModerateContent;
|
|
1914
|
+
fromAmino(object: MsgModerateContentAmino): MsgModerateContent;
|
|
1915
|
+
toAmino(message: MsgModerateContent): MsgModerateContentAmino;
|
|
1916
|
+
fromAminoMsg(object: MsgModerateContentAminoMsg): MsgModerateContent;
|
|
1917
|
+
fromProtoMsg(message: MsgModerateContentProtoMsg): MsgModerateContent;
|
|
1918
|
+
toProto(message: MsgModerateContent): Uint8Array;
|
|
1919
|
+
toProtoMsg(message: MsgModerateContent): MsgModerateContentProtoMsg;
|
|
1920
|
+
};
|
|
1921
|
+
/**
|
|
1922
|
+
* @name MsgModerateContentResponse
|
|
1923
|
+
* @package sparkdream.federation.v1
|
|
1924
|
+
* @see proto type: sparkdream.federation.v1.MsgModerateContentResponse
|
|
1925
|
+
*/
|
|
1926
|
+
export declare const MsgModerateContentResponse: {
|
|
1927
|
+
typeUrl: string;
|
|
1928
|
+
encode(_: MsgModerateContentResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1929
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgModerateContentResponse;
|
|
1930
|
+
fromPartial(_: DeepPartial<MsgModerateContentResponse>): MsgModerateContentResponse;
|
|
1931
|
+
fromAmino(_: MsgModerateContentResponseAmino): MsgModerateContentResponse;
|
|
1932
|
+
toAmino(_: MsgModerateContentResponse): MsgModerateContentResponseAmino;
|
|
1933
|
+
fromAminoMsg(object: MsgModerateContentResponseAminoMsg): MsgModerateContentResponse;
|
|
1934
|
+
fromProtoMsg(message: MsgModerateContentResponseProtoMsg): MsgModerateContentResponse;
|
|
1935
|
+
toProto(message: MsgModerateContentResponse): Uint8Array;
|
|
1936
|
+
toProtoMsg(message: MsgModerateContentResponse): MsgModerateContentResponseProtoMsg;
|
|
1937
|
+
};
|
|
1938
|
+
/**
|
|
1939
|
+
* @name MsgLinkIdentity
|
|
1940
|
+
* @package sparkdream.federation.v1
|
|
1941
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentity
|
|
1942
|
+
*/
|
|
1943
|
+
export declare const MsgLinkIdentity: {
|
|
1944
|
+
typeUrl: string;
|
|
1945
|
+
encode(message: MsgLinkIdentity, writer?: BinaryWriter): BinaryWriter;
|
|
1946
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgLinkIdentity;
|
|
1947
|
+
fromPartial(object: DeepPartial<MsgLinkIdentity>): MsgLinkIdentity;
|
|
1948
|
+
fromAmino(object: MsgLinkIdentityAmino): MsgLinkIdentity;
|
|
1949
|
+
toAmino(message: MsgLinkIdentity): MsgLinkIdentityAmino;
|
|
1950
|
+
fromAminoMsg(object: MsgLinkIdentityAminoMsg): MsgLinkIdentity;
|
|
1951
|
+
fromProtoMsg(message: MsgLinkIdentityProtoMsg): MsgLinkIdentity;
|
|
1952
|
+
toProto(message: MsgLinkIdentity): Uint8Array;
|
|
1953
|
+
toProtoMsg(message: MsgLinkIdentity): MsgLinkIdentityProtoMsg;
|
|
1954
|
+
};
|
|
1955
|
+
/**
|
|
1956
|
+
* @name MsgLinkIdentityResponse
|
|
1957
|
+
* @package sparkdream.federation.v1
|
|
1958
|
+
* @see proto type: sparkdream.federation.v1.MsgLinkIdentityResponse
|
|
1959
|
+
*/
|
|
1960
|
+
export declare const MsgLinkIdentityResponse: {
|
|
1961
|
+
typeUrl: string;
|
|
1962
|
+
encode(_: MsgLinkIdentityResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1963
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgLinkIdentityResponse;
|
|
1964
|
+
fromPartial(_: DeepPartial<MsgLinkIdentityResponse>): MsgLinkIdentityResponse;
|
|
1965
|
+
fromAmino(_: MsgLinkIdentityResponseAmino): MsgLinkIdentityResponse;
|
|
1966
|
+
toAmino(_: MsgLinkIdentityResponse): MsgLinkIdentityResponseAmino;
|
|
1967
|
+
fromAminoMsg(object: MsgLinkIdentityResponseAminoMsg): MsgLinkIdentityResponse;
|
|
1968
|
+
fromProtoMsg(message: MsgLinkIdentityResponseProtoMsg): MsgLinkIdentityResponse;
|
|
1969
|
+
toProto(message: MsgLinkIdentityResponse): Uint8Array;
|
|
1970
|
+
toProtoMsg(message: MsgLinkIdentityResponse): MsgLinkIdentityResponseProtoMsg;
|
|
1971
|
+
};
|
|
1972
|
+
/**
|
|
1973
|
+
* @name MsgUnlinkIdentity
|
|
1974
|
+
* @package sparkdream.federation.v1
|
|
1975
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentity
|
|
1976
|
+
*/
|
|
1977
|
+
export declare const MsgUnlinkIdentity: {
|
|
1978
|
+
typeUrl: string;
|
|
1979
|
+
encode(message: MsgUnlinkIdentity, writer?: BinaryWriter): BinaryWriter;
|
|
1980
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnlinkIdentity;
|
|
1981
|
+
fromPartial(object: DeepPartial<MsgUnlinkIdentity>): MsgUnlinkIdentity;
|
|
1982
|
+
fromAmino(object: MsgUnlinkIdentityAmino): MsgUnlinkIdentity;
|
|
1983
|
+
toAmino(message: MsgUnlinkIdentity): MsgUnlinkIdentityAmino;
|
|
1984
|
+
fromAminoMsg(object: MsgUnlinkIdentityAminoMsg): MsgUnlinkIdentity;
|
|
1985
|
+
fromProtoMsg(message: MsgUnlinkIdentityProtoMsg): MsgUnlinkIdentity;
|
|
1986
|
+
toProto(message: MsgUnlinkIdentity): Uint8Array;
|
|
1987
|
+
toProtoMsg(message: MsgUnlinkIdentity): MsgUnlinkIdentityProtoMsg;
|
|
1988
|
+
};
|
|
1989
|
+
/**
|
|
1990
|
+
* @name MsgUnlinkIdentityResponse
|
|
1991
|
+
* @package sparkdream.federation.v1
|
|
1992
|
+
* @see proto type: sparkdream.federation.v1.MsgUnlinkIdentityResponse
|
|
1993
|
+
*/
|
|
1994
|
+
export declare const MsgUnlinkIdentityResponse: {
|
|
1995
|
+
typeUrl: string;
|
|
1996
|
+
encode(_: MsgUnlinkIdentityResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1997
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnlinkIdentityResponse;
|
|
1998
|
+
fromPartial(_: DeepPartial<MsgUnlinkIdentityResponse>): MsgUnlinkIdentityResponse;
|
|
1999
|
+
fromAmino(_: MsgUnlinkIdentityResponseAmino): MsgUnlinkIdentityResponse;
|
|
2000
|
+
toAmino(_: MsgUnlinkIdentityResponse): MsgUnlinkIdentityResponseAmino;
|
|
2001
|
+
fromAminoMsg(object: MsgUnlinkIdentityResponseAminoMsg): MsgUnlinkIdentityResponse;
|
|
2002
|
+
fromProtoMsg(message: MsgUnlinkIdentityResponseProtoMsg): MsgUnlinkIdentityResponse;
|
|
2003
|
+
toProto(message: MsgUnlinkIdentityResponse): Uint8Array;
|
|
2004
|
+
toProtoMsg(message: MsgUnlinkIdentityResponse): MsgUnlinkIdentityResponseProtoMsg;
|
|
2005
|
+
};
|
|
2006
|
+
/**
|
|
2007
|
+
* @name MsgConfirmIdentityLink
|
|
2008
|
+
* @package sparkdream.federation.v1
|
|
2009
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLink
|
|
2010
|
+
*/
|
|
2011
|
+
export declare const MsgConfirmIdentityLink: {
|
|
2012
|
+
typeUrl: string;
|
|
2013
|
+
encode(message: MsgConfirmIdentityLink, writer?: BinaryWriter): BinaryWriter;
|
|
2014
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirmIdentityLink;
|
|
2015
|
+
fromPartial(object: DeepPartial<MsgConfirmIdentityLink>): MsgConfirmIdentityLink;
|
|
2016
|
+
fromAmino(object: MsgConfirmIdentityLinkAmino): MsgConfirmIdentityLink;
|
|
2017
|
+
toAmino(message: MsgConfirmIdentityLink): MsgConfirmIdentityLinkAmino;
|
|
2018
|
+
fromAminoMsg(object: MsgConfirmIdentityLinkAminoMsg): MsgConfirmIdentityLink;
|
|
2019
|
+
fromProtoMsg(message: MsgConfirmIdentityLinkProtoMsg): MsgConfirmIdentityLink;
|
|
2020
|
+
toProto(message: MsgConfirmIdentityLink): Uint8Array;
|
|
2021
|
+
toProtoMsg(message: MsgConfirmIdentityLink): MsgConfirmIdentityLinkProtoMsg;
|
|
2022
|
+
};
|
|
2023
|
+
/**
|
|
2024
|
+
* @name MsgConfirmIdentityLinkResponse
|
|
2025
|
+
* @package sparkdream.federation.v1
|
|
2026
|
+
* @see proto type: sparkdream.federation.v1.MsgConfirmIdentityLinkResponse
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const MsgConfirmIdentityLinkResponse: {
|
|
2029
|
+
typeUrl: string;
|
|
2030
|
+
encode(_: MsgConfirmIdentityLinkResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2031
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirmIdentityLinkResponse;
|
|
2032
|
+
fromPartial(_: DeepPartial<MsgConfirmIdentityLinkResponse>): MsgConfirmIdentityLinkResponse;
|
|
2033
|
+
fromAmino(_: MsgConfirmIdentityLinkResponseAmino): MsgConfirmIdentityLinkResponse;
|
|
2034
|
+
toAmino(_: MsgConfirmIdentityLinkResponse): MsgConfirmIdentityLinkResponseAmino;
|
|
2035
|
+
fromAminoMsg(object: MsgConfirmIdentityLinkResponseAminoMsg): MsgConfirmIdentityLinkResponse;
|
|
2036
|
+
fromProtoMsg(message: MsgConfirmIdentityLinkResponseProtoMsg): MsgConfirmIdentityLinkResponse;
|
|
2037
|
+
toProto(message: MsgConfirmIdentityLinkResponse): Uint8Array;
|
|
2038
|
+
toProtoMsg(message: MsgConfirmIdentityLinkResponse): MsgConfirmIdentityLinkResponseProtoMsg;
|
|
2039
|
+
};
|
|
2040
|
+
/**
|
|
2041
|
+
* @name MsgRequestReputationAttestation
|
|
2042
|
+
* @package sparkdream.federation.v1
|
|
2043
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestation
|
|
2044
|
+
*/
|
|
2045
|
+
export declare const MsgRequestReputationAttestation: {
|
|
2046
|
+
typeUrl: string;
|
|
2047
|
+
encode(message: MsgRequestReputationAttestation, writer?: BinaryWriter): BinaryWriter;
|
|
2048
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRequestReputationAttestation;
|
|
2049
|
+
fromPartial(object: DeepPartial<MsgRequestReputationAttestation>): MsgRequestReputationAttestation;
|
|
2050
|
+
fromAmino(object: MsgRequestReputationAttestationAmino): MsgRequestReputationAttestation;
|
|
2051
|
+
toAmino(message: MsgRequestReputationAttestation): MsgRequestReputationAttestationAmino;
|
|
2052
|
+
fromAminoMsg(object: MsgRequestReputationAttestationAminoMsg): MsgRequestReputationAttestation;
|
|
2053
|
+
fromProtoMsg(message: MsgRequestReputationAttestationProtoMsg): MsgRequestReputationAttestation;
|
|
2054
|
+
toProto(message: MsgRequestReputationAttestation): Uint8Array;
|
|
2055
|
+
toProtoMsg(message: MsgRequestReputationAttestation): MsgRequestReputationAttestationProtoMsg;
|
|
2056
|
+
};
|
|
2057
|
+
/**
|
|
2058
|
+
* @name MsgRequestReputationAttestationResponse
|
|
2059
|
+
* @package sparkdream.federation.v1
|
|
2060
|
+
* @see proto type: sparkdream.federation.v1.MsgRequestReputationAttestationResponse
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const MsgRequestReputationAttestationResponse: {
|
|
2063
|
+
typeUrl: string;
|
|
2064
|
+
encode(_: MsgRequestReputationAttestationResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2065
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRequestReputationAttestationResponse;
|
|
2066
|
+
fromPartial(_: DeepPartial<MsgRequestReputationAttestationResponse>): MsgRequestReputationAttestationResponse;
|
|
2067
|
+
fromAmino(_: MsgRequestReputationAttestationResponseAmino): MsgRequestReputationAttestationResponse;
|
|
2068
|
+
toAmino(_: MsgRequestReputationAttestationResponse): MsgRequestReputationAttestationResponseAmino;
|
|
2069
|
+
fromAminoMsg(object: MsgRequestReputationAttestationResponseAminoMsg): MsgRequestReputationAttestationResponse;
|
|
2070
|
+
fromProtoMsg(message: MsgRequestReputationAttestationResponseProtoMsg): MsgRequestReputationAttestationResponse;
|
|
2071
|
+
toProto(message: MsgRequestReputationAttestationResponse): Uint8Array;
|
|
2072
|
+
toProtoMsg(message: MsgRequestReputationAttestationResponse): MsgRequestReputationAttestationResponseProtoMsg;
|
|
2073
|
+
};
|
|
2074
|
+
/**
|
|
2075
|
+
* @name MsgBondVerifier
|
|
2076
|
+
* @package sparkdream.federation.v1
|
|
2077
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifier
|
|
2078
|
+
*/
|
|
2079
|
+
export declare const MsgBondVerifier: {
|
|
2080
|
+
typeUrl: string;
|
|
2081
|
+
encode(message: MsgBondVerifier, writer?: BinaryWriter): BinaryWriter;
|
|
2082
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgBondVerifier;
|
|
2083
|
+
fromPartial(object: DeepPartial<MsgBondVerifier>): MsgBondVerifier;
|
|
2084
|
+
fromAmino(object: MsgBondVerifierAmino): MsgBondVerifier;
|
|
2085
|
+
toAmino(message: MsgBondVerifier): MsgBondVerifierAmino;
|
|
2086
|
+
fromAminoMsg(object: MsgBondVerifierAminoMsg): MsgBondVerifier;
|
|
2087
|
+
fromProtoMsg(message: MsgBondVerifierProtoMsg): MsgBondVerifier;
|
|
2088
|
+
toProto(message: MsgBondVerifier): Uint8Array;
|
|
2089
|
+
toProtoMsg(message: MsgBondVerifier): MsgBondVerifierProtoMsg;
|
|
2090
|
+
};
|
|
2091
|
+
/**
|
|
2092
|
+
* @name MsgBondVerifierResponse
|
|
2093
|
+
* @package sparkdream.federation.v1
|
|
2094
|
+
* @see proto type: sparkdream.federation.v1.MsgBondVerifierResponse
|
|
2095
|
+
*/
|
|
2096
|
+
export declare const MsgBondVerifierResponse: {
|
|
2097
|
+
typeUrl: string;
|
|
2098
|
+
encode(_: MsgBondVerifierResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2099
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgBondVerifierResponse;
|
|
2100
|
+
fromPartial(_: DeepPartial<MsgBondVerifierResponse>): MsgBondVerifierResponse;
|
|
2101
|
+
fromAmino(_: MsgBondVerifierResponseAmino): MsgBondVerifierResponse;
|
|
2102
|
+
toAmino(_: MsgBondVerifierResponse): MsgBondVerifierResponseAmino;
|
|
2103
|
+
fromAminoMsg(object: MsgBondVerifierResponseAminoMsg): MsgBondVerifierResponse;
|
|
2104
|
+
fromProtoMsg(message: MsgBondVerifierResponseProtoMsg): MsgBondVerifierResponse;
|
|
2105
|
+
toProto(message: MsgBondVerifierResponse): Uint8Array;
|
|
2106
|
+
toProtoMsg(message: MsgBondVerifierResponse): MsgBondVerifierResponseProtoMsg;
|
|
2107
|
+
};
|
|
2108
|
+
/**
|
|
2109
|
+
* @name MsgUnbondVerifier
|
|
2110
|
+
* @package sparkdream.federation.v1
|
|
2111
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifier
|
|
2112
|
+
*/
|
|
2113
|
+
export declare const MsgUnbondVerifier: {
|
|
2114
|
+
typeUrl: string;
|
|
2115
|
+
encode(message: MsgUnbondVerifier, writer?: BinaryWriter): BinaryWriter;
|
|
2116
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondVerifier;
|
|
2117
|
+
fromPartial(object: DeepPartial<MsgUnbondVerifier>): MsgUnbondVerifier;
|
|
2118
|
+
fromAmino(object: MsgUnbondVerifierAmino): MsgUnbondVerifier;
|
|
2119
|
+
toAmino(message: MsgUnbondVerifier): MsgUnbondVerifierAmino;
|
|
2120
|
+
fromAminoMsg(object: MsgUnbondVerifierAminoMsg): MsgUnbondVerifier;
|
|
2121
|
+
fromProtoMsg(message: MsgUnbondVerifierProtoMsg): MsgUnbondVerifier;
|
|
2122
|
+
toProto(message: MsgUnbondVerifier): Uint8Array;
|
|
2123
|
+
toProtoMsg(message: MsgUnbondVerifier): MsgUnbondVerifierProtoMsg;
|
|
2124
|
+
};
|
|
2125
|
+
/**
|
|
2126
|
+
* @name MsgUnbondVerifierResponse
|
|
2127
|
+
* @package sparkdream.federation.v1
|
|
2128
|
+
* @see proto type: sparkdream.federation.v1.MsgUnbondVerifierResponse
|
|
2129
|
+
*/
|
|
2130
|
+
export declare const MsgUnbondVerifierResponse: {
|
|
2131
|
+
typeUrl: string;
|
|
2132
|
+
encode(_: MsgUnbondVerifierResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2133
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondVerifierResponse;
|
|
2134
|
+
fromPartial(_: DeepPartial<MsgUnbondVerifierResponse>): MsgUnbondVerifierResponse;
|
|
2135
|
+
fromAmino(_: MsgUnbondVerifierResponseAmino): MsgUnbondVerifierResponse;
|
|
2136
|
+
toAmino(_: MsgUnbondVerifierResponse): MsgUnbondVerifierResponseAmino;
|
|
2137
|
+
fromAminoMsg(object: MsgUnbondVerifierResponseAminoMsg): MsgUnbondVerifierResponse;
|
|
2138
|
+
fromProtoMsg(message: MsgUnbondVerifierResponseProtoMsg): MsgUnbondVerifierResponse;
|
|
2139
|
+
toProto(message: MsgUnbondVerifierResponse): Uint8Array;
|
|
2140
|
+
toProtoMsg(message: MsgUnbondVerifierResponse): MsgUnbondVerifierResponseProtoMsg;
|
|
2141
|
+
};
|
|
2142
|
+
/**
|
|
2143
|
+
* @name MsgVerifyContent
|
|
2144
|
+
* @package sparkdream.federation.v1
|
|
2145
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContent
|
|
2146
|
+
*/
|
|
2147
|
+
export declare const MsgVerifyContent: {
|
|
2148
|
+
typeUrl: string;
|
|
2149
|
+
encode(message: MsgVerifyContent, writer?: BinaryWriter): BinaryWriter;
|
|
2150
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgVerifyContent;
|
|
2151
|
+
fromPartial(object: DeepPartial<MsgVerifyContent>): MsgVerifyContent;
|
|
2152
|
+
fromAmino(object: MsgVerifyContentAmino): MsgVerifyContent;
|
|
2153
|
+
toAmino(message: MsgVerifyContent): MsgVerifyContentAmino;
|
|
2154
|
+
fromAminoMsg(object: MsgVerifyContentAminoMsg): MsgVerifyContent;
|
|
2155
|
+
fromProtoMsg(message: MsgVerifyContentProtoMsg): MsgVerifyContent;
|
|
2156
|
+
toProto(message: MsgVerifyContent): Uint8Array;
|
|
2157
|
+
toProtoMsg(message: MsgVerifyContent): MsgVerifyContentProtoMsg;
|
|
2158
|
+
};
|
|
2159
|
+
/**
|
|
2160
|
+
* @name MsgVerifyContentResponse
|
|
2161
|
+
* @package sparkdream.federation.v1
|
|
2162
|
+
* @see proto type: sparkdream.federation.v1.MsgVerifyContentResponse
|
|
2163
|
+
*/
|
|
2164
|
+
export declare const MsgVerifyContentResponse: {
|
|
2165
|
+
typeUrl: string;
|
|
2166
|
+
encode(_: MsgVerifyContentResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2167
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgVerifyContentResponse;
|
|
2168
|
+
fromPartial(_: DeepPartial<MsgVerifyContentResponse>): MsgVerifyContentResponse;
|
|
2169
|
+
fromAmino(_: MsgVerifyContentResponseAmino): MsgVerifyContentResponse;
|
|
2170
|
+
toAmino(_: MsgVerifyContentResponse): MsgVerifyContentResponseAmino;
|
|
2171
|
+
fromAminoMsg(object: MsgVerifyContentResponseAminoMsg): MsgVerifyContentResponse;
|
|
2172
|
+
fromProtoMsg(message: MsgVerifyContentResponseProtoMsg): MsgVerifyContentResponse;
|
|
2173
|
+
toProto(message: MsgVerifyContentResponse): Uint8Array;
|
|
2174
|
+
toProtoMsg(message: MsgVerifyContentResponse): MsgVerifyContentResponseProtoMsg;
|
|
2175
|
+
};
|
|
2176
|
+
/**
|
|
2177
|
+
* @name MsgChallengeVerification
|
|
2178
|
+
* @package sparkdream.federation.v1
|
|
2179
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerification
|
|
2180
|
+
*/
|
|
2181
|
+
export declare const MsgChallengeVerification: {
|
|
2182
|
+
typeUrl: string;
|
|
2183
|
+
encode(message: MsgChallengeVerification, writer?: BinaryWriter): BinaryWriter;
|
|
2184
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeVerification;
|
|
2185
|
+
fromPartial(object: DeepPartial<MsgChallengeVerification>): MsgChallengeVerification;
|
|
2186
|
+
fromAmino(object: MsgChallengeVerificationAmino): MsgChallengeVerification;
|
|
2187
|
+
toAmino(message: MsgChallengeVerification): MsgChallengeVerificationAmino;
|
|
2188
|
+
fromAminoMsg(object: MsgChallengeVerificationAminoMsg): MsgChallengeVerification;
|
|
2189
|
+
fromProtoMsg(message: MsgChallengeVerificationProtoMsg): MsgChallengeVerification;
|
|
2190
|
+
toProto(message: MsgChallengeVerification): Uint8Array;
|
|
2191
|
+
toProtoMsg(message: MsgChallengeVerification): MsgChallengeVerificationProtoMsg;
|
|
2192
|
+
};
|
|
2193
|
+
/**
|
|
2194
|
+
* @name MsgChallengeVerificationResponse
|
|
2195
|
+
* @package sparkdream.federation.v1
|
|
2196
|
+
* @see proto type: sparkdream.federation.v1.MsgChallengeVerificationResponse
|
|
2197
|
+
*/
|
|
2198
|
+
export declare const MsgChallengeVerificationResponse: {
|
|
2199
|
+
typeUrl: string;
|
|
2200
|
+
encode(_: MsgChallengeVerificationResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2201
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeVerificationResponse;
|
|
2202
|
+
fromPartial(_: DeepPartial<MsgChallengeVerificationResponse>): MsgChallengeVerificationResponse;
|
|
2203
|
+
fromAmino(_: MsgChallengeVerificationResponseAmino): MsgChallengeVerificationResponse;
|
|
2204
|
+
toAmino(_: MsgChallengeVerificationResponse): MsgChallengeVerificationResponseAmino;
|
|
2205
|
+
fromAminoMsg(object: MsgChallengeVerificationResponseAminoMsg): MsgChallengeVerificationResponse;
|
|
2206
|
+
fromProtoMsg(message: MsgChallengeVerificationResponseProtoMsg): MsgChallengeVerificationResponse;
|
|
2207
|
+
toProto(message: MsgChallengeVerificationResponse): Uint8Array;
|
|
2208
|
+
toProtoMsg(message: MsgChallengeVerificationResponse): MsgChallengeVerificationResponseProtoMsg;
|
|
2209
|
+
};
|
|
2210
|
+
/**
|
|
2211
|
+
* @name MsgSubmitArbiterHash
|
|
2212
|
+
* @package sparkdream.federation.v1
|
|
2213
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHash
|
|
2214
|
+
*/
|
|
2215
|
+
export declare const MsgSubmitArbiterHash: {
|
|
2216
|
+
typeUrl: string;
|
|
2217
|
+
encode(message: MsgSubmitArbiterHash, writer?: BinaryWriter): BinaryWriter;
|
|
2218
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitArbiterHash;
|
|
2219
|
+
fromPartial(object: DeepPartial<MsgSubmitArbiterHash>): MsgSubmitArbiterHash;
|
|
2220
|
+
fromAmino(object: MsgSubmitArbiterHashAmino): MsgSubmitArbiterHash;
|
|
2221
|
+
toAmino(message: MsgSubmitArbiterHash): MsgSubmitArbiterHashAmino;
|
|
2222
|
+
fromAminoMsg(object: MsgSubmitArbiterHashAminoMsg): MsgSubmitArbiterHash;
|
|
2223
|
+
fromProtoMsg(message: MsgSubmitArbiterHashProtoMsg): MsgSubmitArbiterHash;
|
|
2224
|
+
toProto(message: MsgSubmitArbiterHash): Uint8Array;
|
|
2225
|
+
toProtoMsg(message: MsgSubmitArbiterHash): MsgSubmitArbiterHashProtoMsg;
|
|
2226
|
+
};
|
|
2227
|
+
/**
|
|
2228
|
+
* @name MsgSubmitArbiterHashResponse
|
|
2229
|
+
* @package sparkdream.federation.v1
|
|
2230
|
+
* @see proto type: sparkdream.federation.v1.MsgSubmitArbiterHashResponse
|
|
2231
|
+
*/
|
|
2232
|
+
export declare const MsgSubmitArbiterHashResponse: {
|
|
2233
|
+
typeUrl: string;
|
|
2234
|
+
encode(_: MsgSubmitArbiterHashResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2235
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitArbiterHashResponse;
|
|
2236
|
+
fromPartial(_: DeepPartial<MsgSubmitArbiterHashResponse>): MsgSubmitArbiterHashResponse;
|
|
2237
|
+
fromAmino(_: MsgSubmitArbiterHashResponseAmino): MsgSubmitArbiterHashResponse;
|
|
2238
|
+
toAmino(_: MsgSubmitArbiterHashResponse): MsgSubmitArbiterHashResponseAmino;
|
|
2239
|
+
fromAminoMsg(object: MsgSubmitArbiterHashResponseAminoMsg): MsgSubmitArbiterHashResponse;
|
|
2240
|
+
fromProtoMsg(message: MsgSubmitArbiterHashResponseProtoMsg): MsgSubmitArbiterHashResponse;
|
|
2241
|
+
toProto(message: MsgSubmitArbiterHashResponse): Uint8Array;
|
|
2242
|
+
toProtoMsg(message: MsgSubmitArbiterHashResponse): MsgSubmitArbiterHashResponseProtoMsg;
|
|
2243
|
+
};
|
|
2244
|
+
/**
|
|
2245
|
+
* @name MsgEscalateChallenge
|
|
2246
|
+
* @package sparkdream.federation.v1
|
|
2247
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallenge
|
|
2248
|
+
*/
|
|
2249
|
+
export declare const MsgEscalateChallenge: {
|
|
2250
|
+
typeUrl: string;
|
|
2251
|
+
encode(message: MsgEscalateChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
2252
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgEscalateChallenge;
|
|
2253
|
+
fromPartial(object: DeepPartial<MsgEscalateChallenge>): MsgEscalateChallenge;
|
|
2254
|
+
fromAmino(object: MsgEscalateChallengeAmino): MsgEscalateChallenge;
|
|
2255
|
+
toAmino(message: MsgEscalateChallenge): MsgEscalateChallengeAmino;
|
|
2256
|
+
fromAminoMsg(object: MsgEscalateChallengeAminoMsg): MsgEscalateChallenge;
|
|
2257
|
+
fromProtoMsg(message: MsgEscalateChallengeProtoMsg): MsgEscalateChallenge;
|
|
2258
|
+
toProto(message: MsgEscalateChallenge): Uint8Array;
|
|
2259
|
+
toProtoMsg(message: MsgEscalateChallenge): MsgEscalateChallengeProtoMsg;
|
|
2260
|
+
};
|
|
2261
|
+
/**
|
|
2262
|
+
* @name MsgEscalateChallengeResponse
|
|
2263
|
+
* @package sparkdream.federation.v1
|
|
2264
|
+
* @see proto type: sparkdream.federation.v1.MsgEscalateChallengeResponse
|
|
2265
|
+
*/
|
|
2266
|
+
export declare const MsgEscalateChallengeResponse: {
|
|
2267
|
+
typeUrl: string;
|
|
2268
|
+
encode(_: MsgEscalateChallengeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2269
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgEscalateChallengeResponse;
|
|
2270
|
+
fromPartial(_: DeepPartial<MsgEscalateChallengeResponse>): MsgEscalateChallengeResponse;
|
|
2271
|
+
fromAmino(_: MsgEscalateChallengeResponseAmino): MsgEscalateChallengeResponse;
|
|
2272
|
+
toAmino(_: MsgEscalateChallengeResponse): MsgEscalateChallengeResponseAmino;
|
|
2273
|
+
fromAminoMsg(object: MsgEscalateChallengeResponseAminoMsg): MsgEscalateChallengeResponse;
|
|
2274
|
+
fromProtoMsg(message: MsgEscalateChallengeResponseProtoMsg): MsgEscalateChallengeResponse;
|
|
2275
|
+
toProto(message: MsgEscalateChallengeResponse): Uint8Array;
|
|
2276
|
+
toProtoMsg(message: MsgEscalateChallengeResponse): MsgEscalateChallengeResponseProtoMsg;
|
|
2277
|
+
};
|
|
2278
|
+
/**
|
|
2279
|
+
* @name MsgUpdateOperationalParams
|
|
2280
|
+
* @package sparkdream.federation.v1
|
|
2281
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParams
|
|
2282
|
+
*/
|
|
2283
|
+
export declare const MsgUpdateOperationalParams: {
|
|
2284
|
+
typeUrl: string;
|
|
2285
|
+
encode(message: MsgUpdateOperationalParams, writer?: BinaryWriter): BinaryWriter;
|
|
2286
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParams;
|
|
2287
|
+
fromPartial(object: DeepPartial<MsgUpdateOperationalParams>): MsgUpdateOperationalParams;
|
|
2288
|
+
fromAmino(object: MsgUpdateOperationalParamsAmino): MsgUpdateOperationalParams;
|
|
2289
|
+
toAmino(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAmino;
|
|
2290
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsAminoMsg): MsgUpdateOperationalParams;
|
|
2291
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsProtoMsg): MsgUpdateOperationalParams;
|
|
2292
|
+
toProto(message: MsgUpdateOperationalParams): Uint8Array;
|
|
2293
|
+
toProtoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsProtoMsg;
|
|
2294
|
+
};
|
|
2295
|
+
/**
|
|
2296
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
2297
|
+
* @package sparkdream.federation.v1
|
|
2298
|
+
* @see proto type: sparkdream.federation.v1.MsgUpdateOperationalParamsResponse
|
|
2299
|
+
*/
|
|
2300
|
+
export declare const MsgUpdateOperationalParamsResponse: {
|
|
2301
|
+
typeUrl: string;
|
|
2302
|
+
encode(_: MsgUpdateOperationalParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2303
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParamsResponse;
|
|
2304
|
+
fromPartial(_: DeepPartial<MsgUpdateOperationalParamsResponse>): MsgUpdateOperationalParamsResponse;
|
|
2305
|
+
fromAmino(_: MsgUpdateOperationalParamsResponseAmino): MsgUpdateOperationalParamsResponse;
|
|
2306
|
+
toAmino(_: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseAmino;
|
|
2307
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsResponseAminoMsg): MsgUpdateOperationalParamsResponse;
|
|
2308
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsResponseProtoMsg): MsgUpdateOperationalParamsResponse;
|
|
2309
|
+
toProto(message: MsgUpdateOperationalParamsResponse): Uint8Array;
|
|
2310
|
+
toProtoMsg(message: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseProtoMsg;
|
|
2311
|
+
};
|