archway-network / archway

Archway Network
https://archway.io
Other
72 stars 99 forks source link

feat(x/callback): Implement MsgServer #487

Closed spoo-bar closed 9 months ago

spoo-bar commented 10 months ago

Implement the msgs from the AIP

service Msg {
  // UpdateParams defines a governance operation for updating the x/callback
  // module parameters. The authority is defined in the keeper.
  rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse);

  // RequestCallback defines a message for registering a callback at a specific height by a given contract
  rpc RequestCallback(MsgRequestCallback) returns (MsgRequestCallbackResponse);

  // CancelCallback defines a message for cancelling an existing callback
  rpc CancelCallback(MsgCancelCallback) returns (MsgCancelCallbackResponse);
}
spoo-bar commented 9 months ago

Implemented in https://github.com/archway-network/archway/pull/513