You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The feeds module stores its params in state with the prefix of `0x10`,
155
155
it can be updated with governance proposal or the address with authority.
156
156
157
-
* Params: `0x10 | ProtocolBuffer(Params)`
157
+
* Params: `0x90 | ProtocolBuffer(Params)`
158
158
159
159
```protobuf
160
160
// Params is the data structure that keeps the parameters of the feeds module.
@@ -204,6 +204,33 @@ message Params {
204
204
205
205
In this section, we describe the processing of the `feeds` messages and the corresponding updates to the state. All created/modified state objects specified by each message are defined within the [state](#state) section.
206
206
207
+
### MsgSubmitSignals
208
+
209
+
Delegator Signals are submitted as a batch using the MsgSubmitSignals message.
210
+
211
+
Batched Signals replace the previous Signals of the same delegator as a batch.
212
+
Signals are registered, and their power is added to the SignalTotalPower of the same SignalID.
213
+
214
+
```protobuf
215
+
// MsgSubmitSignals is the transaction message to submit signals
216
+
message MsgSubmitSignals {
217
+
option (cosmos.msg.v1.signer) = "delegator";
218
+
option (amino.name) = "feeds/MsgSubmitSignals";
219
+
220
+
// Delegator is the address of the delegator that want to submit signals
0 commit comments