mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
d5dcfe73b2
* start makefile refactor to smaller units; break out proto-dep updating; add check-proto-deps target for use in CI in order to determine if depdencies have diverged * add proto check workflow * download go modules before checking proto deps * clean up -- hide output and add error message for check target * add error message for check-rsync * update any type, and ibc-go protos for v3.4.0 * add buf generate files for gogo, docs, and swagger * update swagger dirs and run with latest swagger gen * ignore new build directories * refactor proto makefile logic -- use buf instead of scripts * remove old protobuf scripts * run all proto checks on push * remove moved file * set default value for protoc machine * install build deps seperately * fetch master for buf check breaking * checkout from https url in CI for buf breaking * fix rsync file permissions on darwin * ignore build dirs * fix issue with apple provided make; clean up build deps; switch to buf format * remove clang format file -- using buf format now * run make proto-format (buf format changes) * update generated files for proto format changes
90 lines
3.0 KiB
Protocol Buffer
90 lines
3.0 KiB
Protocol Buffer
syntax = "proto3";
|
|
package kava.issuance.v1beta1;
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/kava-labs/kava/x/issuance/types";
|
|
|
|
// Msg defines the issuance Msg service.
|
|
service Msg {
|
|
// IssueTokens message type used by the issuer to issue new tokens
|
|
rpc IssueTokens(MsgIssueTokens) returns (MsgIssueTokensResponse);
|
|
|
|
// RedeemTokens message type used by the issuer to redeem (burn) tokens
|
|
rpc RedeemTokens(MsgRedeemTokens) returns (MsgRedeemTokensResponse);
|
|
|
|
// BlockAddress message type used by the issuer to block an address from holding or transferring tokens
|
|
rpc BlockAddress(MsgBlockAddress) returns (MsgBlockAddressResponse);
|
|
|
|
// UnblockAddress message type used by the issuer to unblock an address from holding or transferring tokens
|
|
rpc UnblockAddress(MsgUnblockAddress) returns (MsgUnblockAddressResponse);
|
|
|
|
// SetPauseStatus message type used to pause or unpause status
|
|
rpc SetPauseStatus(MsgSetPauseStatus) returns (MsgSetPauseStatusResponse);
|
|
}
|
|
|
|
// MsgIssueTokens represents a message used by the issuer to issue new tokens
|
|
message MsgIssueTokens {
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string sender = 1;
|
|
cosmos.base.v1beta1.Coin tokens = 2 [(gogoproto.nullable) = false];
|
|
string receiver = 3;
|
|
}
|
|
|
|
// MsgIssueTokensResponse defines the Msg/IssueTokens response type.
|
|
message MsgIssueTokensResponse {}
|
|
|
|
// MsgRedeemTokens represents a message used by the issuer to redeem (burn) tokens
|
|
message MsgRedeemTokens {
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string sender = 1;
|
|
cosmos.base.v1beta1.Coin tokens = 2 [(gogoproto.nullable) = false];
|
|
}
|
|
|
|
// MsgRedeemTokensResponse defines the Msg/RedeemTokens response type.
|
|
message MsgRedeemTokensResponse {}
|
|
|
|
// MsgBlockAddress represents a message used by the issuer to block an address from holding or transferring tokens
|
|
message MsgBlockAddress {
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string sender = 1;
|
|
string denom = 2;
|
|
string blocked_address = 3;
|
|
}
|
|
|
|
// MsgBlockAddressResponse defines the Msg/BlockAddress response type.
|
|
message MsgBlockAddressResponse {}
|
|
|
|
// MsgUnblockAddress message type used by the issuer to unblock an address from holding or transferring tokens
|
|
message MsgUnblockAddress {
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string sender = 1;
|
|
string denom = 2;
|
|
string blocked_address = 3;
|
|
}
|
|
|
|
// MsgUnblockAddressResponse defines the Msg/UnblockAddress response type.
|
|
message MsgUnblockAddressResponse {}
|
|
|
|
// MsgSetPauseStatus message type used by the issuer to pause or unpause status
|
|
message MsgSetPauseStatus {
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string sender = 1;
|
|
string denom = 2;
|
|
bool status = 3;
|
|
}
|
|
|
|
// MsgSetPauseStatusResponse defines the Msg/SetPauseStatus response type.
|
|
message MsgSetPauseStatusResponse {}
|