diff --git a/proto/canto/recovery/v1/genesis.proto b/proto/canto/recovery/v1/genesis.proto deleted file mode 100644 index 280c7e24..00000000 --- a/proto/canto/recovery/v1/genesis.proto +++ /dev/null @@ -1,22 +0,0 @@ -syntax = "proto3"; -package canto.recovery.v1; - -import "gogoproto/gogo.proto"; -import "google/protobuf/duration.proto"; - -option go_package = "github.com/Canto-Network/Canto/v6/x/recovery/types"; - -// GenesisState defines the recovery module's genesis state. -message GenesisState { - // params defines all the paramaters of the module. - Params params = 1 [ (gogoproto.nullable) = false ]; -} - -// Params holds parameters for the recovery module -message Params { - // enable recovery IBC middleware - bool enable_recovery = 1; - // duration added to timeout timestamp for balances recovered via IBC packets - google.protobuf.Duration packet_timeout_duration = 2 - [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true ]; -} diff --git a/proto/canto/recovery/v1/query.proto b/proto/canto/recovery/v1/query.proto deleted file mode 100644 index 315fff10..00000000 --- a/proto/canto/recovery/v1/query.proto +++ /dev/null @@ -1,25 +0,0 @@ -syntax = "proto3"; -package canto.recovery.v1; - -import "google/api/annotations.proto"; -import "gogoproto/gogo.proto"; -import "canto/recovery/v1/genesis.proto"; - -option go_package = "github.com/Canto-Network/Canto/v6/x/recovery/types"; - -// Query defines the gRPC querier service. -service Query { - // Params retrieves the total set of recovery parameters. - rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { - option (google.api.http).get = "/canto/recovery/v1/params"; - } -} - -// QueryParamsRequest is the request type for the Query/Params RPC method. -message QueryParamsRequest {} - -// QueryParamsResponse is the response type for the Query/Params RPC method. -message QueryParamsResponse { - // params defines the parameters of the module. - Params params = 1 [ (gogoproto.nullable) = false ]; -}