Skip to content

Commit

Permalink
fix(#8): packages of erc20 proto
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeNinjaX committed Nov 29, 2024
1 parent b0570ae commit 19dc191
Show file tree
Hide file tree
Showing 13 changed files with 784 additions and 234 deletions.
2 changes: 1 addition & 1 deletion proto/artela/aspect/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "amino/amino.proto";
import "gogoproto/gogo.proto";
import "artela/aspect/params.proto";

option go_package = "github.com/artela-network/artela/x/aspect/types";
option go_package = "github.com/artela-network/artela-rollkit/x/aspect/types";

// GenesisState defines the aspect module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/artela/aspect/module/module.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "cosmos/app/v1alpha1/module.proto";
// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/artela-network/artela/x/aspect"
go_import: "github.com/artela-network/artela-rollkit/x/aspect"
};

// authority defines the custom module authority. If not set, defaults to the governance module.
Expand Down
2 changes: 1 addition & 1 deletion proto/artela/aspect/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package artela.aspect;
import "amino/amino.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/artela-network/artela/x/aspect/types";
option go_package = "github.com/artela-network/artela-rollkit/x/aspect/types";

// Params defines the parameters for the module.
message Params {
Expand Down
2 changes: 1 addition & 1 deletion proto/artela/aspect/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "google/api/annotations.proto";
import "cosmos/base/query/v1beta1/pagination.proto";
import "artela/aspect/params.proto";

option go_package = "github.com/artela-network/artela/x/aspect/types";
option go_package = "github.com/artela-network/artela-rollkit/x/aspect/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/artela/aspect/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "cosmos_proto/cosmos.proto";
import "gogoproto/gogo.proto";
import "artela/aspect/params.proto";

option go_package = "github.com/artela-network/artela/x/aspect/types";
option go_package = "github.com/artela-network/artela-rollkit/x/aspect/types";

// Msg defines the Msg service.
service Msg {
Expand Down
4 changes: 2 additions & 2 deletions proto/artela/evm/erc20.proto
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
syntax = "proto3";
package artela.evm.v1;
package artela.evm;

import "gogoproto/gogo.proto";

option go_package = "github.com/artela-network/artela/v1/x/evm/types";
option go_package = "github.com/artela-network/artela-rollkit/x/evm/types";

message TokenPair {
string address = 1;
Expand Down
19 changes: 9 additions & 10 deletions x/aspect/types/genesis.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions x/aspect/types/params.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 25 additions & 26 deletions x/aspect/types/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 deletions x/aspect/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 19dc191

Please sign in to comment.