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

Fix query proposals #267

Merged
merged 2 commits into from
Nov 10, 2023
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
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
syntax = "proto3";
package composable.mint.v1beta1;
package centauri.mint.v1beta1;

import "gogoproto/gogo.proto";
import "composable/mint/v1beta1/mint.proto";
import "centauri/mint/v1beta1/mint.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "x/mint/types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.mint.v1beta1;
package centauri.mint.v1beta1;

option go_package = "x/mint/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
syntax = "proto3";
package composable.mint.v1beta1;
package centauri.mint.v1beta1;

import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "composable/mint/v1beta1/mint.proto";
import "centauri/mint/v1beta1/mint.proto";

option go_package = "x/mint/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
syntax = "proto3";
package composable.mint.v1beta1;
package centauri.mint.v1beta1;

import "cosmos/msg/v1/msg.proto";
import "amino/amino.proto";
import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";
import "composable/mint/v1beta1/mint.proto";
import "centauri/mint/v1beta1/mint.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "x/mint/types";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

import "gogoproto/gogo.proto";
import "google/protobuf/duration.proto";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

import "gogoproto/gogo.proto";
import "composable/ratelimit/v1beta1/params.proto";
import "composable/ratelimit/v1beta1/ratelimit.proto";
import "composable/ratelimit/v1beta1/epoch.proto";
import "centauri/ratelimit/v1beta1/params.proto";
import "centauri/ratelimit/v1beta1/ratelimit.proto";
import "centauri/ratelimit/v1beta1/epoch.proto";

option go_package = "x/ratelimit/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

option go_package = "x/ratelimit/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

import "composable/ratelimit/v1beta1/ratelimit.proto";
import "centauri/ratelimit/v1beta1/ratelimit.proto";
import "google/api/annotations.proto";
import "gogoproto/gogo.proto";

