2021-04-18 15:54:18 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.feegrant.v1beta1;
|
|
|
|
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
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 {
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
// 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.
|
2021-08-23 13:15:55 +00:00
|
|
|
rpc GrantAllowance(MsgGrantAllowance) returns (MsgGrantAllowanceResponse);
|
2021-04-18 15:54:18 +00:00
|
|
|
|
2021-08-23 13:15:55 +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.
|
2021-08-23 13:15:55 +00:00
|
|
|
rpc RevokeAllowance(MsgRevokeAllowance) returns (MsgRevokeAllowanceResponse);
|
2021-04-18 15:54:18 +00:00
|
|
|
}
|
|
|
|
|
2021-08-23 13:15:55 +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.
|
2021-08-23 13:15:55 +00:00
|
|
|
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"];
|
|
|
|
}
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
// MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
|
|
|
|
message MsgGrantAllowanceResponse {}
|
2021-04-18 15:54:18 +00:00
|
|
|
|
2021-08-23 13:15:55 +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;
|
2021-08-23 13:15:55 +00:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
// MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
|
|
|
|
message MsgRevokeAllowanceResponse {}
|