laconicd-deprecated/proto/vulcanize/bond/v1beta1/tx.proto

84 lines
2.8 KiB
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
package vulcanize.bond.v1beta1;
option go_package = "github.com/cerc-io/laconicd/x/bond/types";
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "cosmos/base/v1beta1/coin.proto";
// Msg defines the bond Msg service.
service Msg {
// CreateBond defines a method for creating a new bond.
rpc CreateBond(MsgCreateBond) returns (MsgCreateBondResponse) {
option (google.api.http).post = "/vulcanize/bond/v1beta1/create_bond";
};
// RefillBond defines a method for refilling amount for bond.
rpc RefillBond(MsgRefillBond) returns (MsgRefillBondResponse) {
option (google.api.http).post = "/vulcanize/bond/v1beta1/refill_bond";
};
// WithdrawBond defines a method for withdrawing amount from bond.
rpc WithdrawBond(MsgWithdrawBond) returns (MsgWithdrawBondResponse) {
option (google.api.http).post = "/vulcanize/bond/v1beta1/withdraw_bond";
};
// CancelBond defines a method for cancelling a bond.
rpc CancelBond(MsgCancelBond) returns (MsgCancelBondResponse) {
option (google.api.http).post = "/vulcanize/bond/v1beta1/cancel_bond";
};
}
// MsgCreateBond defines a SDK message for creating a new bond.
2022-10-10 10:38:33 +00:00
message MsgCreateBond {
string signer = 1;
repeated cosmos.base.v1beta1.Coin coins = 2 [
2022-10-10 10:38:33 +00:00
(gogoproto.nullable) = false,
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
2022-10-10 10:38:33 +00:00
(gogoproto.moretags) = "json:\"coins\" yaml:\"coins\""
];
}
// MsgCreateBondResponse defines the Msg/CreateBond response type.
2022-10-10 10:38:33 +00:00
message MsgCreateBondResponse {
string id = 1;
}
// MsgRefillBond defines a SDK message for refill the amount for bond.
2022-10-10 10:38:33 +00:00
message MsgRefillBond {
string id = 1;
string signer = 2;
repeated cosmos.base.v1beta1.Coin coins = 3 [
2022-10-10 10:38:33 +00:00
(gogoproto.nullable) = false,
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
2022-10-10 10:38:33 +00:00
(gogoproto.moretags) = "json:\"coins\" yaml:\"coins\""
];
}
// MsgRefillBondResponse defines the Msg/RefillBond response type.
2022-10-10 10:38:33 +00:00
message MsgRefillBondResponse {}
// MsgWithdrawBond defines a SDK message for withdrawing amount from bond.
message MsgWithdrawBond {
2022-10-10 10:38:33 +00:00
string id = 1;
string signer = 2;
repeated cosmos.base.v1beta1.Coin coins = 3 [
2022-10-10 10:38:33 +00:00
(gogoproto.nullable) = false,
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins",
2022-10-10 10:38:33 +00:00
(gogoproto.moretags) = "json:\"coins\" yaml:\"coins\""
];
}
// MsgWithdrawBondResponse defines the Msg/WithdrawBond response type.
2022-10-10 10:38:33 +00:00
message MsgWithdrawBondResponse {}
// MsgCancelBond defines a SDK message for the cancel the bond.
2022-10-10 10:38:33 +00:00
message MsgCancelBond {
string id = 1;
string signer = 2;
}
// MsgCancelBondResponse defines the Msg/CancelBond response type.
2022-10-10 10:38:33 +00:00
message MsgCancelBondResponse {}