laconicd/third_party/proto/cosmos/feegrant/v1beta1/tx.proto

48 lines
1.7 KiB
Protocol Buffer
Raw Normal View History

2021-04-18 15:54:18 +00:00
syntax = "proto3";
package cosmos.feegrant.v1beta1;
import "google/protobuf/any.proto";
import "cosmos_proto/cosmos.proto";
option go_package = "github.com/cosmos/cosmos-sdk/x/feegrant";
2021-04-18 15:54:18 +00:00
// Msg defines the feegrant msg service.
service Msg {
// GrantAllowance grants fee allowance to the grantee on the granter's
2021-04-18 15:54:18 +00:00
// account with the provided expiration time.
rpc GrantAllowance(MsgGrantAllowance) returns (MsgGrantAllowanceResponse);
2021-04-18 15:54:18 +00:00
// RevokeAllowance revokes any fee allowance of granter's account that
2021-04-18 15:54:18 +00:00
// has been granted to the grantee.
rpc RevokeAllowance(MsgRevokeAllowance) returns (MsgRevokeAllowanceResponse);
2021-04-18 15:54:18 +00:00
}
// MsgGrantAllowance adds permission for Grantee to spend up to Allowance
2021-04-18 15:54:18 +00:00
// of fees from the account of Granter.
message MsgGrantAllowance {
// granter is the address of the user granting an allowance of their funds.
string granter = 1;
// grantee is the address of the user being granted an allowance of another user's funds.
string grantee = 2;
// allowance can be any of basic and filtered fee allowance.
2021-04-18 15:54:18 +00:00
google.protobuf.Any allowance = 3 [(cosmos_proto.accepts_interface) = "FeeAllowanceI"];
}
// MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
message MsgGrantAllowanceResponse {}
2021-04-18 15:54:18 +00:00
// MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
message MsgRevokeAllowance {
// granter is the address of the user granting an allowance of their funds.
2021-04-18 15:54:18 +00:00
string granter = 1;
// grantee is the address of the user being granted an allowance of another user's funds.
2021-04-18 15:54:18 +00:00
string grantee = 2;
}
// MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
message MsgRevokeAllowanceResponse {}