Skip to content

Commit

Permalink
build(proto): update proto files (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
aelesbao authored May 26, 2023
1 parent b1c72cf commit fa4d35b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions packages/arch3-proto/proto/archway/genmsgs/v1/genmsgs.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
syntax = "proto3";
package archway.genmsg.v1;

import "google/protobuf/any.proto";


option go_package = "github.com/archway-network/archway/x/genmsg/v1";

// GenesisState represents the messages to be processed during genesis by the genmsg module.
message GenesisState {
repeated google.protobuf.Any messages = 1;
}
3 changes: 2 additions & 1 deletion packages/arch3-proto/scripts/codegen.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ telescope({
'cosmos.vesting.v1beta1',
'google.api',
'ibc.core.port.v1',
'ibc.core.types.v1'
'ibc.core.types.v1',
'archway.genmsg.v1'
]
},
includePackageVar: false,
Expand Down
2 changes: 1 addition & 1 deletion scripts/import-proto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cp -r "$TMPDIR/third_party/proto" "$PROTO_ROOT"

cat <<EOF
$(tput setaf 2)$(tput sgr0) Proto files imported from archway-network/archway@${ARCHWAY_BRANCH}.
$(tput setaf 2)$(tput sgr0) Proto files imported from archway-network/archway@${ARCHWAY_BRANCH}
$(tput setaf 6)To re-generate the client files, run the codegen script:
$(tput setaf 7)
Expand Down

0 comments on commit fa4d35b

Please sign in to comment.