Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: amino name #19

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proto/sunrise/blob/v1/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option go_package = "github.com/sunriselayer/sunrise-app/x/blob/types";

// Params defines the parameters for the module.
message Params {
option (amino.name) = "sunrise/x/blob/Params";
option (amino.name) = "sunrise/x/blob/v1/Params";
option (gogoproto.equal) = true;

uint32 gas_per_blob_byte = 1 [
Expand Down
2 changes: 1 addition & 1 deletion proto/sunrise/blob/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ service Msg {
// MsgUpdateParams is the Msg/UpdateParams request type.
message MsgUpdateParams {
option (cosmos.msg.v1.signer) = "authority";
option (amino.name) = "github.com/sunriselayer/sunrise-app/x/blob/MsgUpdateParams";
option (amino.name) = "sunrise/x/blob/v1/MsgUpdateParams";

// authority is the address that controls the module (defaults to x/gov unless overwritten).
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
Expand Down
2 changes: 1 addition & 1 deletion proto/sunrise/blobgrant/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ service Msg {
// MsgUpdateParams is the Msg/UpdateParams request type.
message MsgUpdateParams {
option (cosmos.msg.v1.signer) = "authority";
option (amino.name) = "github.com/sunriselayer/sunrise-app/x/blobgrant/v1/MsgUpdateParams";
option (amino.name) = "sunrise/x/blobgrant/v1/MsgUpdateParams";

// authority is the address that controls the module (defaults to x/gov unless overwritten).
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
Expand Down
2 changes: 1 addition & 1 deletion proto/sunrise/blobstream/v1/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option go_package = "github.com/sunriselayer/sunrise-app/x/blobstream/types";

// Params defines the parameters for the module.
message Params {
option (amino.name) = "sunrise/x/blobstream/Params";
option (amino.name) = "sunrise/x/blobstream/v1/Params";
option (gogoproto.equal) = true;

uint64 data_commitment_window = 1;
Expand Down
2 changes: 1 addition & 1 deletion proto/sunrise/blobstream/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ service Msg {
// MsgUpdateParams is the Msg/UpdateParams request type.
message MsgUpdateParams {
option (cosmos.msg.v1.signer) = "authority";
option (amino.name) = "github.com/sunriselayer/sunrise-app/x/blobstream/MsgUpdateParams";
option (amino.name) = "sunrise/x/blobstream/v1/MsgUpdateParams";

// authority is the address that controls the module (defaults to x/gov unless overwritten).
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
Expand Down
2 changes: 1 addition & 1 deletion proto/sunrise/liquiditypool/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ option go_package = "github.com/sunriselayer/sunrise-app/x/liquiditypool/types";
service Query {
// Parameters queries the parameters of the module.
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
option (google.api.http).get = "/sunriselayer/sunrise-app/liquiditypool/v1/params";
option (google.api.http).get = "/sunrise/liquiditypool/v1/params";
}
}

Expand Down
Loading