Expand All @@ -11,26 +11,26 @@ option go_package = "x/ratelimit/types";
service Query {
rpc AllRateLimits(QueryAllRateLimitsRequest)
returns (QueryAllRateLimitsResponse) {
option (google.api.http).get = "/composable/ratelimit/ratelimits";
option (google.api.http).get = "/centauri/ratelimit/ratelimits";
}
rpc RateLimit(QueryRateLimitRequest) returns (QueryRateLimitResponse) {
option (google.api.http).get =
"/composable/ratelimit/ratelimit/{ChannelID}/by_denom";
"/centauri/ratelimit/ratelimit/{ChannelID}/by_denom";
}
rpc RateLimitsByChainID(QueryRateLimitsByChainIDRequest)
returns (QueryRateLimitsByChainIDResponse) {
option (google.api.http).get =
"/composable/ratelimit/ratelimits/{chain_id}";
"/centauri/ratelimit/ratelimits/{chain_id}";
}
rpc RateLimitsByChannelID(QueryRateLimitsByChannelIDRequest)
returns (QueryRateLimitsByChannelIDResponse) {
option (google.api.http).get =
"/composable/ratelimit/ratelimits/{ChannelID}";
"/centauri/ratelimit/ratelimits/{ChannelID}";
}
rpc AllWhitelistedAddresses(QueryAllWhitelistedAddressesRequest)
returns (QueryAllWhitelistedAddressesResponse) {
option (google.api.http).get =
"/composable/ratelimit/whitelisted_addresses";
"/centauri/ratelimit/whitelisted_addresses";
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

import "gogoproto/gogo.proto";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.ratelimit.v1beta1;
package centauri.ratelimit.v1beta1;

import "gogoproto/gogo.proto";
import "cosmos/msg/v1/msg.proto";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
syntax = "proto3";
package composable.transfermiddleware.v1beta1;
package centauri.transfermiddleware.v1beta1;

import "gogoproto/gogo.proto";
import "composable/transfermiddleware/v1beta1/params.proto";
import "composable/transfermiddleware/v1beta1/parachain_token_info.proto";
import "centauri/transfermiddleware/v1beta1/params.proto";
import "centauri/transfermiddleware/v1beta1/parachain_token_info.proto";

option go_package = "x/transfermiddleware/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.transfermiddleware.v1beta1;
package centauri.transfermiddleware.v1beta1;

import "gogoproto/gogo.proto";
import "google/protobuf/timestamp.proto";
Expand All @@ -12,19 +12,19 @@ message ParachainIBCTokenInfo {
// ibc_denom is the denomination of the ibced token transferred from the
// dotsama chain.
string ibc_denom = 1 [ (gogoproto.moretags) = "yaml:\"ibc_denom\"" ];
// channel_id is source channel in IBC connection from composable chain
// channel_id is source channel in IBC connection from centauri chain
string channel_id = 2 [
(gogoproto.moretags) = "yaml:\"channel_id\"",
(gogoproto.customname) = "ChannelID"
];
// native denom is new native minted denom in composable chain.
// native denom is new native minted denom in centauri chain.
string native_denom = 3 [ (gogoproto.moretags) = "yaml:\"native_denom\"" ];
// asset id is the id of the asset on Picasso
string asset_id = 4 [ (gogoproto.moretags) = "yaml:\"asset_id\"" ];
}

message RemoveParachainIBCTokenInfo {
// native denom is new native minted denom in composable chain.
// native denom is new native minted denom in centauri chain.
string native_denom = 1 [ (gogoproto.moretags) = "yaml:\"native_denom\"" ];
//
// remove_time is the time at which the parachain token info will be removed.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.transfermiddleware.v1beta1;
package centauri.transfermiddleware.v1beta1;

import "gogoproto/gogo.proto";
import "google/protobuf/duration.proto";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.transfermiddleware.v1beta1;
package centauri.transfermiddleware.v1beta1;

import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
Expand All @@ -12,16 +12,16 @@ service Query {
// ParaTokenInfo queries all token info of a native denom.
rpc ParaTokenInfo(QueryParaTokenInfoRequest)
returns (QueryParaTokenInfoResponse) {
option (google.api.http).get = "/composable/paratokeninfo";
option (google.api.http).get = "/centauri/paratokeninfo";
}
rpc EscrowAddress(QueryEscrowAddressRequest)
returns (QueryEscrowAddressResponse) {
option (google.api.http).get = "/composable/escrowaddress";
option (google.api.http).get = "/centauri/escrowaddress";
}

rpc RelayerAccount(QueryIBCWhiteListRequest)
returns (QueryIBCWhiteListResponse) {
option (google.api.http).get = "/composable/ibcwhitelist";
option (google.api.http).get = "/centauri/ibcwhitelist";
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.transfermiddleware.v1beta1;
package centauri.transfermiddleware.v1beta1;

import "gogoproto/gogo.proto";
import "cosmos/msg/v1/msg.proto";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package composable.txboundary.v1beta1;
package centauri.txboundary.v1beta1;

import "gogoproto/gogo.proto";
import "google/protobuf/duration.proto";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
syntax = "proto3";
package composable.txboundary.v1beta1;
package centauri.txboundary.v1beta1;

import "gogoproto/gogo.proto";
import "composable/txboundary/v1beta1/boundary.proto";
import "centauri/txboundary/v1beta1/boundary.proto";

option go_package = "x/tx-boundary/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
syntax = "proto3";
package composable.txboundary.v1beta1;
package centauri.txboundary.v1beta1;

import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "composable/txboundary/v1beta1/boundary.proto";
import "centauri/txboundary/v1beta1/boundary.proto";

option go_package = "x/tx-boundary/types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
syntax = "proto3";
package composable.txboundary.v1beta1;
package centauri.txboundary.v1beta1;

import "cosmos/msg/v1/msg.proto";
import "amino/amino.proto";
import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";
import "composable/txboundary/v1beta1/boundary.proto";
import "centauri/txboundary/v1beta1/boundary.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "x/tx-boundary/types";
Expand All @@ -26,7 +26,7 @@ service Msg {
// Since: cosmos-sdk 0.47
message MsgUpdateDelegateBoundary {
option (cosmos.msg.v1.signer) = "authority";
option (amino.name) = "composable/x/txboundary/MsgUpdateDelegateBoundary";
option (amino.name) = "centauri/x/txboundary/MsgUpdateDelegateBoundary";

// authority is the address that controls the module (defaults to x/gov unless
// overwritten).
Expand All @@ -51,7 +51,7 @@ message MsgUpdateDelegateBoundaryResponse {}
// Since: cosmos-sdk 0.47
message MsgUpdateRedelegateBoundary {
option (cosmos.msg.v1.signer) = "authority";
option (amino.name) = "composable/x/txboundary/MsgUpdateDelegateBoundary";
option (amino.name) = "centauri/x/txboundary/MsgUpdateDelegateBoundary";

// authority is the address that controls the module (defaults to x/gov unless
// overwritten).
Expand Down
2 changes: 1 addition & 1 deletion scripts/protocgen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos 2>/dev/null

echo "Generating gogo proto code"
cd proto
proto_dirs=$(find ./composable -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq)
proto_dirs=$(find ./centauri -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq)
for dir in $proto_dirs; do
for file in $(find "${dir}" -maxdepth 1 -name '*.proto'); do
if grep go_package $file &>/dev/null; then
Expand Down
4 changes: 2 additions & 2 deletions scripts/relayer_hermes/config_compose_gaia.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ port = 4001
id = 'gaiad-t1'
rpc_addr = 'http://localhost:3241'
grpc_addr = 'http://localhost:3242'
websocket_addr = 'ws://localhost:3241/websocket' # ws://135.181.59.162:26657/websocket
event_source = { mode = 'push', url = 'ws://localhost:3241/websocket', batch_delay = '500ms' }
rpc_timeout = '10s'
account_prefix = 'cosmos'
key_name = 'bob'
Expand All @@ -120,7 +120,7 @@ trust_threshold = { numerator = '1', denominator = '3' }
id = 'centaurid-t1'
rpc_addr = 'http://127.0.0.1:2241'
grpc_addr = 'http://127.0.0.1:2242'
websocket_addr = 'ws://127.0.0.1:2241/websocket'
event_source = { mode = 'push', url = 'ws://127.0.0.1:2241/websocket', batch_delay = '500ms' }
rpc_timeout = '10s'
account_prefix = 'centauri'
key_name = 'alice'
Expand Down
50 changes: 25 additions & 25 deletions x/mint/types/genesis.pb.go

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

Loading
Loading