diff --git a/app/app.go b/app/app.go index d4199ead..f716ab06 100644 --- a/app/app.go +++ b/app/app.go @@ -60,7 +60,7 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - interchaintxstypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" + interchaintxstypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" ) const ( diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 2117875c..1b8c0287 100644 --- a/app/keepers/keys.go +++ b/app/keepers/keys.go @@ -28,10 +28,10 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - contractmanagermoduletypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - feerefundertypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" - interchainqueriestypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" + contractmanagermoduletypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + feerefundertypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + interchainqueriestypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + interchaintxstypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" ) func (appKeepers *AppKeepers) GenerateKeys() { diff --git a/app/modules.go b/app/modules.go index b34a63d7..c36ed1ac 100644 --- a/app/modules.go +++ b/app/modules.go @@ -57,15 +57,15 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/neutron-org/neutron/v4/x/contractmanager" - contractmanagermoduletypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - "github.com/neutron-org/neutron/v4/x/feerefunder" - feetypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" - "github.com/neutron-org/neutron/v4/x/interchainqueries" - interchainqueriestypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - "github.com/neutron-org/neutron/v4/x/interchaintxs" - interchaintxstypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" - transferSudo "github.com/neutron-org/neutron/v4/x/transfer" + "github.com/Nolus-Protocol/nolus-core/x/contractmanager" + contractmanagermoduletypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + "github.com/Nolus-Protocol/nolus-core/x/feerefunder" + feetypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + "github.com/Nolus-Protocol/nolus-core/x/interchainqueries" + interchainqueriestypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + "github.com/Nolus-Protocol/nolus-core/x/interchaintxs" + interchaintxstypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" + transferSudo "github.com/Nolus-Protocol/nolus-core/x/transfer" ) // module account permissions. diff --git a/app/sim_test.go b/app/sim_test.go index 4c394028..69121d09 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -53,10 +53,10 @@ import ( minttypes "github.com/Nolus-Protocol/nolus-core/x/mint/types" taxmoduletypes "github.com/Nolus-Protocol/nolus-core/x/tax/types" - contractmanagermoduletypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - feetypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" - interchainqueriestypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" + contractmanagermoduletypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + feetypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + interchainqueriestypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + interchaintxstypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" ) const SimAppChainID = "nolus-simapp" diff --git a/app/upgrades/v03/upgrades.go b/app/upgrades/v03/upgrades.go index be2945eb..0ef8527e 100644 --- a/app/upgrades/v03/upgrades.go +++ b/app/upgrades/v03/upgrades.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - icqtypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" + icqtypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" ) func CreateUpgradeHandler( diff --git a/app/upgrades/v05/upgrades.go b/app/upgrades/v05/upgrades.go index 1a02661c..6b4bf2ca 100644 --- a/app/upgrades/v05/upgrades.go +++ b/app/upgrades/v05/upgrades.go @@ -23,11 +23,11 @@ import ( exported "github.com/cosmos/ibc-go/v8/modules/core/exported" ibctmmigrations "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint/migrations" - contractmanagerkeeper "github.com/neutron-org/neutron/v4/x/contractmanager/keeper" - contractmanagertypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - feerefundertypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" - icqtypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" + contractmanagerkeeper "github.com/Nolus-Protocol/nolus-core/x/contractmanager/keeper" + contractmanagertypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + feerefundertypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + icqtypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + interchaintxstypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" ) diff --git a/buf.work.yaml b/buf.work.yaml index 832147ca..d3ed9b56 100644 --- a/buf.work.yaml +++ b/buf.work.yaml @@ -1,4 +1,4 @@ version: v1 directories: - proto - + - third_party/proto \ No newline at end of file diff --git a/go.mod b/go.mod index 695e17b7..f8b6e6d4 100644 --- a/go.mod +++ b/go.mod @@ -8,11 +8,10 @@ require ( github.com/cometbft/cometbft v0.38.12 github.com/cosmos/cosmos-sdk v0.50.9 github.com/cosmos/gogoproto v1.7.0 - github.com/cosmos/ibc-go/v8 v8.4.0 + github.com/cosmos/ibc-go/v8 v8.5.1 github.com/golang/protobuf v1.5.4 github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 - github.com/neutron-org/neutron/v4 v4.0.0-rc1 github.com/spf13/cast v1.7.0 github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 @@ -23,7 +22,7 @@ require ( require ( cosmossdk.io/api v0.7.5 - cosmossdk.io/client/v2 v2.0.0-beta.1 + cosmossdk.io/client/v2 v2.0.0-beta.3 cosmossdk.io/core v0.11.1 cosmossdk.io/errors v1.0.1 cosmossdk.io/log v1.4.1 @@ -38,22 +37,22 @@ require ( github.com/cosmos/cosmos-db v1.0.2 github.com/cosmos/cosmos-proto v1.0.0-beta.5 github.com/cosmos/ibc-go/modules/capability v1.0.1 - github.com/cosmos/ics23/go v0.10.0 + github.com/cosmos/ics23/go v0.11.0 github.com/gogo/protobuf v1.3.3 github.com/golang/mock v1.6.0 github.com/hashicorp/go-metrics v0.5.3 github.com/pkg/errors v0.9.1 - google.golang.org/genproto/googleapis/api v0.0.0-20240610135401-a8a62080eff3 + google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d google.golang.org/protobuf v1.34.2 gotest.tools/v3 v3.5.1 ) require ( - cloud.google.com/go v0.114.0 // indirect - cloud.google.com/go/auth v0.5.1 // indirect + cloud.google.com/go v0.115.0 // indirect + cloud.google.com/go/auth v0.6.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/compute/metadata v0.3.0 // indirect - cloud.google.com/go/iam v1.1.8 // indirect + cloud.google.com/go/iam v1.1.9 // indirect cloud.google.com/go/storage v1.41.0 // indirect cosmossdk.io/collections v0.4.0 // indirect cosmossdk.io/depinject v1.0.0 // indirect @@ -63,6 +62,7 @@ require ( github.com/99designs/keyring v1.2.2 // indirect github.com/DataDog/datadog-go v3.2.0+incompatible // indirect github.com/DataDog/zstd v1.5.5 // indirect + github.com/Microsoft/go-winio v0.6.2 // indirect github.com/aws/aws-sdk-go v1.44.224 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect @@ -120,7 +120,7 @@ require ( github.com/google/s2a-go v0.1.7 // indirect github.com/google/uuid v1.6.0 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/googleapis/gax-go/v2 v2.12.4 // indirect + github.com/googleapis/gax-go/v2 v2.12.5 // indirect github.com/gorilla/handlers v1.5.2 // indirect github.com/gorilla/websocket v1.5.3 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect @@ -180,7 +180,6 @@ require ( github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect github.com/shamaton/msgpack/v2 v2.2.0 // indirect - github.com/sirupsen/logrus v1.9.3 // indirect github.com/sourcegraph/conc v0.3.0 // indirect github.com/spf13/afero v1.11.0 // indirect github.com/spf13/viper v1.19.0 // indirect @@ -200,16 +199,16 @@ require ( go.opentelemetry.io/otel/trace v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/crypto v0.26.0 // indirect - golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect + golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect golang.org/x/net v0.28.0 // indirect golang.org/x/oauth2 v0.21.0 // indirect golang.org/x/sync v0.8.0 // indirect - golang.org/x/sys v0.23.0 // indirect + golang.org/x/sys v0.24.0 // indirect golang.org/x/term v0.23.0 // indirect golang.org/x/text v0.17.0 // indirect golang.org/x/time v0.5.0 // indirect - google.golang.org/api v0.180.0 // indirect - google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect + google.golang.org/api v0.186.0 // indirect + google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect @@ -241,8 +240,6 @@ replace ( // For more info https://github.com/CosmWasm/wasmd/blob/d63bea442bedf5b3055f3821472c7e6cafc3d813/go.mod#L131 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/neutron-org/neutron/v4 => github.com/nolus-protocol/neutron/v4 v4.0.1-nolus - // https://github.com/cosmos/cosmos-sdk/blob/main/UPGRADING.md#replaces github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 ) diff --git a/go.sum b/go.sum index 68f35d93..9a8e525d 100644 --- a/go.sum +++ b/go.sum @@ -30,8 +30,8 @@ cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w9 cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.114.0 h1:OIPFAdfrFDFO2ve2U7r/H5SwSbBzEdrBdE7xkgwc+kY= -cloud.google.com/go v0.114.0/go.mod h1:ZV9La5YYxctro1HTPug5lXH/GefROyW8PPD4T8n9J8E= +cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14= +cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU= cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= @@ -46,8 +46,8 @@ cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjby cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/auth v0.5.1 h1:0QNO7VThG54LUzKiQxv8C6x1YX7lUrzlAa1nVLF8CIw= -cloud.google.com/go/auth v0.5.1/go.mod h1:vbZT8GjzDf3AVqCcQmqeeM32U9HBFc32vVVAbwDsa6s= +cloud.google.com/go/auth v0.6.0 h1:5x+d6b5zdezZ7gmLWD1m/xNjnaQ2YDhmIz/HH3doy1g= +cloud.google.com/go/auth v0.6.0/go.mod h1:b4acV+jLQDyjwm4OXHYjNvRi4jvGBzHWJRtJcy+2P4g= cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= @@ -111,8 +111,8 @@ cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y97 cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v1.1.8 h1:r7umDwhj+BQyz0ScZMp4QrGXjSTI3ZINnpgU2nlB/K0= -cloud.google.com/go/iam v1.1.8/go.mod h1:GvE6lyMmfxXauzNq8NbgJbeVQNspG+tcdL/W8QO1+zE= +cloud.google.com/go/iam v1.1.9 h1:oSkYLVtVme29uGYrOcKcvJRht7cHJpYD09GM9JaR0TE= +cloud.google.com/go/iam v1.1.9/go.mod h1:Nt1eDWNYH9nGQg3d/mY7U1hvfGmsaG9o/kLGoLoLXjQ= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= @@ -233,8 +233,6 @@ github.com/DataDog/datadog-go v3.2.0+incompatible h1:qSG2N4FghB1He/r2mFrWKCaL7dX github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.5 h1:oWf5W7GtOLgp6bciQYDmhHHjdhYkALu6S/5Ni9ZgSvQ= github.com/DataDog/zstd v1.5.5/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= -github.com/GeertJohan/go.rice v1.0.3 h1:k5viR+xGtIhF61125vCE1cmJ5957RQGXG6dmbaWZSmI= -github.com/GeertJohan/go.rice v1.0.3/go.mod h1:XVdrU4pW00M4ikZed5q56tPf1v2KwnIKeIdc9CBYNt4= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= @@ -244,8 +242,6 @@ github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= -github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= @@ -256,8 +252,6 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI= -github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129/go.mod h1:rFgpPQZYZ8vdbc+48xibu8ALc3yeyd64IhHS+PU6Yyg= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= @@ -284,8 +278,6 @@ github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2 github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bits-and-blooms/bitset v1.13.0 h1:bAQ9OPNFYbGHV6Nez0tmNI0RiEu7/hxlYJRUA0wFAVE= github.com/bits-and-blooms/bitset v1.13.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= -github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHfpE= -github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc= github.com/btcsuite/btcd v0.22.2 h1:vBZ+lGGd1XubpOWO67ITJpAEsICWhA0YzqkcpkgNBfo= github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ= github.com/btcsuite/btcd/btcec/v2 v2.3.4/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= @@ -295,8 +287,6 @@ github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOF github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/bufbuild/protocompile v0.6.0 h1:Uu7WiSQ6Yj9DbkdnOe7U4mNKp58y9WDMKDn28/ZlunY= github.com/bufbuild/protocompile v0.6.0/go.mod h1:YNP35qEYoYGme7QMtz5SBCoN4kL4g12jTtjuzRNdjpE= -github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs= -github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= @@ -354,10 +344,6 @@ github.com/cometbft/cometbft v0.38.12 h1:OWsLZN2KcSSFe8bet9xCn07VwhBnavPea3VyPnN github.com/cometbft/cometbft v0.38.12/go.mod h1:GPHp3/pehPqgX1930HmK1BpBLZPxB75v/dZg8Viwy+o= github.com/cometbft/cometbft-db v0.11.0 h1:M3Lscmpogx5NTbb1EGyGDaFRdsoLWrUWimFEyf7jej8= github.com/cometbft/cometbft-db v0.11.0/go.mod h1:GDPJAC/iFHNjmZZPN8V8C1yr/eyityhi2W1hz2MGKSc= -github.com/consensys/bavard v0.1.13 h1:oLhMLOFGTLdlda/kma4VOJazblc7IM5y5QPd2A/YjhQ= -github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= -github.com/consensys/gnark-crypto v0.12.1 h1:lHH39WuuFgVHONRl3J0LRBtuYdQTumFSDtJF7HpyG8M= -github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= @@ -381,18 +367,14 @@ github.com/cosmos/gogoproto v1.7.0 h1:79USr0oyXAbxg3rspGh/m4SWNyoz/GLaAh0QlCe2fr github.com/cosmos/gogoproto v1.7.0/go.mod h1:yWChEv5IUEYURQasfyBW5ffkMHR/90hiHgbNgrtp4j0= github.com/cosmos/iavl v1.2.0 h1:kVxTmjTh4k0Dh1VNL046v6BXqKziqMDzxo93oh3kOfM= github.com/cosmos/iavl v1.2.0/go.mod h1:HidWWLVAtODJqFD6Hbne2Y0q3SdxByJepHUOeoH4LiI= -github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.1 h1:BHn+JWZILxkUT9IrlP1ctUfo9ENGi+EmiZ9om1XSHIw= -github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.1/go.mod h1:82hPO/tRawbuFad2gPwChvpZ0JEIoNi91LwVneAYCeM= github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd h1:Lx+/5dZ/nN6qPXP2Ofog6u1fmlkCFA1ElcOconnofEM= github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd/go.mod h1:JWfpWVKJKiKtd53/KbRoKfxWl8FsT2GPcNezTOk0o5Q= github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI= github.com/cosmos/ibc-go/modules/capability v1.0.1/go.mod h1:rquyOV262nGJplkumH+/LeYs04P3eV8oB7ZM4Ygqk4E= -github.com/cosmos/ibc-go/v8 v8.4.0 h1:K2PfX0AZ+1XKZytHGEMuSjQXG/MZshPb83RSTQt2+cE= -github.com/cosmos/ibc-go/v8 v8.4.0/go.mod h1:zh6x1osR0hNvEcFrC/lhGD08sMfQmr9wHVvZ/mRWMCs= -github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= -github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= -github.com/cosmos/interchain-security/v5 v5.0.0 h1:iwHu1nFbXuYfa13isEgm6hkHU+2t/t56YjcfyP3PnQA= -github.com/cosmos/interchain-security/v5 v5.0.0/go.mod h1:h/RkwOppo5AJj+1pkQyfjqU1MPdpohD/S6oEeAXpGZY= +github.com/cosmos/ibc-go/v8 v8.5.1 h1:3JleEMKBjRKa3FeTKt4fjg22za/qygLBo7mDkoYTNBs= +github.com/cosmos/ibc-go/v8 v8.5.1/go.mod h1:P5hkAvq0Qbg0h18uLxDVA9q1kOJ0l36htMsskiNwXbo= +github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU= +github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0= github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo= github.com/cosmos/keyring v1.2.0/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA= github.com/cosmos/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM= @@ -400,8 +382,6 @@ github.com/cosmos/ledger-cosmos-go v0.13.3/go.mod h1:HENcEP+VtahZFw38HZ3+LS3Iv5X github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/crate-crypto/go-kzg-4844 v1.0.0 h1:TsSgHwrkTKecKJ4kadtHi4b3xHW5dCFUDFnUp1TsawI= -github.com/crate-crypto/go-kzg-4844 v1.0.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= github.com/creachadair/atomicfile v0.3.3 h1:yJlDq8qk9QmD/6ol+jq1X4bcoLNVdYq95+owOnauziE= github.com/creachadair/atomicfile v0.3.3/go.mod h1:X1r9P4wigJlGkYJO1HXZREdkVn+b1yHrsBBMLSj7tak= github.com/creachadair/mtest v0.0.0-20231015022703-31f2ea539dce h1:BFjvg2Oq88/2DOcUFu1ScIwKUn7KJYYvLr6AeuCJD54= @@ -410,16 +390,12 @@ github.com/creachadair/tomledit v0.0.26 h1:MoDdgHIHZ5PctBVsAZDjxdxreWUEa9ObPKTRk github.com/creachadair/tomledit v0.0.26/go.mod h1:SJi1OxKpMyR141tq1lzsbPtIg3j8TeVPM/ZftfieD7o= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/daaku/go.zipexe v1.0.2 h1:Zg55YLYTr7M9wjKn8SY/WcpuuEi+kR2u4E8RhvpyXmk= -github.com/daaku/go.zipexe v1.0.2/go.mod h1:5xWogtqlYnfBXkSB1o9xysukNP9GTvaNkqzUZbt3Bw8= github.com/danieljoos/wincred v1.2.0 h1:ozqKHaLK0W/ii4KVbbvluM91W2H3Sh0BncbUNPS7jLE= github.com/danieljoos/wincred v1.2.0/go.mod h1:FzQLLMKBFdvu+osBrnFODiv32YGwCfx0SkRa/eYHgec= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= -github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= github.com/decred/dcrd/crypto/blake256 v1.0.1 h1:7PltbUIQB7u/FfZ39+DGa/ShuMyJ5ilcvdfma9wOH6Y= github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= @@ -464,10 +440,6 @@ github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.m github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/ethereum/c-kzg-4844 v1.0.0 h1:0X1LBXxaEtYD9xsyj9B9ctQEZIpnvVDeoBx8aHEwTNA= -github.com/ethereum/c-kzg-4844 v1.0.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= -github.com/ethereum/go-ethereum v1.14.5 h1:szuFzO1MhJmweXjoM5nSAeDvjNUH3vIQoMzzQnfvjpw= -github.com/ethereum/go-ethereum v1.14.5/go.mod h1:VEDGGhSxY7IEjn98hJRFXl/uFvpRgbIIf2PpXiyGGgc= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.17.0 h1:GlRw1BRJxkpqUCBKzKOw098ed57fEsKeNjpTe3cSjK4= @@ -484,12 +456,6 @@ github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMo github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= -github.com/gagliardetto/binary v0.8.0 h1:U9ahc45v9HW0d15LoN++vIXSJyqR/pWw8DDlhd7zvxg= -github.com/gagliardetto/binary v0.8.0/go.mod h1:2tfj51g5o9dnvsc+fL3Jxr22MuWzYXwx9wEoN0XQ7/c= -github.com/gagliardetto/solana-go v1.10.0 h1:lDuHGC+XLxw9j8fCHBZM9tv4trI0PVhev1m9NAMaIdM= -github.com/gagliardetto/solana-go v1.10.0/go.mod h1:afBEcIRrDLJst3lvAahTr63m6W2Ns6dajZxe2irF7Jg= -github.com/gagliardetto/treeout v0.1.4 h1:ozeYerrLCmCubo1TcIjFiOWTTGteOOHND1twdFpgwaw= -github.com/gagliardetto/treeout v0.1.4/go.mod h1:loUefvXTrlRG5rYmJmExNryyBRh8f89VZhmMOyCyqok= github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps= github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= @@ -518,8 +484,6 @@ github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE= -github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78= github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= @@ -651,8 +615,8 @@ github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99 github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.12.4 h1:9gWcmF85Wvq4ryPFvGFaOgPIs1AQX0d0bcbGw4Z96qg= -github.com/googleapis/gax-go/v2 v2.12.4/go.mod h1:KYEYLorsnIGDi/rPC8b5TdlB9kbKoFubselGIoBMCwI= +github.com/googleapis/gax-go/v2 v2.12.5 h1:8gw9KZK8TiVKB6q3zHY3SBzLnrGp6HQjyfYBYGmXdxA= +github.com/googleapis/gax-go/v2 v2.12.5/go.mod h1:BUDKcWo+RaKq5SC9vVYL0wLADa3VcfswbOMMRmB9H3E= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= @@ -662,8 +626,6 @@ github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2z github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= -github.com/gorilla/rpc v1.2.0 h1:WvvdC2lNeT1SP32zrIce5l0ECBfbAlmrmSBsuc57wfk= -github.com/gorilla/rpc v1.2.0/go.mod h1:V4h9r+4sF5HnzqbwIez0fKSpANP0zlYd3qR7p36jkTQ= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= @@ -729,16 +691,12 @@ github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ= github.com/hdevalence/ed25519consensus v0.1.0 h1:jtBwzzcHuTmFrQN6xQZn6CQEO/V9f7HsjsjeEZ6auqU= github.com/hdevalence/ed25519consensus v0.1.0/go.mod h1:w3BHWjwJbFU29IRHL1Iqkw3sus+7FctEyM4RqDxYNzo= -github.com/holiman/uint256 v1.2.4 h1:jUc4Nk8fm9jZabQuqr2JzednajVmBpC+oiTiXZJEApU= -github.com/holiman/uint256 v1.2.4/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huandu/go-assert v1.1.5 h1:fjemmA7sSfYHJD7CUqs9qTwwfdNAx7/j2/ZlHXzNB3c= github.com/huandu/go-assert v1.1.5/go.mod h1:yOLvuqZwmcHIC5rIzrBhT7D3Q9c3GFnd0JrPVhn/06U= github.com/huandu/skiplist v1.2.0 h1:gox56QD77HzSC0w+Ws3MH3iie755GBJU1OER3h5VsYw= github.com/huandu/skiplist v1.2.0/go.mod h1:7v3iFjLcSAzO4fN5B8dvebvo/qsfumiLiDXMrPiHF9w= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= -github.com/iancoleman/orderedmap v0.3.0 h1:5cbR2grmZR/DiVt+VJopEhtVs9YGInGIxAoMJn+Ichc= -github.com/iancoleman/orderedmap v0.3.0/go.mod h1:XuLcCUkdL5owUCQeF2Ue9uuw1EptkJDkXXS7VoV7XGE= github.com/iancoleman/strcase v0.3.0 h1:nTXanmYxhfFAMjZL34Ov6gkzEsSJZ5DbhxWjvSASxEI= github.com/iancoleman/strcase v0.3.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= @@ -765,8 +723,6 @@ github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= @@ -799,8 +755,6 @@ github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-b github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/linxGnu/grocksdb v1.8.14 h1:HTgyYalNwBSG/1qCQUIott44wU5b2Y9Kr3z7SK5OfGQ= github.com/linxGnu/grocksdb v1.8.14/go.mod h1:QYiYypR2d4v63Wj1adOOfzglnoII0gLj3PNh4fZkcFA= -github.com/logrusorgru/aurora v2.0.3+incompatible h1:tOpm7WcpBTn4fjmVfgpQq0EfczGlG91VSDkswnjF5A8= -github.com/logrusorgru/aurora v2.0.3+incompatible/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= @@ -839,19 +793,10 @@ github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:F github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mmcloughlin/addchain v0.4.0 h1:SobOdjm2xLj1KkXN5/n0xTIWyZA2+s99UCY1iPfkHRY= -github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/mostynb/zstdpool-freelist v0.0.0-20201229113212-927304c0c3b1 h1:mPMvm6X6tf4w8y7j9YIt6V9jfWhL6QlbEc7CCmeQlWk= -github.com/mostynb/zstdpool-freelist v0.0.0-20201229113212-927304c0c3b1/go.mod h1:ye2e/VUEtE2BHE+G/QcKkcLQVAEJoYRFj5VUOQatCRE= -github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= -github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= @@ -872,8 +817,6 @@ github.com/neutron-org/admin-module/v2 v2.0.0/go.mod h1:RfOyabXsdJ5btcOKyKPZDYiZ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nolus-protocol/cosmos-sdk v0.50.7-nolus-rc1 h1:QK59L25el60UuVoosifSg3EVK+/n6urjln6yxNnxAI4= github.com/nolus-protocol/cosmos-sdk v0.50.7-nolus-rc1/go.mod h1:84xDDJEHttRT7NDGwBaUOLVOMN0JNE9x7NbsYIxXs1s= -github.com/nolus-protocol/neutron/v4 v4.0.1-nolus h1:21r0fWxqjfaLHkPS/y/H1WDxytisOZ3xPsvp+JHa1jU= -github.com/nolus-protocol/neutron/v4 v4.0.1-nolus/go.mod h1:7TRawLFzMRs7sXuDd/R5VKHPUfNPDDMYaTcY2UjCqF0= github.com/nolus-protocol/wasmd v0.53.0-nolus h1:RRWI+6dABBCEEowPNxlEHbHYeNHamUVXaop57PF6J2I= github.com/nolus-protocol/wasmd v0.53.0-nolus/go.mod h1:FJl/aWjdpGof3usAMFQpDe07Rkx77PUzp0cygFMOvtw= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= @@ -1003,8 +946,6 @@ github.com/sasha-s/go-deadlock v0.3.1/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZj github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/shamaton/msgpack/v2 v2.2.0 h1:IP1m01pHwCrMa6ZccP9B3bqxEMKMSmMVAVKk54g3L/Y= github.com/shamaton/msgpack/v2 v2.2.0/go.mod h1:6khjYnkx73f7VQU7wjcFS9DFjs+59naVWJv1TB7qdOI= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= @@ -1012,12 +953,6 @@ github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrf github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/skip-mev/block-sdk/v2 v2.1.2 h1:fNKbrb+PVVzuU0JiSuWgBV4Afj5zZ1VeHQJp88wSl1g= -github.com/skip-mev/block-sdk/v2 v2.1.2/go.mod h1:kIq7SMva0/eHKTCiG/oI5XGxD4HNVK0t71TrUZqHcvA= -github.com/skip-mev/feemarket v1.0.3 h1:DpB1tj51MlFN5iOg1lN+fwWqSF62xdND46BqgTko0C4= -github.com/skip-mev/feemarket v1.0.3/go.mod h1:lszt7zGEEActbDYq1hOKogQvfCsnLEHH5113LwgmYcE= -github.com/skip-mev/slinky v1.0.3 h1:+7Yw+HHjYqJ7gb5nrG1k2bplNG+qEmn5wws+OesdY2M= -github.com/skip-mev/slinky v1.0.3/go.mod h1:EE3O71wIJ74OciYh62Fc5EysF07KArBEYb6lDmTIKVM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -1048,8 +983,6 @@ github.com/spf13/viper v1.19.0/go.mod h1:GQUN9bilAbhU/jgc1bKs99f/suXKeUMct8Adx5+ github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= -github.com/streamingfast/logging v0.0.0-20230608130331-f22c91403091 h1:RN5mrigyirb8anBEtdjtHFIufXdacyTi6i4KBfeNXeo= -github.com/streamingfast/logging v0.0.0-20230608130331-f22c91403091/go.mod h1:VlduQ80JcGJSargkRU4Sg9Xo63wZD/l8A5NC/Uo1/uU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= @@ -1071,18 +1004,12 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= -github.com/supranational/blst v0.3.11 h1:LyU6FolezeWAhvQk0k6O/d49jqgO52MSDDfYgbeoEm4= -github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2lyGa2E= github.com/tendermint/go-amino v0.16.0/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= github.com/tidwall/btree v1.7.0 h1:L1fkJH/AuEh5zBnnBbmTwQ5Lt+bRJ5A8EWecslvo9iI= github.com/tidwall/btree v1.7.0/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY= -github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU= -github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= -github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= -github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= @@ -1109,8 +1036,6 @@ go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.10 h1:+BqfJTcCzTItrop8mq/lbzL8wSGtj94UO/3U31shqG0= go.etcd.io/bbolt v1.3.10/go.mod h1:bK3UQLPJZly7IlNmV7uVHJDxfe5aK9Ll93e/74Y9oEQ= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.mongodb.org/mongo-driver v1.11.0 h1:FZKhBSTydeuffHj9CBjXlR8vQLee1cQyTWYPA6/tqiE= -go.mongodb.org/mongo-driver v1.11.0/go.mod h1:s7p5vEtfbeR1gYi6pnj3c3/urpbLv2T5Sfd6Rp2HBB8= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= @@ -1145,14 +1070,10 @@ go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+ go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= -go.uber.org/ratelimit v0.2.0 h1:UQE2Bgi7p2B85uP5dC2bbRtig0C+OeNRnNEafLjsLPA= -go.uber.org/ratelimit v0.2.0/go.mod h1:YYBV4e4naJvhpitQrWJu1vCpgB7CboMe0qhltKt6mUg= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.18.1/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= -go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= -go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1177,8 +1098,8 @@ golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw= -golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 h1:vr/HnozRka3pE4EsMEg1lgkXJkTFJCVUX+S/ZT6wYzM= -golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842/go.mod h1:XtvwrStGgqGPLc4cjQfWqZHG1YFdYs6swckp8vpsjnc= +golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY= +golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1399,7 +1320,6 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1407,8 +1327,8 @@ golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.23.0 h1:YfKFowiIMvtgl1UERQoTPPToxltDeZfbj4H7dVUCwmM= -golang.org/x/sys v0.23.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg= +golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -1552,8 +1472,8 @@ google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.180.0 h1:M2D87Yo0rGBPWpo1orwfCLehUUL6E7/TYe5gvMQWDh4= -google.golang.org/api v0.180.0/go.mod h1:51AiyoEg1MJPSZ9zvklA8VnRILPXxn1iVen9v25XHAE= +google.golang.org/api v0.186.0 h1:n2OPp+PPXX0Axh4GuSsL5QL8xQCTb2oDwyzPnQvqUug= +google.golang.org/api v0.186.0/go.mod h1:hvRbBmgoje49RV3xqVXrmP6w93n6ehGgIVPYrGtBFFc= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1669,10 +1589,10 @@ google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqw google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda h1:wu/KJm9KJwpfHWhkkZGohVC6KRrc1oJNr4jwtQMOQXw= -google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda/go.mod h1:g2LLCvCeCSir/JJSWosk19BR4NVxGqHUC6rxIRsd7Aw= -google.golang.org/genproto/googleapis/api v0.0.0-20240610135401-a8a62080eff3 h1:QW9+G6Fir4VcRXVH8x3LilNAb6cxBGLa6+GM4hRwexE= -google.golang.org/genproto/googleapis/api v0.0.0-20240610135401-a8a62080eff3/go.mod h1:kdrSS/OiLkPrNUpzD4aHgCq2rVuC/YRxok32HXZ4vRE= +google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 h1:6whtk83KtD3FkGrVb2hFXuQ+ZMbCNdakARIn/aHMmG8= +google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094/go.mod h1:Zs4wYw8z1zr6RNF4cwYb31mvN/EGaKAdQjNCF3DW6K4= +google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d h1:Aqf0fiIdUQEj0Gn9mKFFXoQfTTEaNopWpfVyYADxiSg= +google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Od4k8V1LQSizPRUK4OzZ7TBE/20k+jPczUDAEyvn69Y= google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 h1:SbSDUWW1PAO24TNpLdeheoYPd7kllICcLU52x6eD4kQ= google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= @@ -1786,8 +1706,6 @@ pgregory.net/rapid v1.1.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -rsc.io/tmplfunc v0.0.3 h1:53XFQh69AfOa8Tw0Jm7t+GV7KZhOi6jzsCzTtKbMvzU= -rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY= diff --git a/proto/nolus/feerefunder/genesis.proto b/proto/nolus/feerefunder/genesis.proto index f5f94265..6e2d7e46 100644 --- a/proto/nolus/feerefunder/genesis.proto +++ b/proto/nolus/feerefunder/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package neutron.feerefunder; +package nolus.feerefunder; import "gogoproto/gogo.proto"; -import "neutron/feerefunder/fee.proto"; -import "neutron/feerefunder/params.proto"; +import "nolus/feerefunder/fee.proto"; +import "nolus/feerefunder/params.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types"; diff --git a/proto/nolus/feerefunder/params.proto b/proto/nolus/feerefunder/params.proto index fdf1d023..4c0a7bac 100644 --- a/proto/nolus/feerefunder/params.proto +++ b/proto/nolus/feerefunder/params.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package neutron.feerefunder; +package nolus.feerefunder; import "gogoproto/gogo.proto"; -import "neutron/feerefunder/fee.proto"; +import "nolus/feerefunder/fee.proto"; option go_package = "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types"; diff --git a/testutil/contractmanager/network/network.go b/testutil/contractmanager/network/network.go index 9d256b6a..f8f2698a 100644 --- a/testutil/contractmanager/network/network.go +++ b/testutil/contractmanager/network/network.go @@ -58,7 +58,7 @@ func DefaultConfig() network.Config { app.ModuleBasics[genutiltypes.ModuleName] = genutil.AppModuleBasic{} app.ModuleBasics[stakingtypes.ModuleName] = staking.AppModuleBasic{} - encoding := app.MakeEncodingConfig() + encoding := app.MakeEncodingConfig(app.ModuleBasics) chainID := "chain-" + tmrand.NewRand().Str(6) return network.Config{ Codec: encoding.Marshaler, diff --git a/testutil/interchainqueries/network/network.go b/testutil/interchainqueries/network/network.go index 92bac3b3..31510e78 100644 --- a/testutil/interchainqueries/network/network.go +++ b/testutil/interchainqueries/network/network.go @@ -58,7 +58,7 @@ func DefaultConfig() network.Config { app.ModuleBasics[genutiltypes.ModuleName] = genutil.AppModuleBasic{} app.ModuleBasics[stakingtypes.ModuleName] = staking.AppModuleBasic{} - encoding := app.MakeEncodingConfig() + encoding := app.MakeEncodingConfig(app.ModuleBasics) chainID := "chain-" + tmrand.NewRand().Str(6) return network.Config{ Codec: encoding.Marshaler, diff --git a/third_party/proto/buf.gen.gogo.yaml b/third_party/proto/buf.gen.gogo.yaml new file mode 100644 index 00000000..9c8ba0a4 --- /dev/null +++ b/third_party/proto/buf.gen.gogo.yaml @@ -0,0 +1,8 @@ +version: v1 +plugins: + - name: gocosmos + out: .. + opt: plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types + - name: grpc-gateway + out: .. + opt: logtostderr=true,allow_colon_final_segments=true diff --git a/third_party/proto/buf.gen.swagger.yaml b/third_party/proto/buf.gen.swagger.yaml new file mode 100644 index 00000000..d0f7535b --- /dev/null +++ b/third_party/proto/buf.gen.swagger.yaml @@ -0,0 +1,5 @@ +version: v1 +plugins: + - name: swagger + out: ../tmp-swagger-gen + opt: logtostderr=true,fqn_for_swagger_name=true,simple_operation_ids=true diff --git a/third_party/proto/buf.lock b/third_party/proto/buf.lock new file mode 100644 index 00000000..1e11d034 --- /dev/null +++ b/third_party/proto/buf.lock @@ -0,0 +1,23 @@ +# Generated by buf. DO NOT EDIT. +version: v1 +deps: + - remote: buf.build + owner: cosmos + repository: cosmos-proto + commit: 1935555c206d4afb9e94615dfd0fad31 + - remote: buf.build + owner: cosmos + repository: cosmos-sdk + commit: 2aa7ff2b23df473a85b7a7fe1884105d + - remote: buf.build + owner: cosmos + repository: gogo-proto + commit: 34d970b699f84aa382f3c29773a60836 + - remote: buf.build + owner: cosmos + repository: ics23 + commit: 55085f7c710a45f58fa09947208eb70b + - remote: buf.build + owner: googleapis + repository: googleapis + commit: 8d7204855ec14631a499bd7393ce1970 diff --git a/third_party/proto/buf.yaml b/third_party/proto/buf.yaml new file mode 100644 index 00000000..7d7a8315 --- /dev/null +++ b/third_party/proto/buf.yaml @@ -0,0 +1,24 @@ +version: v1 +name: buf.build/cosmos/ibc +deps: + # TODO: update sdk buf dependency when v0.50.0 is tagged and pushed to BSR + # see: (https://github.com/cosmos/cosmos-sdk/tree/main/proto#sdk-x-buf) + - buf.build/cosmos/cosmos-sdk:v0.50.0 + - buf.build/cosmos/cosmos-proto:1935555c206d4afb9e94615dfd0fad31 + - buf.build/cosmos/gogo-proto:a14993478f40695898ed8a86931094b6656e8a5d + - buf.build/googleapis/googleapis:8d7204855ec14631a499bd7393ce1970 + - buf.build/cosmos/ics23:b1abd8678aab07165efd453c96796a179eb3131f +breaking: + use: + - FILE +lint: + use: + - DEFAULT + - COMMENTS + - FILE_LOWER_SNAKE_CASE + except: + - UNARY_RPC + - COMMENT_FIELD + - SERVICE_SUFFIX + - PACKAGE_VERSION_SUFFIX + - RPC_REQUEST_STANDARD_NAME diff --git a/third_party/proto/ibc/applications/transfer/v1/authz.proto b/third_party/proto/ibc/applications/transfer/v1/authz.proto new file mode 100644 index 00000000..e7561b07 --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v1/authz.proto @@ -0,0 +1,34 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; + +// Allocation defines the spend limit for a particular port and channel +message Allocation { + // the port on which the packet will be sent + string source_port = 1; + // the channel by which the packet will be sent + string source_channel = 2; + // spend limitation on the channel + repeated cosmos.base.v1beta1.Coin spend_limit = 3 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + // allow list of receivers, an empty allow list permits any receiver address + repeated string allow_list = 4; + // allow list of packet data keys, an empty list prohibits all packet data keys; + // a list only with "*" permits any packet data key + repeated string allowed_packet_data = 5; +} + +// TransferAuthorization allows the grantee to spend up to spend_limit coins from +// the granter's account for ibc transfer on a specific channel +message TransferAuthorization { + option (cosmos_proto.implements_interface) = "cosmos.authz.v1beta1.Authorization"; + + // port and channel amounts + repeated Allocation allocations = 1 [(gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/applications/transfer/v1/genesis.proto b/third_party/proto/ibc/applications/transfer/v1/genesis.proto new file mode 100644 index 00000000..f7d707f6 --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v1/genesis.proto @@ -0,0 +1,20 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +import "ibc/applications/transfer/v1/transfer.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "gogoproto/gogo.proto"; + +// GenesisState defines the ibc-transfer genesis state +message GenesisState { + string port_id = 1; + repeated DenomTrace denom_traces = 2 [(gogoproto.castrepeated) = "Traces", (gogoproto.nullable) = false]; + Params params = 3 [(gogoproto.nullable) = false]; + // total_escrowed contains the total amount of tokens escrowed + // by the transfer module + repeated cosmos.base.v1beta1.Coin total_escrowed = 4 + [(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/applications/transfer/v1/query.proto b/third_party/proto/ibc/applications/transfer/v1/query.proto new file mode 100644 index 00000000..78829671 --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v1/query.proto @@ -0,0 +1,121 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v1; + +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; +import "ibc/applications/transfer/v1/transfer.proto"; +import "google/api/annotations.proto"; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +// Query provides defines the gRPC querier service. +service Query { + // DenomTraces queries all denomination traces. + rpc DenomTraces(QueryDenomTracesRequest) returns (QueryDenomTracesResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/denom_traces"; + } + + // DenomTrace queries a denomination trace information. + rpc DenomTrace(QueryDenomTraceRequest) returns (QueryDenomTraceResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/denom_traces/{hash=**}"; + } + + // Params queries all parameters of the ibc-transfer module. + rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/params"; + } + + // DenomHash queries a denomination hash information. + rpc DenomHash(QueryDenomHashRequest) returns (QueryDenomHashResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/denom_hashes/{trace=**}"; + } + + // EscrowAddress returns the escrow address for a particular port and channel id. + rpc EscrowAddress(QueryEscrowAddressRequest) returns (QueryEscrowAddressResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/channels/{channel_id}/ports/{port_id}/escrow_address"; + } + + // TotalEscrowForDenom returns the total amount of tokens in escrow based on the denom. + rpc TotalEscrowForDenom(QueryTotalEscrowForDenomRequest) returns (QueryTotalEscrowForDenomResponse) { + option (google.api.http).get = "/ibc/apps/transfer/v1/denoms/{denom=**}/total_escrow"; + } +} + +// QueryDenomTraceRequest is the request type for the Query/DenomTrace RPC +// method +message QueryDenomTraceRequest { + // hash (in hex format) or denom (full denom with ibc prefix) of the denomination trace information. + string hash = 1; +} + +// QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC +// method. +message QueryDenomTraceResponse { + // denom_trace returns the requested denomination trace information. + DenomTrace denom_trace = 1; +} + +// QueryConnectionsRequest is the request type for the Query/DenomTraces RPC +// method +message QueryDenomTracesRequest { + // pagination defines an optional pagination for the request. + cosmos.base.query.v1beta1.PageRequest pagination = 1; +} + +// QueryConnectionsResponse is the response type for the Query/DenomTraces RPC +// method. +message QueryDenomTracesResponse { + // denom_traces returns all denominations trace information. + repeated DenomTrace denom_traces = 1 [(gogoproto.castrepeated) = "Traces", (gogoproto.nullable) = false]; + // pagination defines the pagination in the response. + cosmos.base.query.v1beta1.PageResponse pagination = 2; +} + +// 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; +} + +// QueryDenomHashRequest is the request type for the Query/DenomHash RPC +// method +message QueryDenomHashRequest { + // The denomination trace ([port_id]/[channel_id])+/[denom] + string trace = 1; +} + +// QueryDenomHashResponse is the response type for the Query/DenomHash RPC +// method. +message QueryDenomHashResponse { + // hash (in hex format) of the denomination trace information. + string hash = 1; +} + +// QueryEscrowAddressRequest is the request type for the EscrowAddress RPC method. +message QueryEscrowAddressRequest { + // unique port identifier + string port_id = 1; + // unique channel identifier + string channel_id = 2; +} + +// QueryEscrowAddressResponse is the response type of the EscrowAddress RPC method. +message QueryEscrowAddressResponse { + // the escrow account address + string escrow_address = 1; +} + +// QueryTotalEscrowForDenomRequest is the request type for TotalEscrowForDenom RPC method. +message QueryTotalEscrowForDenomRequest { + string denom = 1; +} + +// QueryTotalEscrowForDenomResponse is the response type for TotalEscrowForDenom RPC method. +message QueryTotalEscrowForDenomResponse { + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/applications/transfer/v1/transfer.proto b/third_party/proto/ibc/applications/transfer/v1/transfer.proto new file mode 100644 index 00000000..7f772376 --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v1/transfer.proto @@ -0,0 +1,28 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +// DenomTrace contains the base denomination for ICS20 fungible tokens and the +// source tracing information path. +message DenomTrace { + // path defines the chain of port/channel identifiers used for tracing the + // source of the fungible token. + string path = 1; + // base denomination of the relayed fungible token. + string base_denom = 2; +} + +// Params defines the set of IBC transfer parameters. +// NOTE: To prevent a single token from being transferred, set the +// TransfersEnabled parameter to true and then set the bank module's SendEnabled +// parameter for the denomination to false. +message Params { + // send_enabled enables or disables all cross-chain token transfers from this + // chain. + bool send_enabled = 1; + // receive_enabled enables or disables all cross-chain token transfers to this + // chain. + bool receive_enabled = 2; +} diff --git a/third_party/proto/ibc/applications/transfer/v1/tx.proto b/third_party/proto/ibc/applications/transfer/v1/tx.proto new file mode 100644 index 00000000..42c70d3b --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v1/tx.proto @@ -0,0 +1,79 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +import "amino/amino.proto"; +import "gogoproto/gogo.proto"; +import "cosmos/msg/v1/msg.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "ibc/core/client/v1/client.proto"; +import "ibc/applications/transfer/v1/transfer.proto"; + +// Msg defines the ibc/transfer Msg service. +service Msg { + option (cosmos.msg.v1.service) = true; + + // Transfer defines a rpc handler method for MsgTransfer. + rpc Transfer(MsgTransfer) returns (MsgTransferResponse); + + // UpdateParams defines a rpc handler for MsgUpdateParams. + rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse); +} + +// MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between +// ICS20 enabled chains. See ICS Spec here: +// https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures +message MsgTransfer { + option (amino.name) = "cosmos-sdk/MsgTransfer"; + option (cosmos.msg.v1.signer) = "sender"; + + option (gogoproto.goproto_getters) = false; + + // the port on which the packet will be sent + string source_port = 1; + // the channel by which the packet will be sent + string source_channel = 2; + // the tokens to be transferred + cosmos.base.v1beta1.Coin token = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + // the sender address + string sender = 4; + // the recipient address on the destination chain + string receiver = 5; + // Timeout height relative to the current block height. + // The timeout is disabled when set to 0. + ibc.core.client.v1.Height timeout_height = 6 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + // Timeout timestamp in absolute nanoseconds since unix epoch. + // The timeout is disabled when set to 0. + uint64 timeout_timestamp = 7; + // optional memo + string memo = 8; +} + +// MsgTransferResponse defines the Msg/Transfer response type. +message MsgTransferResponse { + option (gogoproto.goproto_getters) = false; + + // sequence number of the transfer packet sent + uint64 sequence = 1; +} + +// MsgUpdateParams is the Msg/UpdateParams request type. +message MsgUpdateParams { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + // signer address + string signer = 1; + + // params defines the transfer parameters to update. + // + // NOTE: All parameters must be supplied. + Params params = 2 [(gogoproto.nullable) = false]; +} + +// MsgUpdateParamsResponse defines the response structure for executing a +// MsgUpdateParams message. +message MsgUpdateParamsResponse {} \ No newline at end of file diff --git a/third_party/proto/ibc/applications/transfer/v2/packet.proto b/third_party/proto/ibc/applications/transfer/v2/packet.proto new file mode 100644 index 00000000..bff35bdd --- /dev/null +++ b/third_party/proto/ibc/applications/transfer/v2/packet.proto @@ -0,0 +1,21 @@ +syntax = "proto3"; + +package ibc.applications.transfer.v2; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; + +// FungibleTokenPacketData defines a struct for the packet payload +// See FungibleTokenPacketData spec: +// https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures +message FungibleTokenPacketData { + // the token denomination to be transferred + string denom = 1; + // the token amount to be transferred + string amount = 2; + // the sender address + string sender = 3; + // the recipient address on the destination chain + string receiver = 4; + // optional memo + string memo = 5; +} diff --git a/third_party/proto/ibc/core/channel/v1/channel.proto b/third_party/proto/ibc/core/channel/v1/channel.proto new file mode 100644 index 00000000..05a18fef --- /dev/null +++ b/third_party/proto/ibc/core/channel/v1/channel.proto @@ -0,0 +1,187 @@ +syntax = "proto3"; + +package ibc.core.channel.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/client/v1/client.proto"; + +// Channel defines pipeline for exactly-once packet delivery between specific +// modules on separate blockchains, which has at least one end capable of +// sending packets and one end capable of receiving packets. +message Channel { + option (gogoproto.goproto_getters) = false; + + // current state of the channel end + State state = 1; + // whether the channel is ordered or unordered + Order ordering = 2; + // counterparty channel end + Counterparty counterparty = 3 [(gogoproto.nullable) = false]; + // list of connection identifiers, in order, along which packets sent on + // this channel will travel + repeated string connection_hops = 4; + // opaque channel version, which is agreed upon during the handshake + string version = 5; + // upgrade sequence indicates the latest upgrade attempt performed by this channel + // the value of 0 indicates the channel has never been upgraded + uint64 upgrade_sequence = 6; +} + +// IdentifiedChannel defines a channel with additional port and channel +// identifier fields. +message IdentifiedChannel { + option (gogoproto.goproto_getters) = false; + + // current state of the channel end + State state = 1; + // whether the channel is ordered or unordered + Order ordering = 2; + // counterparty channel end + Counterparty counterparty = 3 [(gogoproto.nullable) = false]; + // list of connection identifiers, in order, along which packets sent on + // this channel will travel + repeated string connection_hops = 4; + // opaque channel version, which is agreed upon during the handshake + string version = 5; + // port identifier + string port_id = 6; + // channel identifier + string channel_id = 7; + // upgrade sequence indicates the latest upgrade attempt performed by this channel + // the value of 0 indicates the channel has never been upgraded + uint64 upgrade_sequence = 8; +} + +// State defines if a channel is in one of the following states: +// CLOSED, INIT, TRYOPEN, OPEN, FLUSHING, FLUSHCOMPLETE or UNINITIALIZED. +enum State { + option (gogoproto.goproto_enum_prefix) = false; + + // Default State + STATE_UNINITIALIZED_UNSPECIFIED = 0 [(gogoproto.enumvalue_customname) = "UNINITIALIZED"]; + // A channel has just started the opening handshake. + STATE_INIT = 1 [(gogoproto.enumvalue_customname) = "INIT"]; + // A channel has acknowledged the handshake step on the counterparty chain. + STATE_TRYOPEN = 2 [(gogoproto.enumvalue_customname) = "TRYOPEN"]; + // A channel has completed the handshake. Open channels are + // ready to send and receive packets. + STATE_OPEN = 3 [(gogoproto.enumvalue_customname) = "OPEN"]; + // A channel has been closed and can no longer be used to send or receive + // packets. + STATE_CLOSED = 4 [(gogoproto.enumvalue_customname) = "CLOSED"]; + // A channel has just accepted the upgrade handshake attempt and is flushing in-flight packets. + STATE_FLUSHING = 5 [(gogoproto.enumvalue_customname) = "FLUSHING"]; + // A channel has just completed flushing any in-flight packets. + STATE_FLUSHCOMPLETE = 6 [(gogoproto.enumvalue_customname) = "FLUSHCOMPLETE"]; +} + +// Order defines if a channel is ORDERED or UNORDERED +enum Order { + option (gogoproto.goproto_enum_prefix) = false; + + // zero-value for channel ordering + ORDER_NONE_UNSPECIFIED = 0 [(gogoproto.enumvalue_customname) = "NONE"]; + // packets can be delivered in any order, which may differ from the order in + // which they were sent. + ORDER_UNORDERED = 1 [(gogoproto.enumvalue_customname) = "UNORDERED"]; + // packets are delivered exactly in the order which they were sent + ORDER_ORDERED = 2 [(gogoproto.enumvalue_customname) = "ORDERED"]; +} + +// Counterparty defines a channel end counterparty +message Counterparty { + option (gogoproto.goproto_getters) = false; + + // port on the counterparty chain which owns the other end of the channel. + string port_id = 1; + // channel end on the counterparty chain + string channel_id = 2; +} + +// Packet defines a type that carries data across different chains through IBC +message Packet { + option (gogoproto.goproto_getters) = false; + + // number corresponds to the order of sends and receives, where a Packet + // with an earlier sequence number must be sent and received before a Packet + // with a later sequence number. + uint64 sequence = 1; + // identifies the port on the sending chain. + string source_port = 2; + // identifies the channel end on the sending chain. + string source_channel = 3; + // identifies the port on the receiving chain. + string destination_port = 4; + // identifies the channel end on the receiving chain. + string destination_channel = 5; + // actual opaque bytes transferred directly to the application module + bytes data = 6; + // block height after which the packet times out + ibc.core.client.v1.Height timeout_height = 7 [(gogoproto.nullable) = false]; + // block timestamp (in nanoseconds) after which the packet times out + uint64 timeout_timestamp = 8; +} + +// PacketState defines the generic type necessary to retrieve and store +// packet commitments, acknowledgements, and receipts. +// Caller is responsible for knowing the context necessary to interpret this +// state as a commitment, acknowledgement, or a receipt. +message PacketState { + option (gogoproto.goproto_getters) = false; + + // channel port identifier. + string port_id = 1; + // channel unique identifier. + string channel_id = 2; + // packet sequence. + uint64 sequence = 3; + // embedded data that represents packet state. + bytes data = 4; +} + +// PacketId is an identifer for a unique Packet +// Source chains refer to packets by source port/channel +// Destination chains refer to packets by destination port/channel +message PacketId { + option (gogoproto.goproto_getters) = false; + + // channel port identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // packet sequence + uint64 sequence = 3; +} + +// Acknowledgement is the recommended acknowledgement format to be used by +// app-specific protocols. +// NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental +// conflicts with other protobuf message formats used for acknowledgements. +// The first byte of any message with this format will be the non-ASCII values +// `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS: +// https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope +message Acknowledgement { + // response contains either a result or an error and must be non-empty + oneof response { + bytes result = 21; + string error = 22; + } +} + +// Timeout defines an execution deadline structure for 04-channel handlers. +// This includes packet lifecycle handlers as well as the upgrade handshake handlers. +// A valid Timeout contains either one or both of a timestamp and block height (sequence). +message Timeout { + // block height after which the packet or upgrade times out + ibc.core.client.v1.Height height = 1 [(gogoproto.nullable) = false]; + // block timestamp (in nanoseconds) after which the packet or upgrade times out + uint64 timestamp = 2; +} + +// Params defines the set of IBC channel parameters. +message Params { + // the relative timeout after which channel upgrades will time out. + Timeout upgrade_timeout = 1 [(gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/core/channel/v1/genesis.proto b/third_party/proto/ibc/core/channel/v1/genesis.proto new file mode 100644 index 00000000..665b2b15 --- /dev/null +++ b/third_party/proto/ibc/core/channel/v1/genesis.proto @@ -0,0 +1,30 @@ +syntax = "proto3"; + +package ibc.core.channel.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/channel/v1/channel.proto"; + +// GenesisState defines the ibc channel submodule's genesis state. +message GenesisState { + repeated IdentifiedChannel channels = 1 [(gogoproto.casttype) = "IdentifiedChannel", (gogoproto.nullable) = false]; + repeated PacketState acknowledgements = 2 [(gogoproto.nullable) = false]; + repeated PacketState commitments = 3 [(gogoproto.nullable) = false]; + repeated PacketState receipts = 4 [(gogoproto.nullable) = false]; + repeated PacketSequence send_sequences = 5 [(gogoproto.nullable) = false]; + repeated PacketSequence recv_sequences = 6 [(gogoproto.nullable) = false]; + repeated PacketSequence ack_sequences = 7 [(gogoproto.nullable) = false]; + // the sequence for the next generated channel identifier + uint64 next_channel_sequence = 8; + Params params = 9 [(gogoproto.nullable) = false]; +} + +// PacketSequence defines the genesis type necessary to retrieve and store +// next send and receive sequences. +message PacketSequence { + string port_id = 1; + string channel_id = 2; + uint64 sequence = 3; +} diff --git a/third_party/proto/ibc/core/channel/v1/query.proto b/third_party/proto/ibc/core/channel/v1/query.proto new file mode 100644 index 00000000..f89d2127 --- /dev/null +++ b/third_party/proto/ibc/core/channel/v1/query.proto @@ -0,0 +1,459 @@ +syntax = "proto3"; + +package ibc.core.channel.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; + +import "ibc/core/client/v1/client.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; +import "ibc/core/channel/v1/channel.proto"; +import "google/api/annotations.proto"; +import "google/protobuf/any.proto"; +import "gogoproto/gogo.proto"; +import "ibc/core/channel/v1/upgrade.proto"; + +// Query provides defines the gRPC querier service +service Query { + // Channel queries an IBC Channel. + rpc Channel(QueryChannelRequest) returns (QueryChannelResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}"; + } + + // Channels queries all the IBC channels of a chain. + rpc Channels(QueryChannelsRequest) returns (QueryChannelsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels"; + } + + // ConnectionChannels queries all the channels associated with a connection + // end. + rpc ConnectionChannels(QueryConnectionChannelsRequest) returns (QueryConnectionChannelsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/connections/{connection}/channels"; + } + + // ChannelClientState queries for the client state for the channel associated + // with the provided channel identifiers. + rpc ChannelClientState(QueryChannelClientStateRequest) returns (QueryChannelClientStateResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/client_state"; + } + + // ChannelConsensusState queries for the consensus state for the channel + // associated with the provided channel identifiers. + rpc ChannelConsensusState(QueryChannelConsensusStateRequest) returns (QueryChannelConsensusStateResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/consensus_state/revision/" + "{revision_number}/height/{revision_height}"; + } + + // PacketCommitment queries a stored packet commitment hash. + rpc PacketCommitment(QueryPacketCommitmentRequest) returns (QueryPacketCommitmentResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/" + "packet_commitments/{sequence}"; + } + + // PacketCommitments returns all the packet commitments hashes associated + // with a channel. + rpc PacketCommitments(QueryPacketCommitmentsRequest) returns (QueryPacketCommitmentsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/packet_commitments"; + } + + // PacketReceipt queries if a given packet sequence has been received on the + // queried chain + rpc PacketReceipt(QueryPacketReceiptRequest) returns (QueryPacketReceiptResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/packet_receipts/{sequence}"; + } + + // PacketAcknowledgement queries a stored packet acknowledgement hash. + rpc PacketAcknowledgement(QueryPacketAcknowledgementRequest) returns (QueryPacketAcknowledgementResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/packet_acks/{sequence}"; + } + + // PacketAcknowledgements returns all the packet acknowledgements associated + // with a channel. + rpc PacketAcknowledgements(QueryPacketAcknowledgementsRequest) returns (QueryPacketAcknowledgementsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/packet_acknowledgements"; + } + + // UnreceivedPackets returns all the unreceived IBC packets associated with a + // channel and sequences. + rpc UnreceivedPackets(QueryUnreceivedPacketsRequest) returns (QueryUnreceivedPacketsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/" + "packet_commitments/" + "{packet_commitment_sequences}/unreceived_packets"; + } + + // UnreceivedAcks returns all the unreceived IBC acknowledgements associated + // with a channel and sequences. + rpc UnreceivedAcks(QueryUnreceivedAcksRequest) returns (QueryUnreceivedAcksResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/packet_commitments/" + "{packet_ack_sequences}/unreceived_acks"; + } + + // NextSequenceReceive returns the next receive sequence for a given channel. + rpc NextSequenceReceive(QueryNextSequenceReceiveRequest) returns (QueryNextSequenceReceiveResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/next_sequence"; + } + + // NextSequenceSend returns the next send sequence for a given channel. + rpc NextSequenceSend(QueryNextSequenceSendRequest) returns (QueryNextSequenceSendResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/next_sequence_send"; + } + + // UpgradeError returns the error receipt if the upgrade handshake failed. + rpc UpgradeError(QueryUpgradeErrorRequest) returns (QueryUpgradeErrorResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/upgrade_error"; + } + + // Upgrade returns the upgrade for a given port and channel id. + rpc Upgrade(QueryUpgradeRequest) returns (QueryUpgradeResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/channels/{channel_id}/" + "ports/{port_id}/upgrade"; + } + + // ChannelParams queries all parameters of the ibc channel submodule. + rpc ChannelParams(QueryChannelParamsRequest) returns (QueryChannelParamsResponse) { + option (google.api.http).get = "/ibc/core/channel/v1/params"; + } +} + +// QueryChannelRequest is the request type for the Query/Channel RPC method +message QueryChannelRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; +} + +// QueryChannelResponse is the response type for the Query/Channel RPC method. +// Besides the Channel end, it includes a proof and the height from which the +// proof was retrieved. +message QueryChannelResponse { + // channel associated with the request identifiers + ibc.core.channel.v1.Channel channel = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryChannelsRequest is the request type for the Query/Channels RPC method +message QueryChannelsRequest { + // pagination request + cosmos.base.query.v1beta1.PageRequest pagination = 1; +} + +// QueryChannelsResponse is the response type for the Query/Channels RPC method. +message QueryChannelsResponse { + // list of stored channels of the chain. + repeated ibc.core.channel.v1.IdentifiedChannel channels = 1; + // pagination response + cosmos.base.query.v1beta1.PageResponse pagination = 2; + // query block height + ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; +} + +// QueryConnectionChannelsRequest is the request type for the +// Query/QueryConnectionChannels RPC method +message QueryConnectionChannelsRequest { + // connection unique identifier + string connection = 1; + // pagination request + cosmos.base.query.v1beta1.PageRequest pagination = 2; +} + +// QueryConnectionChannelsResponse is the Response type for the +// Query/QueryConnectionChannels RPC method +message QueryConnectionChannelsResponse { + // list of channels associated with a connection. + repeated ibc.core.channel.v1.IdentifiedChannel channels = 1; + // pagination response + cosmos.base.query.v1beta1.PageResponse pagination = 2; + // query block height + ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; +} + +// QueryChannelClientStateRequest is the request type for the Query/ClientState +// RPC method +message QueryChannelClientStateRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; +} + +// QueryChannelClientStateResponse is the Response type for the +// Query/QueryChannelClientState RPC method +message QueryChannelClientStateResponse { + // client state associated with the channel + ibc.core.client.v1.IdentifiedClientState identified_client_state = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryChannelConsensusStateRequest is the request type for the +// Query/ConsensusState RPC method +message QueryChannelConsensusStateRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // revision number of the consensus state + uint64 revision_number = 3; + // revision height of the consensus state + uint64 revision_height = 4; +} + +// QueryChannelClientStateResponse is the Response type for the +// Query/QueryChannelClientState RPC method +message QueryChannelConsensusStateResponse { + // consensus state associated with the channel + google.protobuf.Any consensus_state = 1; + // client ID associated with the consensus state + string client_id = 2; + // merkle proof of existence + bytes proof = 3; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; +} + +// QueryPacketCommitmentRequest is the request type for the +// Query/PacketCommitment RPC method +message QueryPacketCommitmentRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // packet sequence + uint64 sequence = 3; +} + +// QueryPacketCommitmentResponse defines the client query response for a packet +// which also includes a proof and the height from which the proof was +// retrieved +message QueryPacketCommitmentResponse { + // packet associated with the request fields + bytes commitment = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryPacketCommitmentsRequest is the request type for the +// Query/QueryPacketCommitments RPC method +message QueryPacketCommitmentsRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // pagination request + cosmos.base.query.v1beta1.PageRequest pagination = 3; +} + +// QueryPacketCommitmentsResponse is the request type for the +// Query/QueryPacketCommitments RPC method +message QueryPacketCommitmentsResponse { + repeated ibc.core.channel.v1.PacketState commitments = 1; + // pagination response + cosmos.base.query.v1beta1.PageResponse pagination = 2; + // query block height + ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; +} + +// QueryPacketReceiptRequest is the request type for the +// Query/PacketReceipt RPC method +message QueryPacketReceiptRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // packet sequence + uint64 sequence = 3; +} + +// QueryPacketReceiptResponse defines the client query response for a packet +// receipt which also includes a proof, and the height from which the proof was +// retrieved +message QueryPacketReceiptResponse { + // success flag for if receipt exists + bool received = 2; + // merkle proof of existence + bytes proof = 3; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; +} + +// QueryPacketAcknowledgementRequest is the request type for the +// Query/PacketAcknowledgement RPC method +message QueryPacketAcknowledgementRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // packet sequence + uint64 sequence = 3; +} + +// QueryPacketAcknowledgementResponse defines the client query response for a +// packet which also includes a proof and the height from which the +// proof was retrieved +message QueryPacketAcknowledgementResponse { + // packet associated with the request fields + bytes acknowledgement = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryPacketAcknowledgementsRequest is the request type for the +// Query/QueryPacketCommitments RPC method +message QueryPacketAcknowledgementsRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // pagination request + cosmos.base.query.v1beta1.PageRequest pagination = 3; + // list of packet sequences + repeated uint64 packet_commitment_sequences = 4; +} + +// QueryPacketAcknowledgemetsResponse is the request type for the +// Query/QueryPacketAcknowledgements RPC method +message QueryPacketAcknowledgementsResponse { + repeated ibc.core.channel.v1.PacketState acknowledgements = 1; + // pagination response + cosmos.base.query.v1beta1.PageResponse pagination = 2; + // query block height + ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; +} + +// QueryUnreceivedPacketsRequest is the request type for the +// Query/UnreceivedPackets RPC method +message QueryUnreceivedPacketsRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // list of packet sequences + repeated uint64 packet_commitment_sequences = 3; +} + +// QueryUnreceivedPacketsResponse is the response type for the +// Query/UnreceivedPacketCommitments RPC method +message QueryUnreceivedPacketsResponse { + // list of unreceived packet sequences + repeated uint64 sequences = 1; + // query block height + ibc.core.client.v1.Height height = 2 [(gogoproto.nullable) = false]; +} + +// QueryUnreceivedAcks is the request type for the +// Query/UnreceivedAcks RPC method +message QueryUnreceivedAcksRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; + // list of acknowledgement sequences + repeated uint64 packet_ack_sequences = 3; +} + +// QueryUnreceivedAcksResponse is the response type for the +// Query/UnreceivedAcks RPC method +message QueryUnreceivedAcksResponse { + // list of unreceived acknowledgement sequences + repeated uint64 sequences = 1; + // query block height + ibc.core.client.v1.Height height = 2 [(gogoproto.nullable) = false]; +} + +// QueryNextSequenceReceiveRequest is the request type for the +// Query/QueryNextSequenceReceiveRequest RPC method +message QueryNextSequenceReceiveRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; +} + +// QuerySequenceResponse is the response type for the +// Query/QueryNextSequenceReceiveResponse RPC method +message QueryNextSequenceReceiveResponse { + // next sequence receive number + uint64 next_sequence_receive = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryNextSequenceSendRequest is the request type for the +// Query/QueryNextSequenceSend RPC method +message QueryNextSequenceSendRequest { + // port unique identifier + string port_id = 1; + // channel unique identifier + string channel_id = 2; +} + +// QueryNextSequenceSendResponse is the request type for the +// Query/QueryNextSequenceSend RPC method +message QueryNextSequenceSendResponse { + // next sequence send number + uint64 next_sequence_send = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryUpgradeErrorRequest is the request type for the Query/QueryUpgradeError RPC method +message QueryUpgradeErrorRequest { + string port_id = 1; + string channel_id = 2; +} + +// QueryUpgradeErrorResponse is the response type for the Query/QueryUpgradeError RPC method +message QueryUpgradeErrorResponse { + ErrorReceipt error_receipt = 1 [(gogoproto.nullable) = false]; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryUpgradeRequest is the request type for the QueryUpgradeRequest RPC method +message QueryUpgradeRequest { + string port_id = 1; + string channel_id = 2; +} + +// QueryUpgradeResponse is the response type for the QueryUpgradeResponse RPC method +message QueryUpgradeResponse { + Upgrade upgrade = 1 [(gogoproto.nullable) = false]; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryChannelParamsRequest is the request type for the Query/ChannelParams RPC method. +message QueryChannelParamsRequest {} + +// QueryChannelParamsResponse is the response type for the Query/ChannelParams RPC method. +message QueryChannelParamsResponse { + // params defines the parameters of the module. + Params params = 1; +} \ No newline at end of file diff --git a/third_party/proto/ibc/core/channel/v1/tx.proto b/third_party/proto/ibc/core/channel/v1/tx.proto new file mode 100644 index 00000000..3f30e8b8 --- /dev/null +++ b/third_party/proto/ibc/core/channel/v1/tx.proto @@ -0,0 +1,469 @@ +syntax = "proto3"; + +package ibc.core.channel.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; + +import "gogoproto/gogo.proto"; +import "cosmos/msg/v1/msg.proto"; +import "ibc/core/client/v1/client.proto"; +import "ibc/core/channel/v1/channel.proto"; +import "ibc/core/channel/v1/upgrade.proto"; + +// Msg defines the ibc/channel Msg service. +service Msg { + option (cosmos.msg.v1.service) = true; + + // ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit. + rpc ChannelOpenInit(MsgChannelOpenInit) returns (MsgChannelOpenInitResponse); + + // ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry. + rpc ChannelOpenTry(MsgChannelOpenTry) returns (MsgChannelOpenTryResponse); + + // ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck. + rpc ChannelOpenAck(MsgChannelOpenAck) returns (MsgChannelOpenAckResponse); + + // ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm. + rpc ChannelOpenConfirm(MsgChannelOpenConfirm) returns (MsgChannelOpenConfirmResponse); + + // ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit. + rpc ChannelCloseInit(MsgChannelCloseInit) returns (MsgChannelCloseInitResponse); + + // ChannelCloseConfirm defines a rpc handler method for + // MsgChannelCloseConfirm. + rpc ChannelCloseConfirm(MsgChannelCloseConfirm) returns (MsgChannelCloseConfirmResponse); + + // RecvPacket defines a rpc handler method for MsgRecvPacket. + rpc RecvPacket(MsgRecvPacket) returns (MsgRecvPacketResponse); + + // Timeout defines a rpc handler method for MsgTimeout. + rpc Timeout(MsgTimeout) returns (MsgTimeoutResponse); + + // TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose. + rpc TimeoutOnClose(MsgTimeoutOnClose) returns (MsgTimeoutOnCloseResponse); + + // Acknowledgement defines a rpc handler method for MsgAcknowledgement. + rpc Acknowledgement(MsgAcknowledgement) returns (MsgAcknowledgementResponse); + + // ChannelUpgradeInit defines a rpc handler method for MsgChannelUpgradeInit. + rpc ChannelUpgradeInit(MsgChannelUpgradeInit) returns (MsgChannelUpgradeInitResponse); + + // ChannelUpgradeTry defines a rpc handler method for MsgChannelUpgradeTry. + rpc ChannelUpgradeTry(MsgChannelUpgradeTry) returns (MsgChannelUpgradeTryResponse); + + // ChannelUpgradeAck defines a rpc handler method for MsgChannelUpgradeAck. + rpc ChannelUpgradeAck(MsgChannelUpgradeAck) returns (MsgChannelUpgradeAckResponse); + + // ChannelUpgradeConfirm defines a rpc handler method for MsgChannelUpgradeConfirm. + rpc ChannelUpgradeConfirm(MsgChannelUpgradeConfirm) returns (MsgChannelUpgradeConfirmResponse); + + // ChannelUpgradeOpen defines a rpc handler method for MsgChannelUpgradeOpen. + rpc ChannelUpgradeOpen(MsgChannelUpgradeOpen) returns (MsgChannelUpgradeOpenResponse); + + // ChannelUpgradeTimeout defines a rpc handler method for MsgChannelUpgradeTimeout. + rpc ChannelUpgradeTimeout(MsgChannelUpgradeTimeout) returns (MsgChannelUpgradeTimeoutResponse); + + // ChannelUpgradeCancel defines a rpc handler method for MsgChannelUpgradeCancel. + rpc ChannelUpgradeCancel(MsgChannelUpgradeCancel) returns (MsgChannelUpgradeCancelResponse); + + // UpdateChannelParams defines a rpc handler method for MsgUpdateParams. + rpc UpdateChannelParams(MsgUpdateParams) returns (MsgUpdateParamsResponse); + + // PruneAcknowledgements defines a rpc handler method for MsgPruneAcknowledgements. + rpc PruneAcknowledgements(MsgPruneAcknowledgements) returns (MsgPruneAcknowledgementsResponse); +} + +// ResponseResultType defines the possible outcomes of the execution of a message +enum ResponseResultType { + option (gogoproto.goproto_enum_prefix) = false; + + // Default zero value enumeration + RESPONSE_RESULT_TYPE_UNSPECIFIED = 0 [(gogoproto.enumvalue_customname) = "UNSPECIFIED"]; + // The message did not call the IBC application callbacks (because, for example, the packet had already been relayed) + RESPONSE_RESULT_TYPE_NOOP = 1 [(gogoproto.enumvalue_customname) = "NOOP"]; + // The message was executed successfully + RESPONSE_RESULT_TYPE_SUCCESS = 2 [(gogoproto.enumvalue_customname) = "SUCCESS"]; + // The message was executed unsuccessfully + RESPONSE_RESULT_TYPE_FAILURE = 3 [(gogoproto.enumvalue_customname) = "FAILURE"]; +} + +// MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It +// is called by a relayer on Chain A. +message MsgChannelOpenInit { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + Channel channel = 2 [(gogoproto.nullable) = false]; + string signer = 3; +} + +// MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. +message MsgChannelOpenInitResponse { + option (gogoproto.goproto_getters) = false; + + string channel_id = 1; + string version = 2; +} + +// MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel +// on Chain B. The version field within the Channel field has been deprecated. Its +// value will be ignored by core IBC. +message MsgChannelOpenTry { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + // Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC. + string previous_channel_id = 2 [deprecated = true]; + // NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC. + Channel channel = 3 [(gogoproto.nullable) = false]; + string counterparty_version = 4; + bytes proof_init = 5; + ibc.core.client.v1.Height proof_height = 6 [(gogoproto.nullable) = false]; + string signer = 7; +} + +// MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. +message MsgChannelOpenTryResponse { + option (gogoproto.goproto_getters) = false; + + string version = 1; + string channel_id = 2; +} + +// MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge +// the change of channel state to TRYOPEN on Chain B. +// WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel +// in the same block as executing this message otherwise the counterparty will +// be incapable of opening. +message MsgChannelOpenAck { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + string counterparty_channel_id = 3; + string counterparty_version = 4; + bytes proof_try = 5; + ibc.core.client.v1.Height proof_height = 6 [(gogoproto.nullable) = false]; + string signer = 7; +} + +// MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. +message MsgChannelOpenAckResponse {} + +// MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to +// acknowledge the change of channel state to OPEN on Chain A. +message MsgChannelOpenConfirm { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + bytes proof_ack = 3; + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; + string signer = 5; +} + +// MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response +// type. +message MsgChannelOpenConfirmResponse {} + +// MsgChannelCloseInit defines a msg sent by a Relayer to Chain A +// to close a channel with Chain B. +message MsgChannelCloseInit { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + string signer = 3; +} + +// MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. +message MsgChannelCloseInitResponse {} + +// MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B +// to acknowledge the change of channel state to CLOSED on Chain A. +message MsgChannelCloseConfirm { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + bytes proof_init = 3; + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; + string signer = 5; + uint64 counterparty_upgrade_sequence = 6; +} + +// MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response +// type. +message MsgChannelCloseConfirmResponse {} + +// MsgRecvPacket receives incoming IBC packet +message MsgRecvPacket { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + Packet packet = 1 [(gogoproto.nullable) = false]; + bytes proof_commitment = 2; + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; + string signer = 4; +} + +// MsgRecvPacketResponse defines the Msg/RecvPacket response type. +message MsgRecvPacketResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgTimeout receives timed-out packet +message MsgTimeout { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + Packet packet = 1 [(gogoproto.nullable) = false]; + bytes proof_unreceived = 2; + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; + uint64 next_sequence_recv = 4; + string signer = 5; +} + +// MsgTimeoutResponse defines the Msg/Timeout response type. +message MsgTimeoutResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgTimeoutOnClose timed-out packet upon counterparty channel closure. +message MsgTimeoutOnClose { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + Packet packet = 1 [(gogoproto.nullable) = false]; + bytes proof_unreceived = 2; + bytes proof_close = 3; + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; + uint64 next_sequence_recv = 5; + string signer = 6; + uint64 counterparty_upgrade_sequence = 7; +} + +// MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. +message MsgTimeoutOnCloseResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgAcknowledgement receives incoming IBC acknowledgement +message MsgAcknowledgement { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + Packet packet = 1 [(gogoproto.nullable) = false]; + bytes acknowledgement = 2; + bytes proof_acked = 3; + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; + string signer = 5; +} + +// MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. +message MsgAcknowledgementResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc +// WARNING: Initializing a channel upgrade in the same block as opening the channel +// may result in the counterparty being incapable of opening. +message MsgChannelUpgradeInit { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + UpgradeFields fields = 3 [(gogoproto.nullable) = false]; + string signer = 4; +} + +// MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type +message MsgChannelUpgradeInitResponse { + option (gogoproto.goproto_getters) = false; + + Upgrade upgrade = 1 [(gogoproto.nullable) = false]; + uint64 upgrade_sequence = 2; +} + +// MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc +message MsgChannelUpgradeTry { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + repeated string proposed_upgrade_connection_hops = 3; + UpgradeFields counterparty_upgrade_fields = 4 [(gogoproto.nullable) = false]; + uint64 counterparty_upgrade_sequence = 5; + bytes proof_channel = 6; + bytes proof_upgrade = 7; + ibc.core.client.v1.Height proof_height = 8 [(gogoproto.nullable) = false]; + string signer = 9; +} + +// MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type +message MsgChannelUpgradeTryResponse { + option (gogoproto.goproto_getters) = false; + + Upgrade upgrade = 1 [(gogoproto.nullable) = false]; + uint64 upgrade_sequence = 2; + ResponseResultType result = 3; +} + +// MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc +message MsgChannelUpgradeAck { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + string port_id = 1; + string channel_id = 2; + Upgrade counterparty_upgrade = 3 [(gogoproto.nullable) = false]; + bytes proof_channel = 4; + bytes proof_upgrade = 5; + ibc.core.client.v1.Height proof_height = 6 [(gogoproto.nullable) = false]; + string signer = 7; +} + +// MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type +message MsgChannelUpgradeAckResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc +message MsgChannelUpgradeConfirm { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + string port_id = 1; + string channel_id = 2; + State counterparty_channel_state = 3; + Upgrade counterparty_upgrade = 4 [(gogoproto.nullable) = false]; + bytes proof_channel = 5; + bytes proof_upgrade = 6; + ibc.core.client.v1.Height proof_height = 7 [(gogoproto.nullable) = false]; + string signer = 8; +} + +// MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type +message MsgChannelUpgradeConfirmResponse { + option (gogoproto.goproto_getters) = false; + + ResponseResultType result = 1; +} + +// MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc +message MsgChannelUpgradeOpen { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + string port_id = 1; + string channel_id = 2; + State counterparty_channel_state = 3; + uint64 counterparty_upgrade_sequence = 4; + bytes proof_channel = 5; + ibc.core.client.v1.Height proof_height = 6 [(gogoproto.nullable) = false]; + string signer = 7; +} + +// MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type +message MsgChannelUpgradeOpenResponse {} + +// MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc +message MsgChannelUpgradeTimeout { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + Channel counterparty_channel = 3 [(gogoproto.nullable) = false]; + bytes proof_channel = 4; + ibc.core.client.v1.Height proof_height = 5 [(gogoproto.nullable) = false]; + string signer = 6; +} + +// MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type +message MsgChannelUpgradeTimeoutResponse {} + +// MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc +message MsgChannelUpgradeCancel { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + ErrorReceipt error_receipt = 3 [(gogoproto.nullable) = false]; + bytes proof_error_receipt = 4; + ibc.core.client.v1.Height proof_height = 5 [(gogoproto.nullable) = false]; + string signer = 6; +} + +// MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type +message MsgChannelUpgradeCancelResponse {} + +// MsgUpdateParams is the MsgUpdateParams request type. +message MsgUpdateParams { + option (cosmos.msg.v1.signer) = "authority"; + + option (gogoproto.goproto_getters) = false; + + // authority is the address that controls the module (defaults to x/gov unless overwritten). + string authority = 1; + + // params defines the channel parameters to update. + // + // NOTE: All parameters must be supplied. + Params params = 2 [(gogoproto.nullable) = false]; +} + +// MsgUpdateParamsResponse defines the MsgUpdateParams response type. +message MsgUpdateParamsResponse {} + +// MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. +message MsgPruneAcknowledgements { + option (cosmos.msg.v1.signer) = "signer"; + option (gogoproto.goproto_getters) = false; + + string port_id = 1; + string channel_id = 2; + uint64 limit = 3; + string signer = 4; +} + +// MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. +message MsgPruneAcknowledgementsResponse { + // Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). + uint64 total_pruned_sequences = 1; + // Number of sequences left after pruning. + uint64 total_remaining_sequences = 2; +} diff --git a/third_party/proto/ibc/core/channel/v1/upgrade.proto b/third_party/proto/ibc/core/channel/v1/upgrade.proto new file mode 100644 index 00000000..81530ed2 --- /dev/null +++ b/third_party/proto/ibc/core/channel/v1/upgrade.proto @@ -0,0 +1,43 @@ +syntax = "proto3"; + +package ibc.core.channel.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/channel/v1/channel.proto"; + +// Upgrade is a verifiable type which contains the relevant information +// for an attempted upgrade. It provides the proposed changes to the channel +// end, the timeout for this upgrade attempt and the next packet sequence +// which allows the counterparty to efficiently know the highest sequence it has received. +// The next sequence send is used for pruning and upgrading from unordered to ordered channels. +message Upgrade { + option (gogoproto.goproto_getters) = false; + + UpgradeFields fields = 1 [(gogoproto.nullable) = false]; + Timeout timeout = 2 [(gogoproto.nullable) = false]; + uint64 next_sequence_send = 3; +} + +// UpgradeFields are the fields in a channel end which may be changed +// during a channel upgrade. +message UpgradeFields { + option (gogoproto.goproto_getters) = false; + + Order ordering = 1; + repeated string connection_hops = 2; + string version = 3; +} + +// ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the +// upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the +// next sequence. +message ErrorReceipt { + option (gogoproto.goproto_getters) = false; + + // the channel upgrade sequence + uint64 sequence = 1; + // the error message detailing the cause of failure + string message = 2; +} diff --git a/third_party/proto/ibc/core/client/v1/client.proto b/third_party/proto/ibc/core/client/v1/client.proto new file mode 100644 index 00000000..7a09e360 --- /dev/null +++ b/third_party/proto/ibc/core/client/v1/client.proto @@ -0,0 +1,113 @@ +syntax = "proto3"; + +package ibc.core.client.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"; + +import "cosmos/upgrade/v1beta1/upgrade.proto"; +import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; +import "google/protobuf/any.proto"; + +// IdentifiedClientState defines a client state with an additional client +// identifier field. +message IdentifiedClientState { + // client identifier + string client_id = 1; + // client state + google.protobuf.Any client_state = 2; +} + +// ConsensusStateWithHeight defines a consensus state with an additional height +// field. +message ConsensusStateWithHeight { + // consensus state height + Height height = 1 [(gogoproto.nullable) = false]; + // consensus state + google.protobuf.Any consensus_state = 2; +} + +// ClientConsensusStates defines all the stored consensus states for a given +// client. +message ClientConsensusStates { + // client identifier + string client_id = 1; + // consensus states and their heights associated with the client + repeated ConsensusStateWithHeight consensus_states = 2 [(gogoproto.nullable) = false]; +} + +// Height is a monotonically increasing data type +// that can be compared against another Height for the purposes of updating and +// freezing clients +// +// Normally the RevisionHeight is incremented at each height while keeping +// RevisionNumber the same. However some consensus algorithms may choose to +// reset the height in certain conditions e.g. hard forks, state-machine +// breaking changes In these cases, the RevisionNumber is incremented so that +// height continues to be monitonically increasing even as the RevisionHeight +// gets reset +message Height { + option (gogoproto.goproto_getters) = false; + option (gogoproto.goproto_stringer) = false; + + // the revision that the client is currently on + uint64 revision_number = 1; + // the height within the given revision + uint64 revision_height = 2; +} + +// Params defines the set of IBC light client parameters. +message Params { + // allowed_clients defines the list of allowed client state types which can be created + // and interacted with. If a client type is removed from the allowed clients list, usage + // of this client will be disabled until it is added again to the list. + repeated string allowed_clients = 1; +} + +// ClientUpdateProposal is a legacy governance proposal. If it passes, the substitute +// client's latest consensus state is copied over to the subject client. The proposal +// handler may fail if the subject and the substitute do not match in client and +// chain parameters (with exception to latest height, frozen height, and chain-id). +// +// Deprecated: Please use MsgRecoverClient in favour of this message type. +message ClientUpdateProposal { + option deprecated = true; + + option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; + option (gogoproto.goproto_getters) = false; + + // the title of the update proposal + string title = 1; + // the description of the proposal + string description = 2; + // the client identifier for the client to be updated if the proposal passes + string subject_client_id = 3 [(gogoproto.moretags) = "yaml:\"subject_client_id\""]; + // the substitute client identifier for the client standing in for the subject + // client + string substitute_client_id = 4 [(gogoproto.moretags) = "yaml:\"substitute_client_id\""]; +} + +// UpgradeProposal is a gov Content type for initiating an IBC breaking +// upgrade. +// +// Deprecated: Please use MsgIBCSoftwareUpgrade in favour of this message type. +message UpgradeProposal { + option deprecated = true; + + option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; + option (gogoproto.goproto_getters) = false; + option (gogoproto.goproto_stringer) = false; + option (gogoproto.equal) = true; + + string title = 1; + string description = 2; + cosmos.upgrade.v1beta1.Plan plan = 3 [(gogoproto.nullable) = false]; + + // An UpgradedClientState must be provided to perform an IBC breaking upgrade. + // This will make the chain commit to the correct upgraded (self) client state + // before the upgrade occurs, so that connecting chains can verify that the + // new upgraded client is valid by verifying a proof on the previous version + // of the chain. This will allow IBC connections to persist smoothly across + // planned chain upgrades + google.protobuf.Any upgraded_client_state = 4 [(gogoproto.moretags) = "yaml:\"upgraded_client_state\""]; +} diff --git a/third_party/proto/ibc/core/client/v1/genesis.proto b/third_party/proto/ibc/core/client/v1/genesis.proto new file mode 100644 index 00000000..a16d5a70 --- /dev/null +++ b/third_party/proto/ibc/core/client/v1/genesis.proto @@ -0,0 +1,44 @@ +syntax = "proto3"; + +package ibc.core.client.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"; + +import "ibc/core/client/v1/client.proto"; +import "gogoproto/gogo.proto"; + +// GenesisState defines the ibc client submodule's genesis state. +message GenesisState { + // client states with their corresponding identifiers + repeated IdentifiedClientState clients = 1 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "IdentifiedClientStates"]; + // consensus states from each client + repeated ClientConsensusStates clients_consensus = 2 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "ClientsConsensusStates"]; + // metadata from each client + repeated IdentifiedGenesisMetadata clients_metadata = 3 [(gogoproto.nullable) = false]; + Params params = 4 [(gogoproto.nullable) = false]; + // Deprecated: create_localhost has been deprecated. + // The localhost client is automatically created at genesis. + bool create_localhost = 5 [deprecated = true]; + // the sequence for the next generated client identifier + uint64 next_client_sequence = 6; +} + +// GenesisMetadata defines the genesis type for metadata that clients may return +// with ExportMetadata +message GenesisMetadata { + option (gogoproto.goproto_getters) = false; + + // store key of metadata without clientID-prefix + bytes key = 1; + // metadata value + bytes value = 2; +} + +// IdentifiedGenesisMetadata has the client metadata with the corresponding +// client id. +message IdentifiedGenesisMetadata { + string client_id = 1; + repeated GenesisMetadata client_metadata = 2 [(gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/core/commitment/v1/commitment.proto b/third_party/proto/ibc/core/commitment/v1/commitment.proto new file mode 100644 index 00000000..b4753be2 --- /dev/null +++ b/third_party/proto/ibc/core/commitment/v1/commitment.proto @@ -0,0 +1,39 @@ +syntax = "proto3"; + +package ibc.core.commitment.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types"; + +import "gogoproto/gogo.proto"; +import "cosmos/ics23/v1/proofs.proto"; + +// MerkleRoot defines a merkle root hash. +// In the Cosmos SDK, the AppHash of a block header becomes the root. +message MerkleRoot { + option (gogoproto.goproto_getters) = false; + + bytes hash = 1; +} + +// MerklePrefix is merkle path prefixed to the key. +// The constructed key from the Path and the key will be append(Path.KeyPath, +// append(Path.KeyPrefix, key...)) +message MerklePrefix { + bytes key_prefix = 1; +} + +// MerklePath is the path used to verify commitment proofs, which can be an +// arbitrary structured object (defined by a commitment type). +// MerklePath is represented from root-to-leaf +message MerklePath { + repeated string key_path = 1; +} + +// MerkleProof is a wrapper type over a chain of CommitmentProofs. +// It demonstrates membership or non-membership for an element or set of +// elements, verifiable in conjunction with a known commitment root. Proofs +// should be succinct. +// MerkleProofs are ordered from leaf-to-root +message MerkleProof { + repeated cosmos.ics23.v1.CommitmentProof proofs = 1; +} diff --git a/third_party/proto/ibc/core/connection/v1/connection.proto b/third_party/proto/ibc/core/connection/v1/connection.proto new file mode 100644 index 00000000..852f3999 --- /dev/null +++ b/third_party/proto/ibc/core/connection/v1/connection.proto @@ -0,0 +1,114 @@ +syntax = "proto3"; + +package ibc.core.connection.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/commitment/v1/commitment.proto"; + +// ICS03 - Connection Data Structures as defined in +// https://github.com/cosmos/ibc/blob/master/spec/core/ics-003-connection-semantics#data-structures + +// ConnectionEnd defines a stateful object on a chain connected to another +// separate one. +// NOTE: there must only be 2 defined ConnectionEnds to establish +// a connection between two chains. +message ConnectionEnd { + option (gogoproto.goproto_getters) = false; + // client associated with this connection. + string client_id = 1; + // IBC version which can be utilised to determine encodings or protocols for + // channels or packets utilising this connection. + repeated Version versions = 2; + // current state of the connection end. + State state = 3; + // counterparty chain associated with this connection. + Counterparty counterparty = 4 [(gogoproto.nullable) = false]; + // delay period that must pass before a consensus state can be used for + // packet-verification NOTE: delay period logic is only implemented by some + // clients. + uint64 delay_period = 5; +} + +// IdentifiedConnection defines a connection with additional connection +// identifier field. +message IdentifiedConnection { + option (gogoproto.goproto_getters) = false; + // connection identifier. + string id = 1; + // client associated with this connection. + string client_id = 2; + // IBC version which can be utilised to determine encodings or protocols for + // channels or packets utilising this connection + repeated Version versions = 3; + // current state of the connection end. + State state = 4; + // counterparty chain associated with this connection. + Counterparty counterparty = 5 [(gogoproto.nullable) = false]; + // delay period associated with this connection. + uint64 delay_period = 6; +} + +// State defines if a connection is in one of the following states: +// INIT, TRYOPEN, OPEN or UNINITIALIZED. +enum State { + option (gogoproto.goproto_enum_prefix) = false; + + // Default State + STATE_UNINITIALIZED_UNSPECIFIED = 0 [(gogoproto.enumvalue_customname) = "UNINITIALIZED"]; + // A connection end has just started the opening handshake. + STATE_INIT = 1 [(gogoproto.enumvalue_customname) = "INIT"]; + // A connection end has acknowledged the handshake step on the counterparty + // chain. + STATE_TRYOPEN = 2 [(gogoproto.enumvalue_customname) = "TRYOPEN"]; + // A connection end has completed the handshake. + STATE_OPEN = 3 [(gogoproto.enumvalue_customname) = "OPEN"]; +} + +// Counterparty defines the counterparty chain associated with a connection end. +message Counterparty { + option (gogoproto.goproto_getters) = false; + + // identifies the client on the counterparty chain associated with a given + // connection. + string client_id = 1; + // identifies the connection end on the counterparty chain associated with a + // given connection. + string connection_id = 2; + // commitment merkle prefix of the counterparty chain. + ibc.core.commitment.v1.MerklePrefix prefix = 3 [(gogoproto.nullable) = false]; +} + +// ClientPaths define all the connection paths for a client state. +message ClientPaths { + // list of connection paths + repeated string paths = 1; +} + +// ConnectionPaths define all the connection paths for a given client state. +message ConnectionPaths { + // client state unique identifier + string client_id = 1; + // list of connection paths + repeated string paths = 2; +} + +// Version defines the versioning scheme used to negotiate the IBC verison in +// the connection handshake. +message Version { + option (gogoproto.goproto_getters) = false; + + // unique version identifier + string identifier = 1; + // list of features compatible with the specified identifier + repeated string features = 2; +} + +// Params defines the set of Connection parameters. +message Params { + // maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the + // largest amount of time that the chain might reasonably take to produce the next block under normal operating + // conditions. A safe choice is 3-5x the expected time per block. + uint64 max_expected_time_per_block = 1; +} diff --git a/third_party/proto/ibc/core/connection/v1/genesis.proto b/third_party/proto/ibc/core/connection/v1/genesis.proto new file mode 100644 index 00000000..a5eb6b3a --- /dev/null +++ b/third_party/proto/ibc/core/connection/v1/genesis.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; + +package ibc.core.connection.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/connection/v1/connection.proto"; + +// GenesisState defines the ibc connection submodule's genesis state. +message GenesisState { + repeated IdentifiedConnection connections = 1 [(gogoproto.nullable) = false]; + repeated ConnectionPaths client_connection_paths = 2 [(gogoproto.nullable) = false]; + // the sequence for the next generated connection identifier + uint64 next_connection_sequence = 3; + Params params = 4 [(gogoproto.nullable) = false]; +} diff --git a/third_party/proto/ibc/core/connection/v1/query.proto b/third_party/proto/ibc/core/connection/v1/query.proto new file mode 100644 index 00000000..c0f1a6f5 --- /dev/null +++ b/third_party/proto/ibc/core/connection/v1/query.proto @@ -0,0 +1,152 @@ +syntax = "proto3"; + +package ibc.core.connection.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"; + +import "gogoproto/gogo.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; +import "ibc/core/client/v1/client.proto"; +import "ibc/core/connection/v1/connection.proto"; +import "google/api/annotations.proto"; +import "google/protobuf/any.proto"; + +// Query provides defines the gRPC querier service +service Query { + // Connection queries an IBC connection end. + rpc Connection(QueryConnectionRequest) returns (QueryConnectionResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/connections/{connection_id}"; + } + + // Connections queries all the IBC connections of a chain. + rpc Connections(QueryConnectionsRequest) returns (QueryConnectionsResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/connections"; + } + + // ClientConnections queries the connection paths associated with a client + // state. + rpc ClientConnections(QueryClientConnectionsRequest) returns (QueryClientConnectionsResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/client_connections/{client_id}"; + } + + // ConnectionClientState queries the client state associated with the + // connection. + rpc ConnectionClientState(QueryConnectionClientStateRequest) returns (QueryConnectionClientStateResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/connections/{connection_id}/client_state"; + } + + // ConnectionConsensusState queries the consensus state associated with the + // connection. + rpc ConnectionConsensusState(QueryConnectionConsensusStateRequest) returns (QueryConnectionConsensusStateResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/connections/{connection_id}/consensus_state/" + "revision/{revision_number}/height/{revision_height}"; + } + + // ConnectionParams queries all parameters of the ibc connection submodule. + rpc ConnectionParams(QueryConnectionParamsRequest) returns (QueryConnectionParamsResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/params"; + } +} + +// QueryConnectionRequest is the request type for the Query/Connection RPC +// method +message QueryConnectionRequest { + // connection unique identifier + string connection_id = 1; +} + +// QueryConnectionResponse is the response type for the Query/Connection RPC +// method. Besides the connection end, it includes a proof and the height from +// which the proof was retrieved. +message QueryConnectionResponse { + // connection associated with the request identifier + ibc.core.connection.v1.ConnectionEnd connection = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryConnectionsRequest is the request type for the Query/Connections RPC +// method +message QueryConnectionsRequest { + cosmos.base.query.v1beta1.PageRequest pagination = 1; +} + +// QueryConnectionsResponse is the response type for the Query/Connections RPC +// method. +message QueryConnectionsResponse { + // list of stored connections of the chain. + repeated ibc.core.connection.v1.IdentifiedConnection connections = 1; + // pagination response + cosmos.base.query.v1beta1.PageResponse pagination = 2; + // query block height + ibc.core.client.v1.Height height = 3 [(gogoproto.nullable) = false]; +} + +// QueryClientConnectionsRequest is the request type for the +// Query/ClientConnections RPC method +message QueryClientConnectionsRequest { + // client identifier associated with a connection + string client_id = 1; +} + +// QueryClientConnectionsResponse is the response type for the +// Query/ClientConnections RPC method +message QueryClientConnectionsResponse { + // slice of all the connection paths associated with a client. + repeated string connection_paths = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was generated + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryConnectionClientStateRequest is the request type for the +// Query/ConnectionClientState RPC method +message QueryConnectionClientStateRequest { + // connection identifier + string connection_id = 1; +} + +// QueryConnectionClientStateResponse is the response type for the +// Query/ConnectionClientState RPC method +message QueryConnectionClientStateResponse { + // client state associated with the channel + ibc.core.client.v1.IdentifiedClientState identified_client_state = 1; + // merkle proof of existence + bytes proof = 2; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; +} + +// QueryConnectionConsensusStateRequest is the request type for the +// Query/ConnectionConsensusState RPC method +message QueryConnectionConsensusStateRequest { + // connection identifier + string connection_id = 1; + uint64 revision_number = 2; + uint64 revision_height = 3; +} + +// QueryConnectionConsensusStateResponse is the response type for the +// Query/ConnectionConsensusState RPC method +message QueryConnectionConsensusStateResponse { + // consensus state associated with the channel + google.protobuf.Any consensus_state = 1; + // client ID associated with the consensus state + string client_id = 2; + // merkle proof of existence + bytes proof = 3; + // height at which the proof was retrieved + ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; +} + +// QueryConnectionParamsRequest is the request type for the Query/ConnectionParams RPC method. +message QueryConnectionParamsRequest {} + +// QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method. +message QueryConnectionParamsResponse { + // params defines the parameters of the module. + Params params = 1; +} \ No newline at end of file diff --git a/third_party/proto/ibc/core/connection/v1/tx.proto b/third_party/proto/ibc/core/connection/v1/tx.proto new file mode 100644 index 00000000..3ba8ff45 --- /dev/null +++ b/third_party/proto/ibc/core/connection/v1/tx.proto @@ -0,0 +1,146 @@ +syntax = "proto3"; + +package ibc.core.connection.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"; + +import "gogoproto/gogo.proto"; +import "cosmos/msg/v1/msg.proto"; +import "google/protobuf/any.proto"; +import "ibc/core/client/v1/client.proto"; +import "ibc/core/connection/v1/connection.proto"; + +// Msg defines the ibc/connection Msg service. +service Msg { + option (cosmos.msg.v1.service) = true; + + // ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit. + rpc ConnectionOpenInit(MsgConnectionOpenInit) returns (MsgConnectionOpenInitResponse); + + // ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry. + rpc ConnectionOpenTry(MsgConnectionOpenTry) returns (MsgConnectionOpenTryResponse); + + // ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck. + rpc ConnectionOpenAck(MsgConnectionOpenAck) returns (MsgConnectionOpenAckResponse); + + // ConnectionOpenConfirm defines a rpc handler method for + // MsgConnectionOpenConfirm. + rpc ConnectionOpenConfirm(MsgConnectionOpenConfirm) returns (MsgConnectionOpenConfirmResponse); + + // UpdateConnectionParams defines a rpc handler method for + // MsgUpdateParams. + rpc UpdateConnectionParams(MsgUpdateParams) returns (MsgUpdateParamsResponse); +} + +// MsgConnectionOpenInit defines the msg sent by an account on Chain A to +// initialize a connection with Chain B. +message MsgConnectionOpenInit { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string client_id = 1; + Counterparty counterparty = 2 [(gogoproto.nullable) = false]; + Version version = 3; + uint64 delay_period = 4; + string signer = 5; +} + +// MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response +// type. +message MsgConnectionOpenInitResponse {} + +// MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a +// connection on Chain B. +message MsgConnectionOpenTry { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string client_id = 1; + // Deprecated: this field is unused. Crossing hellos are no longer supported in core IBC. + string previous_connection_id = 2 [deprecated = true]; + google.protobuf.Any client_state = 3; + Counterparty counterparty = 4 [(gogoproto.nullable) = false]; + uint64 delay_period = 5; + repeated Version counterparty_versions = 6; + ibc.core.client.v1.Height proof_height = 7 [(gogoproto.nullable) = false]; + // proof of the initialization the connection on Chain A: `UNITIALIZED -> + // INIT` + bytes proof_init = 8; + // proof of client state included in message + bytes proof_client = 9; + // proof of client consensus state + bytes proof_consensus = 10; + ibc.core.client.v1.Height consensus_height = 11 [(gogoproto.nullable) = false]; + string signer = 12; + // optional proof data for host state machines that are unable to introspect their own consensus state + bytes host_consensus_state_proof = 13; +} + +// MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type. +message MsgConnectionOpenTryResponse {} + +// MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to +// acknowledge the change of connection state to TRYOPEN on Chain B. +message MsgConnectionOpenAck { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string connection_id = 1; + string counterparty_connection_id = 2; + Version version = 3; + google.protobuf.Any client_state = 4; + ibc.core.client.v1.Height proof_height = 5 [(gogoproto.nullable) = false]; + // proof of the initialization the connection on Chain B: `UNITIALIZED -> + // TRYOPEN` + bytes proof_try = 6; + // proof of client state included in message + bytes proof_client = 7; + // proof of client consensus state + bytes proof_consensus = 8; + ibc.core.client.v1.Height consensus_height = 9 [(gogoproto.nullable) = false]; + string signer = 10; + // optional proof data for host state machines that are unable to introspect their own consensus state + bytes host_consensus_state_proof = 11; +} + +// MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type. +message MsgConnectionOpenAckResponse {} + +// MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to +// acknowledge the change of connection state to OPEN on Chain A. +message MsgConnectionOpenConfirm { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + string connection_id = 1; + // proof for the change of the connection state on Chain A: `INIT -> OPEN` + bytes proof_ack = 2; + ibc.core.client.v1.Height proof_height = 3 [(gogoproto.nullable) = false]; + string signer = 4; +} + +// MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm +// response type. +message MsgConnectionOpenConfirmResponse {} + +// MsgUpdateParams defines the sdk.Msg type to update the connection parameters. +message MsgUpdateParams { + option (cosmos.msg.v1.signer) = "signer"; + + option (gogoproto.goproto_getters) = false; + + // signer address + string signer = 1; + + // params defines the connection parameters to update. + // + // NOTE: All parameters must be supplied. + Params params = 2 [(gogoproto.nullable) = false]; +} + +// MsgUpdateParamsResponse defines the MsgUpdateParams response type. +message MsgUpdateParamsResponse {} \ No newline at end of file diff --git a/third_party/proto/ibc/core/types/v1/genesis.proto b/third_party/proto/ibc/core/types/v1/genesis.proto new file mode 100644 index 00000000..4b34f688 --- /dev/null +++ b/third_party/proto/ibc/core/types/v1/genesis.proto @@ -0,0 +1,20 @@ +syntax = "proto3"; + +package ibc.core.types.v1; + +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/types"; + +import "gogoproto/gogo.proto"; +import "ibc/core/client/v1/genesis.proto"; +import "ibc/core/connection/v1/genesis.proto"; +import "ibc/core/channel/v1/genesis.proto"; + +// GenesisState defines the ibc module's genesis state. +message GenesisState { + // ICS002 - Clients genesis state + ibc.core.client.v1.GenesisState client_genesis = 1 [(gogoproto.nullable) = false]; + // ICS003 - Connections genesis state + ibc.core.connection.v1.GenesisState connection_genesis = 2 [(gogoproto.nullable) = false]; + // ICS004 - Channel genesis state + ibc.core.channel.v1.GenesisState channel_genesis = 3 [(gogoproto.nullable) = false]; +} diff --git a/wasmbinding/bindings/msg.go b/wasmbinding/bindings/msg.go index ecc3807e..539c9a4c 100644 --- a/wasmbinding/bindings/msg.go +++ b/wasmbinding/bindings/msg.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramChange "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - feetypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" - icqtypes "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - transferwrappertypes "github.com/neutron-org/neutron/v4/x/transfer/types" + feetypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + icqtypes "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + transferwrappertypes "github.com/Nolus-Protocol/nolus-core/x/transfer/types" ) // ProtobufAny is a hack-struct to serialize protobuf Any message into JSON object. diff --git a/wasmbinding/bindings/query.go b/wasmbinding/bindings/query.go index 3b39a1b4..cd6aa7bb 100644 --- a/wasmbinding/bindings/query.go +++ b/wasmbinding/bindings/query.go @@ -3,15 +3,15 @@ package bindings import ( "encoding/json" - contractmanagertypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - feerefundertypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" + contractmanagertypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + feerefundertypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" sdktypes "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck - "github.com/neutron-org/neutron/v4/x/interchainqueries/types" + "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" ) // NeutronQuery contains neutron custom queries. diff --git a/wasmbinding/queries.go b/wasmbinding/queries.go index 56ecf0d5..332ebec2 100644 --- a/wasmbinding/queries.go +++ b/wasmbinding/queries.go @@ -9,9 +9,9 @@ import ( errorsmod "cosmossdk.io/errors" - contractmanagertypes "github.com/neutron-org/neutron/v4/x/contractmanager/types" - "github.com/neutron-org/neutron/v4/x/interchainqueries/types" - icatypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" + contractmanagertypes "github.com/Nolus-Protocol/nolus-core/x/contractmanager/types" + "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/types" + icatypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" ) func (qp *QueryPlugin) GetInterchainQueryResult(ctx sdk.Context, queryID uint64) (*bindings.QueryRegisteredQueryResultResponse, error) { diff --git a/wasmbinding/test/custom_message_test.go b/wasmbinding/test/custom_message_test.go index 5f7faa93..7ebb18db 100644 --- a/wasmbinding/test/custom_message_test.go +++ b/wasmbinding/test/custom_message_test.go @@ -11,7 +11,7 @@ package test // "github.com/stretchr/testify/suite" -// ictxtypes "github.com/neutron-org/neutron/v4/x/interchaintxs/types" +// ictxtypes "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/types" // "github.com/CosmWasm/wasmd/x/wasm/keeper" // "github.com/CosmWasm/wasmvm/v2/types" @@ -23,10 +23,10 @@ package test // "github.com/Nolus-Protocol/nolus-core/testutil" // "github.com/Nolus-Protocol/nolus-core/wasmbinding" // "github.com/Nolus-Protocol/nolus-core/wasmbinding/bindings" -// contractmanagerkeeper "github.com/neutron-org/neutron/v4/x/contractmanager/keeper" -// feetypes "github.com/neutron-org/neutron/v4/x/feerefunder/types" -// icqkeeper "github.com/neutron-org/neutron/v4/x/interchainqueries/keeper" -// ictxkeeper "github.com/neutron-org/neutron/v4/x/interchaintxs/keeper" +// contractmanagerkeeper "github.com/Nolus-Protocol/nolus-core/x/contractmanager/keeper" +// feetypes "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" +// icqkeeper "github.com/Nolus-Protocol/nolus-core/x/interchainqueries/keeper" +// ictxkeeper "github.com/Nolus-Protocol/nolus-core/x/interchaintxs/keeper" // ) // const FeeCollectorAddress = "nolus1vguuxez2h5ekltfj9gjd62fs5k4rl2zy5hfrncasykzw08rezpfsd2rhm7" diff --git a/x/contractmanager/types/failure.pb.go b/x/contractmanager/types/failure.pb.go index 108230c3..1e9b6cd0 100644 --- a/x/contractmanager/types/failure.pb.go +++ b/x/contractmanager/types/failure.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/failure.proto +// source: nolus/contractmanager/failure.proto package types import ( fmt "fmt" + proto "github.com/cosmos/gogoproto/proto" + _ "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" - - proto "github.com/cosmos/gogoproto/proto" - _ "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // Reference imports to suppress errors if they are not otherwise used. @@ -43,7 +42,7 @@ func (m *Failure) Reset() { *m = Failure{} } func (m *Failure) String() string { return proto.CompactTextString(m) } func (*Failure) ProtoMessage() {} func (*Failure) Descriptor() ([]byte, []int) { - return fileDescriptor_fba0c26e85dad46e, []int{0} + return fileDescriptor_8194f8f21626ae21, []int{0} } func (m *Failure) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -101,31 +100,31 @@ func (m *Failure) GetError() string { } func init() { - proto.RegisterType((*Failure)(nil), "neutron.contractmanager.Failure") + proto.RegisterType((*Failure)(nil), "nolus.contractmanager.Failure") } func init() { - proto.RegisterFile("neutron/contractmanager/failure.proto", fileDescriptor_fba0c26e85dad46e) + proto.RegisterFile("nolus/contractmanager/failure.proto", fileDescriptor_8194f8f21626ae21) } -var fileDescriptor_fba0c26e85dad46e = []byte{ - // 248 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcd, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, - 0x4c, 0x4f, 0x2d, 0xd2, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x12, 0x87, 0x2a, 0xd3, 0x43, 0x53, 0x26, 0xa5, 0x98, 0x99, 0x94, 0xac, 0x9f, 0x9c, - 0x5f, 0x94, 0xaa, 0x9f, 0x9c, 0x91, 0x98, 0x97, 0x97, 0x9a, 0xa3, 0x5f, 0x66, 0x08, 0x63, 0x42, - 0xf4, 0x2a, 0xe5, 0x70, 0xb1, 0xbb, 0x41, 0x0c, 0x13, 0x92, 0xe0, 0x62, 0x4f, 0x4c, 0x49, 0x29, - 0x4a, 0x2d, 0x2e, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0x71, 0x85, 0xf8, 0xb8, 0x98, - 0x32, 0x53, 0x24, 0x98, 0x14, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, 0x14, 0xb9, 0x78, - 0x8a, 0x4b, 0x53, 0xf2, 0xe3, 0x0b, 0x12, 0x2b, 0x73, 0xf2, 0x13, 0x53, 0x24, 0x98, 0x15, 0x18, - 0x35, 0x78, 0x82, 0xb8, 0x41, 0x62, 0x01, 0x10, 0x21, 0x21, 0x11, 0x2e, 0xd6, 0xd4, 0xa2, 0xa2, - 0xfc, 0x22, 0x09, 0x16, 0xb0, 0x51, 0x10, 0x8e, 0x53, 0xf0, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, - 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, - 0x1e, 0xcb, 0x31, 0x44, 0x59, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, - 0x43, 0xbd, 0xa3, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x99, 0xe8, 0x57, 0x60, 0x04, 0x43, - 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x27, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x5c, 0xc6, 0x5f, 0x6f, 0x2e, 0x01, 0x00, 0x00, +var fileDescriptor_8194f8f21626ae21 = []byte{ + // 251 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xce, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, + 0x2d, 0xd2, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, + 0x12, 0x05, 0x2b, 0xd2, 0x43, 0x53, 0x24, 0xa5, 0x98, 0x99, 0x94, 0xac, 0x9f, 0x9c, 0x5f, 0x94, + 0xaa, 0x9f, 0x9c, 0x91, 0x98, 0x97, 0x97, 0x9a, 0xa3, 0x5f, 0x66, 0x08, 0x63, 0x42, 0x74, 0x2a, + 0xe5, 0x70, 0xb1, 0xbb, 0x41, 0x8c, 0x12, 0x92, 0xe0, 0x62, 0x4f, 0x4c, 0x49, 0x29, 0x4a, 0x2d, + 0x2e, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0x71, 0x85, 0xf8, 0xb8, 0x98, 0x32, 0x53, + 0x24, 0x98, 0x14, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, 0x14, 0xb9, 0x78, 0x8a, 0x4b, + 0x53, 0xf2, 0xe3, 0x0b, 0x12, 0x2b, 0x73, 0xf2, 0x13, 0x53, 0x24, 0x98, 0x15, 0x18, 0x35, 0x78, + 0x82, 0xb8, 0x41, 0x62, 0x01, 0x10, 0x21, 0x21, 0x11, 0x2e, 0xd6, 0xd4, 0xa2, 0xa2, 0xfc, 0x22, + 0x09, 0x16, 0xb0, 0x51, 0x10, 0x8e, 0x53, 0xd8, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, + 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, + 0x31, 0x44, 0xd9, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xfb, 0x81, + 0x3c, 0xa3, 0x1b, 0x00, 0x72, 0x5f, 0x72, 0x7e, 0x8e, 0x3e, 0xd8, 0x6f, 0xba, 0x60, 0x6f, 0x54, + 0x60, 0x84, 0x43, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x33, 0xc6, 0x80, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x77, 0xd1, 0x22, 0xa3, 0x2d, 0x01, 0x00, 0x00, } func (m *Failure) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/genesis.pb.go b/x/contractmanager/types/genesis.pb.go index 198452ee..9336af9e 100644 --- a/x/contractmanager/types/genesis.pb.go +++ b/x/contractmanager/types/genesis.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/genesis.proto +// source: nolus/contractmanager/genesis.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -35,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_cf4a1534315a7490, []int{0} + return fileDescriptor_c303ccf6e024dadf, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -79,31 +78,31 @@ func (m *GenesisState) GetFailuresList() []Failure { } func init() { - proto.RegisterType((*GenesisState)(nil), "neutron.contractmanager.GenesisState") + proto.RegisterType((*GenesisState)(nil), "nolus.contractmanager.GenesisState") } func init() { - proto.RegisterFile("neutron/contractmanager/genesis.proto", fileDescriptor_cf4a1534315a7490) + proto.RegisterFile("nolus/contractmanager/genesis.proto", fileDescriptor_c303ccf6e024dadf) } -var fileDescriptor_cf4a1534315a7490 = []byte{ - // 251 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcd, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, - 0x4c, 0x4f, 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x12, 0x87, 0x2a, 0xd3, 0x43, 0x53, 0x26, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, - 0xa3, 0x0f, 0x62, 0x41, 0x94, 0x4b, 0xe1, 0x34, 0x35, 0x2d, 0x31, 0x33, 0xa7, 0xb4, 0x28, 0x15, - 0xaa, 0x4c, 0x05, 0x97, 0xb2, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0xdd, 0x4a, 0xb3, 0x18, 0xb9, - 0x78, 0xdc, 0x21, 0xae, 0x09, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0xb2, 0xe5, 0x62, 0x83, 0x28, 0x90, - 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd7, 0xc3, 0xe1, 0x3a, 0xbd, 0x00, 0xb0, 0x32, 0x27, - 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x9a, 0x84, 0xbc, 0xb9, 0x78, 0xa1, 0xce, 0x28, 0x8e, - 0xcf, 0xc9, 0x2c, 0x2e, 0x91, 0x60, 0x52, 0x60, 0xd6, 0xe0, 0x36, 0x52, 0xc0, 0x69, 0x8a, 0x1b, - 0x44, 0x35, 0xd4, 0x18, 0x1e, 0x98, 0x66, 0x9f, 0xcc, 0xe2, 0x12, 0xa7, 0xe0, 0x13, 0x8f, 0xe4, - 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, - 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xb2, 0x4c, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, - 0xce, 0xcf, 0xd5, 0x87, 0x9a, 0xac, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x99, 0xe8, 0x57, - 0x60, 0x78, 0xbc, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x71, 0x63, 0x40, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x2d, 0x60, 0xd9, 0xc7, 0x9d, 0x01, 0x00, 0x00, +var fileDescriptor_c303ccf6e024dadf = []byte{ + // 256 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xce, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, + 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, + 0x12, 0x05, 0x2b, 0xd2, 0x43, 0x53, 0x24, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa1, 0x0f, + 0x62, 0x41, 0x14, 0x4b, 0xe1, 0x30, 0x31, 0x2d, 0x31, 0x33, 0xa7, 0xb4, 0x28, 0x15, 0xaa, 0x48, + 0x09, 0xbb, 0xa2, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0xad, 0x4a, 0xd3, 0x18, 0xb9, 0x78, 0xdc, + 0x21, 0xee, 0x08, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0xb2, 0xe6, 0x62, 0x83, 0x28, 0x90, 0x60, 0x54, + 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd5, 0xc3, 0xea, 0x2e, 0xbd, 0x00, 0xb0, 0x22, 0x27, 0x96, 0x13, + 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x5a, 0x84, 0x3c, 0xb9, 0x78, 0xa1, 0x4e, 0x28, 0x8e, 0xcf, 0xc9, + 0x2c, 0x2e, 0x91, 0x60, 0x52, 0x60, 0xd6, 0xe0, 0x36, 0x92, 0xc3, 0x61, 0x86, 0x1b, 0x44, 0x2d, + 0xd4, 0x10, 0x1e, 0x98, 0x56, 0x9f, 0xcc, 0xe2, 0x12, 0xa7, 0xb0, 0x13, 0x8f, 0xe4, 0x18, 0x2f, + 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, + 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xb2, 0x49, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, + 0xd5, 0xf7, 0x03, 0x99, 0xab, 0x1b, 0x00, 0xf2, 0x4a, 0x72, 0x7e, 0x8e, 0x3e, 0xd8, 0x1a, 0xdd, + 0xe4, 0xfc, 0xa2, 0x54, 0xfd, 0x0a, 0x0c, 0x7f, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, + 0xfd, 0x6d, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x1c, 0xaa, 0xa8, 0xe3, 0x94, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/params.pb.go b/x/contractmanager/types/params.pb.go index 2ca0e44c..73013616 100644 --- a/x/contractmanager/types/params.pb.go +++ b/x/contractmanager/types/params.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/params.proto +// source: nolus/contractmanager/params.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -32,7 +31,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_121b05e48c7a8737, []int{0} + return fileDescriptor_6133ea05f9b5711d, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -69,28 +68,29 @@ func (m *Params) GetSudoCallGasLimit() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "neutron.contractmanager.Params") + proto.RegisterType((*Params)(nil), "nolus.contractmanager.Params") } func init() { - proto.RegisterFile("neutron/contractmanager/params.proto", fileDescriptor_121b05e48c7a8737) + proto.RegisterFile("nolus/contractmanager/params.proto", fileDescriptor_6133ea05f9b5711d) } -var fileDescriptor_121b05e48c7a8737 = []byte{ - // 204 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, - 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x87, 0xaa, 0xd2, 0x43, 0x53, 0x25, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa3, - 0x0f, 0x62, 0x41, 0x94, 0x2b, 0xd9, 0x72, 0xb1, 0x05, 0x80, 0xb5, 0x0b, 0xe9, 0x72, 0x09, 0x17, - 0x97, 0xa6, 0xe4, 0xc7, 0x27, 0x27, 0xe6, 0xe4, 0xc4, 0xa7, 0x27, 0x16, 0xc7, 0xe7, 0x64, 0xe6, - 0x66, 0x96, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0x09, 0x80, 0xa4, 0x9c, 0x13, 0x73, 0x72, - 0xdc, 0x13, 0x8b, 0x7d, 0x40, 0xe2, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0x05, 0x9f, 0x78, - 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, - 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x65, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, - 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x49, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, 0x89, - 0x7e, 0x05, 0x86, 0x4f, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x4e, 0x33, 0x06, 0x04, - 0x00, 0x00, 0xff, 0xff, 0xa9, 0x1e, 0x26, 0x1c, 0xf1, 0x00, 0x00, 0x00, +var fileDescriptor_6133ea05f9b5711d = []byte{ + // 210 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xca, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, + 0x2d, 0xd2, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0x05, 0xab, 0xd1, 0x43, 0x53, 0x23, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa1, 0x0f, 0x62, + 0x41, 0x14, 0x2b, 0xd9, 0x72, 0xb1, 0x05, 0x80, 0x35, 0x0b, 0xe9, 0x72, 0x09, 0x17, 0x97, 0xa6, + 0xe4, 0xc7, 0x27, 0x27, 0xe6, 0xe4, 0xc4, 0xa7, 0x27, 0x16, 0xc7, 0xe7, 0x64, 0xe6, 0x66, 0x96, + 0x48, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0x09, 0x80, 0xa4, 0x9c, 0x13, 0x73, 0x72, 0xdc, 0x13, + 0x8b, 0x7d, 0x40, 0xe2, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0x85, 0x9d, 0x78, 0x24, 0xc7, + 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, + 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, + 0x7e, 0xae, 0xbe, 0x1f, 0xc8, 0x41, 0xba, 0x01, 0x20, 0x0b, 0x93, 0xf3, 0x73, 0xf4, 0xc1, 0xee, + 0xd3, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0xaf, 0xc0, 0xf0, 0x4a, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, + 0x1b, 0xd8, 0x75, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x83, 0xdd, 0xdb, 0xf0, 0x00, + 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/query.pb.go b/x/contractmanager/types/query.pb.go index 7e3209a8..45fc0e35 100644 --- a/x/contractmanager/types/query.pb.go +++ b/x/contractmanager/types/query.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/query.proto +// source: nolus/contractmanager/query.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -18,6 +14,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -39,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f9524a427f219917, []int{0} + return fileDescriptor_d27de95b05bba62f, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f9524a427f219917, []int{1} + return fileDescriptor_d27de95b05bba62f, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +126,7 @@ func (m *QueryFailuresRequest) Reset() { *m = QueryFailuresRequest{} } func (m *QueryFailuresRequest) String() string { return proto.CompactTextString(m) } func (*QueryFailuresRequest) ProtoMessage() {} func (*QueryFailuresRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f9524a427f219917, []int{2} + return fileDescriptor_d27de95b05bba62f, []int{2} } func (m *QueryFailuresRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -187,7 +186,7 @@ func (m *QueryFailuresResponse) Reset() { *m = QueryFailuresResponse{} } func (m *QueryFailuresResponse) String() string { return proto.CompactTextString(m) } func (*QueryFailuresResponse) ProtoMessage() {} func (*QueryFailuresResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f9524a427f219917, []int{3} + return fileDescriptor_d27de95b05bba62f, []int{3} } func (m *QueryFailuresResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -231,52 +230,50 @@ func (m *QueryFailuresResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "neutron.contractmanager.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "neutron.contractmanager.QueryParamsResponse") - proto.RegisterType((*QueryFailuresRequest)(nil), "neutron.contractmanager.QueryFailuresRequest") - proto.RegisterType((*QueryFailuresResponse)(nil), "neutron.contractmanager.QueryFailuresResponse") -} - -func init() { - proto.RegisterFile("neutron/contractmanager/query.proto", fileDescriptor_f9524a427f219917) -} - -var fileDescriptor_f9524a427f219917 = []byte{ - // 531 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0x41, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0x33, 0x69, 0x1b, 0xdb, 0x29, 0x28, 0x8c, 0x11, 0x43, 0xd0, 0x4d, 0xba, 0x55, 0x1b, - 0xad, 0x99, 0xa1, 0xa9, 0x07, 0x15, 0x04, 0xcd, 0xa1, 0xe2, 0xad, 0xae, 0x9e, 0xbc, 0xc8, 0x24, - 0x19, 0xc7, 0x85, 0x66, 0x66, 0x3b, 0x33, 0x5b, 0x2c, 0xa5, 0x17, 0x6f, 0x82, 0x07, 0x41, 0xc1, - 0x2f, 0xa0, 0x1f, 0xc0, 0x6f, 0xd1, 0x63, 0xc1, 0x8b, 0x27, 0x91, 0xc4, 0x0f, 0x22, 0x99, 0x99, - 0xb4, 0x4d, 0xca, 0x36, 0xf1, 0xa0, 0xb7, 0xd9, 0xb7, 0xef, 0xff, 0xde, 0xef, 0xfd, 0xe7, 0xed, - 0xc2, 0x65, 0xc1, 0x52, 0xa3, 0xa4, 0x20, 0x6d, 0x29, 0x8c, 0xa2, 0x6d, 0xd3, 0xa5, 0x82, 0x72, - 0xa6, 0xc8, 0x76, 0xca, 0xd4, 0x2e, 0x4e, 0x94, 0x34, 0x12, 0x5d, 0xf6, 0x49, 0x78, 0x2c, 0xa9, - 0x7c, 0xab, 0x2d, 0x75, 0x57, 0x6a, 0xd2, 0xa2, 0x9a, 0x39, 0x05, 0xd9, 0x59, 0x6b, 0x31, 0x43, - 0xd7, 0x48, 0x42, 0x79, 0x2c, 0xa8, 0x89, 0xa5, 0x70, 0x45, 0xca, 0x45, 0x2e, 0xb9, 0xb4, 0x47, - 0x32, 0x38, 0xf9, 0xe8, 0x15, 0x2e, 0x25, 0xdf, 0x62, 0x84, 0x26, 0x31, 0xa1, 0x42, 0x48, 0x63, - 0x25, 0xda, 0xbf, 0xbd, 0x9e, 0x45, 0xf7, 0x8a, 0xc6, 0x5b, 0xa9, 0x62, 0x3e, 0xed, 0x5a, 0x56, - 0x5a, 0x42, 0x15, 0xed, 0xfa, 0x62, 0x61, 0x11, 0xa2, 0xa7, 0x03, 0xc4, 0x4d, 0x1b, 0x8c, 0xd8, - 0x76, 0xca, 0xb4, 0x09, 0x9f, 0xc3, 0x8b, 0x23, 0x51, 0x9d, 0x48, 0xa1, 0x19, 0x7a, 0x00, 0x0b, - 0x4e, 0x5c, 0x02, 0x55, 0x50, 0x5b, 0x6c, 0x54, 0x70, 0x86, 0x07, 0xd8, 0x09, 0x9b, 0xb3, 0x07, - 0x3f, 0x2b, 0xb9, 0xc8, 0x8b, 0xc2, 0xcf, 0x00, 0x16, 0x6d, 0xd9, 0x0d, 0x07, 0x3a, 0x6c, 0x87, - 0x4a, 0xf0, 0x1c, 0xed, 0x74, 0x14, 0xd3, 0xae, 0xf0, 0x42, 0x34, 0x7c, 0x44, 0x57, 0x21, 0xf4, - 0x53, 0xbd, 0x8c, 0x3b, 0xa5, 0x7c, 0x15, 0xd4, 0x66, 0xa3, 0x05, 0x1f, 0x79, 0xd2, 0x41, 0x1b, - 0x10, 0x1e, 0x5b, 0x5a, 0x9a, 0xb1, 0x50, 0x37, 0xb0, 0xf3, 0x1f, 0x0f, 0xfc, 0xc7, 0xee, 0xc6, - 0xbc, 0xff, 0x78, 0x93, 0x72, 0xe6, 0x9b, 0x46, 0x27, 0x94, 0xe1, 0x17, 0x00, 0x2f, 0x8d, 0x91, - 0xf9, 0x91, 0x9b, 0x70, 0xde, 0xb7, 0x1b, 0xb0, 0xcd, 0xd4, 0x16, 0x1b, 0xd5, 0xcc, 0xa1, 0xbd, - 0xd8, 0x4f, 0x7d, 0xa4, 0x43, 0x8f, 0x47, 0x28, 0xf3, 0x96, 0x72, 0x65, 0x22, 0xa5, 0x03, 0x38, - 0x89, 0xd9, 0x78, 0x37, 0x07, 0xe7, 0x2c, 0x26, 0x7a, 0x0f, 0x60, 0xc1, 0x79, 0x8c, 0x56, 0x33, - 0x79, 0x4e, 0x5f, 0x6c, 0xf9, 0xf6, 0x74, 0xc9, 0xae, 0x77, 0xb8, 0xf2, 0xf6, 0xfb, 0xef, 0x8f, - 0xf9, 0x25, 0x54, 0x21, 0x67, 0xef, 0x12, 0xfa, 0x06, 0xe0, 0xf9, 0x47, 0xee, 0xca, 0xbc, 0x09, - 0xa8, 0x7e, 0x76, 0xa7, 0xb1, 0x15, 0x28, 0xe3, 0x69, 0xd3, 0x3d, 0xda, 0x43, 0x8b, 0x76, 0x1f, - 0xdd, 0x25, 0x13, 0xbe, 0x06, 0x4d, 0xf6, 0xfc, 0x32, 0xed, 0x93, 0xbd, 0xe3, 0x5d, 0xda, 0x47, - 0x5f, 0x01, 0xbc, 0x30, 0xca, 0xac, 0xff, 0x35, 0xf4, 0xba, 0x85, 0xae, 0xa3, 0xd5, 0xbf, 0x80, - 0x46, 0x9f, 0x00, 0x9c, 0xff, 0x5f, 0x80, 0x37, 0x2d, 0xe0, 0x32, 0x5a, 0x9a, 0x08, 0xd8, 0x7c, - 0x76, 0xd0, 0x0b, 0xc0, 0x61, 0x2f, 0x00, 0xbf, 0x7a, 0x01, 0xf8, 0xd0, 0x0f, 0x72, 0x87, 0xfd, - 0x20, 0xf7, 0xa3, 0x1f, 0xe4, 0x5e, 0xdc, 0xe3, 0xb1, 0x79, 0x9d, 0xb6, 0x70, 0x5b, 0x76, 0x87, - 0x65, 0xea, 0x52, 0xf1, 0xa3, 0x92, 0x3b, 0x77, 0xc8, 0x9b, 0x53, 0x75, 0xcd, 0x6e, 0xc2, 0x74, - 0xab, 0x60, 0x7f, 0x4a, 0xeb, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x96, 0xc1, 0xe7, 0xbe, 0x81, - 0x05, 0x00, 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "nolus.contractmanager.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "nolus.contractmanager.QueryParamsResponse") + proto.RegisterType((*QueryFailuresRequest)(nil), "nolus.contractmanager.QueryFailuresRequest") + proto.RegisterType((*QueryFailuresResponse)(nil), "nolus.contractmanager.QueryFailuresResponse") +} + +func init() { proto.RegisterFile("nolus/contractmanager/query.proto", fileDescriptor_d27de95b05bba62f) } + +var fileDescriptor_d27de95b05bba62f = []byte{ + // 536 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0xcf, 0x6b, 0x13, 0x41, + 0x14, 0xc7, 0x33, 0x69, 0x8c, 0xed, 0x14, 0x14, 0x9e, 0x29, 0x84, 0x60, 0x36, 0xed, 0x8a, 0x36, + 0x6d, 0xed, 0x0c, 0x89, 0x20, 0x82, 0x22, 0xda, 0x43, 0xc5, 0x8b, 0xc4, 0x3d, 0x78, 0xf0, 0x22, + 0x93, 0xcd, 0xb8, 0x2e, 0x64, 0x77, 0xb6, 0x3b, 0xb3, 0x62, 0x29, 0xbd, 0x78, 0xf0, 0x28, 0x82, + 0x07, 0x8f, 0x82, 0x57, 0xff, 0x91, 0x1e, 0x0b, 0x5e, 0x3c, 0x89, 0x24, 0xfe, 0x03, 0xfe, 0x07, + 0xb2, 0x33, 0x53, 0xdb, 0xa4, 0x69, 0x9a, 0x8b, 0xde, 0x36, 0x2f, 0xef, 0xfb, 0x7d, 0x9f, 0xf7, + 0x83, 0xc1, 0x2b, 0xb1, 0xe8, 0x67, 0x92, 0xfa, 0x22, 0x56, 0x29, 0xf3, 0x55, 0xc4, 0x62, 0x16, + 0xf0, 0x94, 0xee, 0x64, 0x3c, 0xdd, 0x25, 0x49, 0x2a, 0x94, 0x80, 0x25, 0x9d, 0x42, 0xc6, 0x52, + 0x6a, 0xeb, 0xbe, 0x90, 0x91, 0x90, 0xb4, 0xcb, 0x24, 0x37, 0xf9, 0xf4, 0x75, 0xab, 0xcb, 0x15, + 0x6b, 0xd1, 0x84, 0x05, 0x61, 0xcc, 0x54, 0x28, 0x62, 0x63, 0x51, 0xab, 0x04, 0x22, 0x10, 0xfa, + 0x93, 0xe6, 0x5f, 0x36, 0x7a, 0x35, 0x10, 0x22, 0xe8, 0x73, 0xca, 0x92, 0x90, 0xb2, 0x38, 0x16, + 0x4a, 0x4b, 0xa4, 0xfd, 0xf7, 0xda, 0x64, 0xb2, 0x97, 0x2c, 0xec, 0x67, 0x29, 0xb7, 0x49, 0xee, + 0xe4, 0xa4, 0x84, 0xa5, 0x2c, 0xb2, 0x46, 0x6e, 0x05, 0xc3, 0xd3, 0x1c, 0xaf, 0xa3, 0x83, 0x1e, + 0xdf, 0xc9, 0xb8, 0x54, 0xae, 0x87, 0xaf, 0x8c, 0x44, 0x65, 0x22, 0x62, 0xc9, 0xe1, 0x2e, 0x2e, + 0x1b, 0x71, 0x15, 0x2d, 0xa3, 0xe6, 0x62, 0xbb, 0x4e, 0x26, 0x76, 0x4f, 0x8c, 0x6c, 0xab, 0x74, + 0xf0, 0xa3, 0x51, 0xf0, 0xac, 0xc4, 0xfd, 0x84, 0x70, 0x45, 0x9b, 0x6e, 0x1b, 0xc8, 0xa3, 0x62, + 0x50, 0xc5, 0x17, 0x59, 0xaf, 0x97, 0x72, 0x69, 0x6c, 0x17, 0xbc, 0xa3, 0x9f, 0x50, 0xc7, 0xd8, + 0x76, 0xf4, 0x22, 0xec, 0x55, 0x8b, 0xcb, 0xa8, 0x59, 0xf2, 0x16, 0x6c, 0xe4, 0x71, 0x0f, 0xb6, + 0x31, 0x3e, 0x1e, 0x66, 0x75, 0x4e, 0x23, 0xdd, 0x20, 0x66, 0xf2, 0x24, 0x9f, 0x3c, 0x31, 0x9b, + 0xb2, 0x93, 0x27, 0x1d, 0x16, 0x70, 0x5b, 0xd4, 0x3b, 0xa1, 0x74, 0xbf, 0x20, 0xbc, 0x34, 0x46, + 0x66, 0x1b, 0x7e, 0x80, 0xe7, 0x6d, 0xb9, 0x9c, 0x6d, 0xae, 0xb9, 0xd8, 0x76, 0xce, 0x68, 0xd9, + 0x4a, 0x6d, 0xcf, 0x7f, 0x55, 0xf0, 0x68, 0x84, 0xb1, 0xa8, 0x19, 0x57, 0xcf, 0x65, 0x34, 0xe5, + 0x4f, 0x42, 0xb6, 0x7f, 0x97, 0xf0, 0x05, 0x0d, 0x09, 0xef, 0x10, 0x2e, 0x9b, 0x09, 0xc3, 0xda, + 0x19, 0x34, 0xa7, 0x57, 0x5a, 0x5b, 0x9f, 0x25, 0xd5, 0xd4, 0x75, 0xaf, 0xbf, 0xfd, 0xf6, 0xeb, + 0x63, 0xb1, 0x01, 0x75, 0x3a, 0xed, 0x82, 0xe0, 0x2b, 0xc2, 0x97, 0x1e, 0x9a, 0x55, 0xd9, 0xf6, + 0x61, 0x63, 0x5a, 0x95, 0xb1, 0xc5, 0xd7, 0x6e, 0xce, 0x96, 0x6c, 0xa1, 0xee, 0x6b, 0xa8, 0x3b, + 0x70, 0x9b, 0x4e, 0xbd, 0x7d, 0x49, 0xf7, 0xec, 0xf9, 0xec, 0xd3, 0xbd, 0xe3, 0xeb, 0xd9, 0x87, + 0xcf, 0x08, 0x5f, 0x1e, 0xa5, 0x95, 0xff, 0x12, 0xb7, 0xa5, 0x71, 0x37, 0x60, 0x6d, 0x66, 0x5c, + 0x78, 0x8f, 0xf0, 0xfc, 0xff, 0x40, 0x5b, 0xd5, 0x68, 0x2b, 0xd0, 0x38, 0x07, 0x6d, 0xeb, 0xd9, + 0xc1, 0xc0, 0x41, 0x87, 0x03, 0x07, 0xfd, 0x1c, 0x38, 0xe8, 0xc3, 0xd0, 0x29, 0x1c, 0x0e, 0x9d, + 0xc2, 0xf7, 0xa1, 0x53, 0x78, 0x7e, 0x2f, 0x08, 0xd5, 0xab, 0xac, 0x4b, 0x7c, 0x11, 0xd1, 0x27, + 0xb9, 0xc9, 0x66, 0x27, 0x7f, 0x4e, 0x7c, 0xd1, 0x37, 0x9e, 0x9b, 0xbe, 0x48, 0x39, 0x7d, 0x73, + 0xca, 0x5a, 0xed, 0x26, 0x5c, 0x76, 0xcb, 0xfa, 0xed, 0xb9, 0xf5, 0x27, 0x00, 0x00, 0xff, 0xff, + 0x68, 0x23, 0x2e, 0xd9, 0x60, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -311,7 +308,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.contractmanager.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.contractmanager.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -320,7 +317,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) AddressFailure(ctx context.Context, in *QueryFailuresRequest, opts ...grpc.CallOption) (*QueryFailuresResponse, error) { out := new(QueryFailuresResponse) - err := c.cc.Invoke(ctx, "/neutron.contractmanager.Query/AddressFailure", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.contractmanager.Query/AddressFailure", in, out, opts...) if err != nil { return nil, err } @@ -329,7 +326,7 @@ func (c *queryClient) AddressFailure(ctx context.Context, in *QueryFailuresReque func (c *queryClient) AddressFailures(ctx context.Context, in *QueryFailuresRequest, opts ...grpc.CallOption) (*QueryFailuresResponse, error) { out := new(QueryFailuresResponse) - err := c.cc.Invoke(ctx, "/neutron.contractmanager.Query/AddressFailures", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.contractmanager.Query/AddressFailures", in, out, opts...) if err != nil { return nil, err } @@ -338,7 +335,7 @@ func (c *queryClient) AddressFailures(ctx context.Context, in *QueryFailuresRequ func (c *queryClient) Failures(ctx context.Context, in *QueryFailuresRequest, opts ...grpc.CallOption) (*QueryFailuresResponse, error) { out := new(QueryFailuresResponse) - err := c.cc.Invoke(ctx, "/neutron.contractmanager.Query/Failures", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.contractmanager.Query/Failures", in, out, opts...) if err != nil { return nil, err } @@ -388,7 +385,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.contractmanager.Query/Params", + FullMethod: "/nolus.contractmanager.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -406,7 +403,7 @@ func _Query_AddressFailure_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.contractmanager.Query/AddressFailure", + FullMethod: "/nolus.contractmanager.Query/AddressFailure", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AddressFailure(ctx, req.(*QueryFailuresRequest)) @@ -424,7 +421,7 @@ func _Query_AddressFailures_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.contractmanager.Query/AddressFailures", + FullMethod: "/nolus.contractmanager.Query/AddressFailures", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AddressFailures(ctx, req.(*QueryFailuresRequest)) @@ -442,7 +439,7 @@ func _Query_Failures_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.contractmanager.Query/Failures", + FullMethod: "/nolus.contractmanager.Query/Failures", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Failures(ctx, req.(*QueryFailuresRequest)) @@ -451,7 +448,7 @@ func _Query_Failures_Handler(srv interface{}, ctx context.Context, dec func(inte } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.contractmanager.Query", + ServiceName: "nolus.contractmanager.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -472,7 +469,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/contractmanager/query.proto", + Metadata: "nolus/contractmanager/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/query.pb.gw.go b/x/contractmanager/types/query.pb.gw.go index 2c201192..288cd4e1 100644 --- a/x/contractmanager/types/query.pb.gw.go +++ b/x/contractmanager/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: neutron/contractmanager/query.proto +// source: nolus/contractmanager/query.proto /* Package types is a reverse proxy. @@ -476,13 +476,13 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "contractmanager", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "contractmanager", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AddressFailure_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"neutron", "contractmanager", "failures", "address", "failure_id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AddressFailure_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"nolus", "contractmanager", "failures", "address", "failure_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AddressFailures_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"neutron", "contractmanager", "failures", "address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AddressFailures_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"nolus", "contractmanager", "failures", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Failures_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "contractmanager", "failures"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Failures_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "contractmanager", "failures"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/contractmanager/types/tx.pb.go b/x/contractmanager/types/tx.pb.go index eaad796e..5a45769a 100644 --- a/x/contractmanager/types/tx.pb.go +++ b/x/contractmanager/types/tx.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/tx.proto +// source: nolus/contractmanager/tx.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/cosmos-sdk/types/tx/amino" @@ -19,6 +15,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -48,7 +47,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_4dc444ed708d435f, []int{0} + return fileDescriptor_f4de2dda6e8b03d6, []int{0} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -102,7 +101,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4dc444ed708d435f, []int{1} + return fileDescriptor_f4de2dda6e8b03d6, []int{1} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -132,36 +131,37 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgUpdateParams)(nil), "neutron.contractmanager.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "neutron.contractmanager.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("neutron/contractmanager/tx.proto", fileDescriptor_4dc444ed708d435f) } - -var fileDescriptor_4dc444ed708d435f = []byte{ - // 351 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, - 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xaa, - 0xd0, 0x43, 0x53, 0x21, 0x25, 0x98, 0x98, 0x9b, 0x99, 0x97, 0xaf, 0x0f, 0x26, 0x21, 0x6a, 0xa5, - 0xc4, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xf5, 0x73, 0x8b, 0xd3, 0xf5, 0xcb, 0x0c, 0x41, 0x14, - 0x54, 0x42, 0x12, 0x22, 0x11, 0x0f, 0xe6, 0xe9, 0x43, 0x38, 0x50, 0x29, 0x91, 0xf4, 0xfc, 0xf4, - 0x7c, 0x88, 0x38, 0x88, 0x05, 0x15, 0x55, 0xc1, 0xe5, 0xae, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, - 0x5e, 0xa5, 0x83, 0x8c, 0x5c, 0xfc, 0xbe, 0xc5, 0xe9, 0xa1, 0x05, 0x29, 0x89, 0x25, 0xa9, 0x01, - 0x60, 0x19, 0x21, 0x33, 0x2e, 0xce, 0xc4, 0xd2, 0x92, 0x8c, 0xfc, 0xa2, 0xcc, 0x92, 0x4a, 0x09, - 0x46, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, 0x45, 0xa0, 0x96, 0x3a, 0xa6, 0xa4, - 0x14, 0xa5, 0x16, 0x17, 0x07, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x07, 0x21, 0x94, 0x0a, 0x39, 0x71, - 0xb1, 0x41, 0xcc, 0x96, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd7, 0xc3, 0xe1, 0x71, 0x3d, - 0x88, 0x45, 0x4e, 0x9c, 0x27, 0xee, 0xc9, 0x33, 0xac, 0x78, 0xbe, 0x41, 0x8b, 0x31, 0x08, 0xaa, - 0xd3, 0xca, 0xa8, 0xe9, 0xf9, 0x06, 0x2d, 0x84, 0x99, 0x5d, 0xcf, 0x37, 0x68, 0xc9, 0xa3, 0x7b, - 0x00, 0xcd, 0xbd, 0x4a, 0x92, 0x5c, 0xe2, 0x68, 0x42, 0x41, 0xa9, 0xc5, 0x05, 0xf9, 0x79, 0xc5, - 0xa9, 0x46, 0x15, 0x5c, 0xcc, 0xbe, 0xc5, 0xe9, 0x42, 0x59, 0x5c, 0x3c, 0x28, 0x3e, 0xd4, 0xc0, - 0xe9, 0x32, 0x34, 0x83, 0xa4, 0x0c, 0x88, 0x55, 0x09, 0xb3, 0x52, 0x8a, 0xb5, 0x01, 0xe4, 0x21, - 0xa7, 0xe0, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, - 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xb2, 0x4c, 0xcf, 0x2c, - 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x1a, 0xae, 0x9b, 0x5f, 0x94, 0x0e, 0x63, - 0xeb, 0x97, 0x99, 0xe8, 0x57, 0x60, 0x26, 0xa6, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0xa4, - 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb0, 0xe1, 0xbf, 0xee, 0x74, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgUpdateParams)(nil), "nolus.contractmanager.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "nolus.contractmanager.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("nolus/contractmanager/tx.proto", fileDescriptor_f4de2dda6e8b03d6) } + +var fileDescriptor_f4de2dda6e8b03d6 = []byte{ + // 356 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, + 0x2d, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x05, 0xcb, 0xeb, 0xa1, + 0xc9, 0x4b, 0x09, 0x26, 0xe6, 0x66, 0xe6, 0xe5, 0xeb, 0x83, 0x49, 0x88, 0x4a, 0x29, 0xf1, 0xe4, + 0xfc, 0xe2, 0xdc, 0xfc, 0x62, 0xfd, 0xdc, 0xe2, 0x74, 0xfd, 0x32, 0x43, 0x10, 0x05, 0x95, 0x90, + 0x84, 0x48, 0xc4, 0x83, 0x79, 0xfa, 0x10, 0x0e, 0x54, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0x22, + 0x0e, 0x62, 0x41, 0x45, 0x95, 0xb0, 0xbb, 0xa9, 0x20, 0xb1, 0x28, 0x31, 0x17, 0xaa, 0x53, 0x69, + 0x3f, 0x23, 0x17, 0xbf, 0x6f, 0x71, 0x7a, 0x68, 0x41, 0x4a, 0x62, 0x49, 0x6a, 0x00, 0x58, 0x46, + 0xc8, 0x8c, 0x8b, 0x33, 0xb1, 0xb4, 0x24, 0x23, 0xbf, 0x28, 0xb3, 0xa4, 0x52, 0x82, 0x51, 0x81, + 0x51, 0x83, 0xd3, 0x49, 0xe2, 0xd2, 0x16, 0x5d, 0x11, 0xa8, 0x95, 0x8e, 0x29, 0x29, 0x45, 0xa9, + 0xc5, 0xc5, 0xc1, 0x25, 0x45, 0x99, 0x79, 0xe9, 0x41, 0x08, 0xa5, 0x42, 0x0e, 0x5c, 0x6c, 0x10, + 0xb3, 0x25, 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0x64, 0xf5, 0xb0, 0x7a, 0x5a, 0x0f, 0x62, 0x8d, + 0x13, 0xe7, 0x89, 0x7b, 0xf2, 0x0c, 0x2b, 0x9e, 0x6f, 0xd0, 0x62, 0x0c, 0x82, 0xea, 0xb3, 0x32, + 0x6a, 0x7a, 0xbe, 0x41, 0x0b, 0x61, 0x62, 0xd7, 0xf3, 0x0d, 0x5a, 0xf2, 0xe8, 0xce, 0x47, 0x73, + 0xad, 0x92, 0x24, 0x97, 0x38, 0x9a, 0x50, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x51, + 0x09, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x1a, 0x17, 0x0f, 0x8a, 0xff, 0xd4, 0x70, 0xb8, 0x0b, + 0xcd, 0x18, 0x29, 0x3d, 0xe2, 0xd4, 0xc1, 0xac, 0x93, 0x62, 0x6d, 0x00, 0x79, 0xc6, 0x29, 0xec, + 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, + 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x6c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, + 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xfd, 0x40, 0x46, 0xeb, 0x06, 0x80, 0x22, 0x21, 0x39, 0x3f, + 0x47, 0x1f, 0x6c, 0x93, 0x6e, 0x72, 0x7e, 0x51, 0xaa, 0x7e, 0x05, 0x66, 0x2a, 0xaa, 0x2c, 0x48, + 0x2d, 0x4e, 0x62, 0x03, 0xc7, 0x98, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x6f, 0xd0, 0xa3, + 0x6b, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -189,7 +189,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.contractmanager.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.contractmanager.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -223,7 +223,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.contractmanager.Msg/UpdateParams", + FullMethod: "/nolus.contractmanager.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -232,7 +232,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.contractmanager.Msg", + ServiceName: "nolus.contractmanager.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -241,7 +241,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/contractmanager/tx.proto", + Metadata: "nolus/contractmanager/tx.proto", } func (m *MsgUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/v1/failure.pb.go b/x/contractmanager/types/v1/failure.pb.go index af2f2875..13e17b58 100644 --- a/x/contractmanager/types/v1/failure.pb.go +++ b/x/contractmanager/types/v1/failure.pb.go @@ -1,15 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/contractmanager/v1/failure.proto +// source: nolus/contractmanager/v1/failure.proto package v1 import ( fmt "fmt" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -41,7 +40,7 @@ func (m *Failure) Reset() { *m = Failure{} } func (m *Failure) String() string { return proto.CompactTextString(m) } func (*Failure) ProtoMessage() {} func (*Failure) Descriptor() ([]byte, []int) { - return fileDescriptor_c0f2c436fd0f28b7, []int{0} + return fileDescriptor_9d2d990e80c87e27, []int{0} } func (m *Failure) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,31 +105,31 @@ func (m *Failure) GetAckType() string { } func init() { - proto.RegisterType((*Failure)(nil), "neutron.contractmanager.v1.Failure") + proto.RegisterType((*Failure)(nil), "nolus.contractmanager.v1.Failure") } func init() { - proto.RegisterFile("neutron/contractmanager/v1/failure.proto", fileDescriptor_c0f2c436fd0f28b7) + proto.RegisterFile("nolus/contractmanager/v1/failure.proto", fileDescriptor_9d2d990e80c87e27) } -var fileDescriptor_c0f2c436fd0f28b7 = []byte{ - // 248 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xc8, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, - 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xaa, 0xd4, 0x43, 0x53, 0xa9, 0x57, 0x66, 0xa8, 0xd4, - 0xc2, 0xc8, 0xc5, 0xee, 0x06, 0x51, 0x2d, 0x24, 0xcb, 0xc5, 0x95, 0x9c, 0x91, 0x98, 0x97, 0x97, - 0x9a, 0x13, 0x9f, 0x99, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0xc4, 0x09, 0x15, 0xf1, 0x4c, - 0x11, 0x92, 0xe0, 0x62, 0x4f, 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x96, 0x60, 0x02, 0xcb, 0xc1, - 0xb8, 0x42, 0x7c, 0x5c, 0x4c, 0x99, 0x29, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x4c, 0x99, - 0x29, 0x42, 0xa2, 0x5c, 0x6c, 0x89, 0xc9, 0xd9, 0x20, 0x43, 0x58, 0xc0, 0x62, 0xac, 0x89, 0xc9, - 0xd9, 0x9e, 0x29, 0x42, 0x92, 0x5c, 0x1c, 0x20, 0xe1, 0x92, 0xca, 0x82, 0x54, 0x09, 0x56, 0xa8, - 0x09, 0xc9, 0xd9, 0x21, 0x95, 0x05, 0xa9, 0x4e, 0x61, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, - 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, - 0x2c, 0xc7, 0x10, 0x65, 0x93, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, - 0xf5, 0x87, 0x6e, 0x7e, 0x51, 0x3a, 0x8c, 0xad, 0x5f, 0x66, 0xa2, 0x5f, 0x81, 0x11, 0x04, 0x20, - 0x2b, 0x8a, 0xf5, 0xcb, 0x0c, 0x93, 0xd8, 0xc0, 0x21, 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, - 0xd7, 0xff, 0xd9, 0x5a, 0x2d, 0x01, 0x00, 0x00, +var fileDescriptor_9d2d990e80c87e27 = []byte{ + // 254 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcb, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, + 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, 0x28, 0xca, + 0x2f, 0xc9, 0x17, 0x92, 0x00, 0xab, 0xd3, 0x43, 0x53, 0xa7, 0x57, 0x66, 0xa8, 0xd4, 0xc2, 0xc8, + 0xc5, 0xee, 0x06, 0x51, 0x2b, 0x24, 0xcb, 0xc5, 0x95, 0x9c, 0x91, 0x98, 0x97, 0x97, 0x9a, 0x13, + 0x9f, 0x99, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0xc4, 0x09, 0x15, 0xf1, 0x4c, 0x11, 0x92, + 0xe0, 0x62, 0x4f, 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x96, 0x60, 0x02, 0xcb, 0xc1, 0xb8, 0x42, + 0x7c, 0x5c, 0x4c, 0x99, 0x29, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x4c, 0x99, 0x29, 0x42, + 0xa2, 0x5c, 0x6c, 0x89, 0xc9, 0xd9, 0x20, 0x43, 0x58, 0xc0, 0x62, 0xac, 0x89, 0xc9, 0xd9, 0x9e, + 0x29, 0x42, 0x92, 0x5c, 0x1c, 0x20, 0xe1, 0x92, 0xca, 0x82, 0x54, 0x09, 0x56, 0xa8, 0x09, 0xc9, + 0xd9, 0x21, 0x95, 0x05, 0xa9, 0x4e, 0x91, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, + 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, + 0x10, 0x65, 0x9f, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0xef, 0x07, 0xf2, + 0x85, 0x6e, 0x00, 0xc8, 0x4b, 0xc9, 0xf9, 0x39, 0xfa, 0x60, 0x4f, 0xe9, 0x26, 0xe7, 0x17, 0xa5, + 0xea, 0x57, 0x60, 0x84, 0x01, 0xc8, 0x96, 0x62, 0xfd, 0x32, 0xc3, 0x24, 0x36, 0x70, 0x10, 0x18, + 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x50, 0x31, 0x1e, 0x2c, 0x01, 0x00, 0x00, } func (m *Failure) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/fee.pb.go b/x/feerefunder/types/fee.pb.go index e69c1410..93ab5c53 100644 --- a/x/feerefunder/types/fee.pb.go +++ b/x/feerefunder/types/fee.pb.go @@ -1,18 +1,17 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/feerefunder/fee.proto +// source: nolus/feerefunder/fee.proto package types import ( fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -40,7 +39,7 @@ func (m *Fee) Reset() { *m = Fee{} } func (m *Fee) String() string { return proto.CompactTextString(m) } func (*Fee) ProtoMessage() {} func (*Fee) Descriptor() ([]byte, []int) { - return fileDescriptor_08c389f5f82f1076, []int{0} + return fileDescriptor_b33b28694f338259, []int{0} } func (m *Fee) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -100,7 +99,7 @@ func (m *PacketID) Reset() { *m = PacketID{} } func (m *PacketID) String() string { return proto.CompactTextString(m) } func (*PacketID) ProtoMessage() {} func (*PacketID) Descriptor() ([]byte, []int) { - return fileDescriptor_08c389f5f82f1076, []int{1} + return fileDescriptor_b33b28694f338259, []int{1} } func (m *PacketID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -151,38 +150,39 @@ func (m *PacketID) GetSequence() uint64 { } func init() { - proto.RegisterType((*Fee)(nil), "neutron.feerefunder.Fee") - proto.RegisterType((*PacketID)(nil), "neutron.feerefunder.PacketID") -} - -func init() { proto.RegisterFile("neutron/feerefunder/fee.proto", fileDescriptor_08c389f5f82f1076) } - -var fileDescriptor_08c389f5f82f1076 = []byte{ - // 384 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xbd, 0x6e, 0xe2, 0x40, - 0x14, 0x85, 0x3d, 0xb0, 0xe2, 0x67, 0x90, 0x76, 0x25, 0xef, 0x4a, 0xcb, 0x22, 0x61, 0x90, 0x2b, - 0x37, 0x78, 0xc4, 0xfe, 0x34, 0x5b, 0x42, 0x84, 0x44, 0x95, 0x88, 0x32, 0x45, 0x90, 0x3d, 0xbe, - 0x18, 0xcb, 0x78, 0x86, 0xd8, 0x63, 0x2b, 0xb4, 0x79, 0x82, 0x3c, 0x47, 0x9e, 0x84, 0x92, 0x32, - 0x15, 0x89, 0xe0, 0x0d, 0xd2, 0x47, 0x8a, 0xc6, 0x1e, 0x22, 0x52, 0x21, 0xaa, 0x39, 0x33, 0x47, - 0xe7, 0x7c, 0x77, 0xa4, 0x8b, 0xdb, 0x0c, 0x52, 0x11, 0x73, 0x46, 0x66, 0x00, 0x31, 0xcc, 0x52, - 0xe6, 0x41, 0x2c, 0xb5, 0xbd, 0x8c, 0xb9, 0xe0, 0xfa, 0x77, 0x65, 0xdb, 0x47, 0x76, 0xcb, 0xa0, - 0x3c, 0x89, 0x78, 0x42, 0x5c, 0x27, 0x01, 0x92, 0xf5, 0x5d, 0x10, 0x4e, 0x9f, 0x50, 0x1e, 0xb0, - 0x22, 0xd4, 0xfa, 0xe1, 0x73, 0x9f, 0xe7, 0x92, 0x48, 0x55, 0xbc, 0x9a, 0x6f, 0x25, 0x5c, 0x1e, - 0x01, 0xe8, 0x2b, 0x5c, 0x8b, 0x81, 0x66, 0xd3, 0x19, 0x40, 0x13, 0x75, 0xcb, 0x56, 0xe3, 0xf7, - 0x2f, 0xbb, 0x28, 0xb4, 0x65, 0xa1, 0xad, 0x0a, 0xed, 0x21, 0x0f, 0xd8, 0x60, 0xb8, 0xde, 0x76, - 0xb4, 0xd7, 0x6d, 0xe7, 0xdb, 0xca, 0x89, 0x16, 0xff, 0xcd, 0x43, 0xd0, 0x7c, 0x7c, 0xee, 0x58, - 0x7e, 0x20, 0xe6, 0xa9, 0x6b, 0x53, 0x1e, 0x11, 0x35, 0x50, 0x71, 0xf4, 0x12, 0x2f, 0x24, 0x62, - 0xb5, 0x84, 0x24, 0xef, 0x48, 0x26, 0x55, 0x19, 0x93, 0xe8, 0x0c, 0x57, 0x1d, 0x1a, 0xe6, 0xe4, - 0xd2, 0x29, 0xf2, 0x40, 0x91, 0xbf, 0x16, 0x64, 0x95, 0x3b, 0x0f, 0x5c, 0x71, 0x68, 0x28, 0xb9, - 0xf7, 0x08, 0x37, 0x44, 0x10, 0x01, 0x4f, 0x45, 0x0e, 0x2f, 0x9f, 0x82, 0x8f, 0x14, 0x5c, 0x2f, - 0xe0, 0x47, 0xd9, 0xf3, 0x06, 0xc0, 0x2a, 0x39, 0x02, 0x30, 0x6f, 0x70, 0xed, 0xca, 0xa1, 0x21, - 0x88, 0xf1, 0x85, 0xde, 0xc6, 0x98, 0xce, 0x1d, 0xc6, 0x60, 0x31, 0x0d, 0xbc, 0x26, 0xea, 0x22, - 0xab, 0x3e, 0xa9, 0xab, 0x97, 0xb1, 0xa7, 0xff, 0xc4, 0xd5, 0x25, 0x8f, 0x85, 0xf4, 0x4a, 0xb9, - 0x57, 0x91, 0xd7, 0xb1, 0xa7, 0xb7, 0x70, 0x2d, 0x81, 0xdb, 0x14, 0x18, 0x95, 0x9f, 0x40, 0xd6, - 0x97, 0xc9, 0xc7, 0x7d, 0x70, 0xb9, 0xde, 0x19, 0x68, 0xb3, 0x33, 0xd0, 0xcb, 0xce, 0x40, 0x0f, - 0x7b, 0x43, 0xdb, 0xec, 0x0d, 0xed, 0x69, 0x6f, 0x68, 0xd7, 0xff, 0x8e, 0xe6, 0x55, 0xfb, 0xd4, - 0xe3, 0xb1, 0x7f, 0xd0, 0x24, 0xfb, 0x4b, 0xee, 0x3e, 0xed, 0x5f, 0xfe, 0x05, 0xb7, 0x92, 0xef, - 0xcd, 0x9f, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x9c, 0xd3, 0x7d, 0xa3, 0x02, 0x00, 0x00, + proto.RegisterType((*Fee)(nil), "nolus.feerefunder.Fee") + proto.RegisterType((*PacketID)(nil), "nolus.feerefunder.PacketID") +} + +func init() { proto.RegisterFile("nolus/feerefunder/fee.proto", fileDescriptor_b33b28694f338259) } + +var fileDescriptor_b33b28694f338259 = []byte{ + // 389 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x6b, 0xe2, 0x40, + 0x18, 0xc6, 0x33, 0xba, 0xf8, 0x67, 0x84, 0x5d, 0x36, 0x2c, 0xac, 0xeb, 0xb2, 0x51, 0x72, 0xca, + 0xc5, 0x0c, 0x6e, 0x2f, 0xa5, 0x47, 0x2d, 0x82, 0x97, 0x22, 0x39, 0xf6, 0x50, 0x49, 0x26, 0xaf, + 0x1a, 0xf2, 0x67, 0x6c, 0x66, 0x22, 0xf5, 0xda, 0x4f, 0xd0, 0xcf, 0xd1, 0x4f, 0xe2, 0xd1, 0x63, + 0x4f, 0xb6, 0xe8, 0x37, 0xe8, 0xbd, 0x50, 0x66, 0x92, 0x16, 0x7b, 0x12, 0x4f, 0xf3, 0xce, 0x3c, + 0x3c, 0xcf, 0xef, 0x1d, 0x78, 0xf0, 0xdf, 0x84, 0x45, 0x19, 0x27, 0x53, 0x80, 0x14, 0xa6, 0x59, + 0xe2, 0x43, 0x2a, 0x67, 0x7b, 0x91, 0x32, 0xc1, 0xf4, 0x9f, 0x4a, 0xb4, 0x0f, 0xc4, 0x96, 0x41, + 0x19, 0x8f, 0x19, 0x27, 0x9e, 0xcb, 0x81, 0x2c, 0x7b, 0x1e, 0x08, 0xb7, 0x47, 0x28, 0x0b, 0x92, + 0xdc, 0xd2, 0xfa, 0x35, 0x63, 0x33, 0xa6, 0x46, 0x22, 0xa7, 0xfc, 0xd5, 0x7c, 0x2b, 0xe1, 0xf2, + 0x10, 0x40, 0x5f, 0xe1, 0x5a, 0x0a, 0x74, 0x39, 0x99, 0x02, 0x34, 0x51, 0xa7, 0x6c, 0x35, 0xfe, + 0xff, 0xb1, 0xf3, 0x40, 0x5b, 0x06, 0xda, 0x45, 0xa0, 0x3d, 0x60, 0x41, 0xd2, 0x1f, 0xac, 0xb7, + 0x6d, 0xed, 0x75, 0xdb, 0xfe, 0xb1, 0x72, 0xe3, 0xe8, 0xc2, 0xfc, 0x30, 0x9a, 0x8f, 0xcf, 0x6d, + 0x6b, 0x16, 0x88, 0x79, 0xe6, 0xd9, 0x94, 0xc5, 0xa4, 0x58, 0x28, 0x3f, 0xba, 0xdc, 0x0f, 0x89, + 0x58, 0x2d, 0x80, 0xab, 0x0c, 0xee, 0x54, 0xa5, 0x4d, 0xa2, 0x97, 0xb8, 0xea, 0xd2, 0x50, 0x91, + 0x4b, 0xc7, 0xc8, 0xfd, 0x82, 0xfc, 0x3d, 0x27, 0x17, 0xbe, 0xd3, 0xc0, 0x15, 0x97, 0x86, 0x92, + 0x7b, 0x8f, 0x70, 0x43, 0x04, 0x31, 0xb0, 0x4c, 0x28, 0x78, 0xf9, 0x18, 0x7c, 0x58, 0xc0, 0xf5, + 0x1c, 0x7e, 0xe0, 0x3d, 0x6d, 0x01, 0x5c, 0x38, 0x87, 0x00, 0xe6, 0x0d, 0xae, 0x8d, 0x5d, 0x1a, + 0x82, 0x18, 0x5d, 0xea, 0xff, 0x30, 0xa6, 0x73, 0x37, 0x49, 0x20, 0x9a, 0x04, 0x7e, 0x13, 0x75, + 0x90, 0x55, 0x77, 0xea, 0xc5, 0xcb, 0xc8, 0xd7, 0x7f, 0xe3, 0xea, 0x82, 0xa5, 0x42, 0x6a, 0x25, + 0xa5, 0x55, 0xe4, 0x75, 0xe4, 0xeb, 0x2d, 0x5c, 0xe3, 0x70, 0x9b, 0x41, 0x42, 0xe5, 0x27, 0x90, + 0xf5, 0xcd, 0xf9, 0xbc, 0xf7, 0x9d, 0xf5, 0xce, 0x40, 0x9b, 0x9d, 0x81, 0x5e, 0x76, 0x06, 0x7a, + 0xd8, 0x1b, 0xda, 0x66, 0x6f, 0x68, 0x4f, 0x7b, 0x43, 0xbb, 0x3e, 0x3f, 0xd8, 0xf7, 0x4a, 0xb6, + 0xa9, 0x3b, 0x96, 0x8d, 0xa0, 0x2c, 0x22, 0xaa, 0x5c, 0x5d, 0xca, 0x52, 0x20, 0x77, 0x5f, 0x0a, + 0xa8, 0x7e, 0xe1, 0x55, 0x54, 0x75, 0xce, 0xde, 0x03, 0x00, 0x00, 0xff, 0xff, 0x11, 0x80, 0xeb, + 0x0d, 0xa2, 0x02, 0x00, 0x00, } func (m *Fee) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/genesis.pb.go b/x/feerefunder/types/genesis.pb.go index 800255d3..015e129e 100644 --- a/x/feerefunder/types/genesis.pb.go +++ b/x/feerefunder/types/genesis.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/feerefunder/genesis.proto +// source: nolus/feerefunder/genesis.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -34,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_43aedfe31f06653d, []int{0} + return fileDescriptor_3a670ad1a329246b, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +86,7 @@ func (m *FeeInfo) Reset() { *m = FeeInfo{} } func (m *FeeInfo) String() string { return proto.CompactTextString(m) } func (*FeeInfo) ProtoMessage() {} func (*FeeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_43aedfe31f06653d, []int{1} + return fileDescriptor_3a670ad1a329246b, []int{1} } func (m *FeeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -138,34 +137,34 @@ func (m *FeeInfo) GetFee() Fee { } func init() { - proto.RegisterType((*GenesisState)(nil), "neutron.feerefunder.GenesisState") - proto.RegisterType((*FeeInfo)(nil), "neutron.feerefunder.FeeInfo") + proto.RegisterType((*GenesisState)(nil), "nolus.feerefunder.GenesisState") + proto.RegisterType((*FeeInfo)(nil), "nolus.feerefunder.FeeInfo") } -func init() { proto.RegisterFile("neutron/feerefunder/genesis.proto", fileDescriptor_43aedfe31f06653d) } +func init() { proto.RegisterFile("nolus/feerefunder/genesis.proto", fileDescriptor_3a670ad1a329246b) } -var fileDescriptor_43aedfe31f06653d = []byte{ - // 314 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xb1, 0x4f, 0x02, 0x31, - 0x14, 0xc6, 0xaf, 0xa0, 0x28, 0xc5, 0xa9, 0x32, 0x5c, 0x50, 0x2a, 0x32, 0xb1, 0x78, 0x35, 0xa8, - 0x83, 0x93, 0x86, 0x18, 0x0d, 0x93, 0x06, 0x37, 0x17, 0x72, 0xc0, 0xeb, 0x79, 0x31, 0xb4, 0x97, - 0x5e, 0x31, 0xf2, 0x2f, 0x38, 0x99, 0xf8, 0x4f, 0x31, 0x32, 0x3a, 0x19, 0xc3, 0xfd, 0x23, 0xe6, - 0xda, 0x92, 0x68, 0x72, 0x6c, 0xef, 0xe5, 0xfb, 0x7d, 0xef, 0xfb, 0xf2, 0xf0, 0xb1, 0x80, 0x99, - 0x56, 0x52, 0x30, 0x0e, 0xa0, 0x80, 0xcf, 0xc4, 0x04, 0x14, 0x8b, 0x40, 0x40, 0x1a, 0xa7, 0x41, - 0xa2, 0xa4, 0x96, 0x64, 0xdf, 0x21, 0xc1, 0x1f, 0xa4, 0x51, 0x8f, 0x64, 0x24, 0x8d, 0xce, 0xf2, - 0xc9, 0xa2, 0x8d, 0x66, 0xd1, 0x35, 0x0e, 0xe0, 0xe4, 0x56, 0x91, 0x9c, 0x84, 0x2a, 0x9c, 0xba, - 0xac, 0xf6, 0x3b, 0xc2, 0x7b, 0x77, 0x36, 0xfd, 0x51, 0x87, 0x1a, 0xc8, 0x25, 0xae, 0x58, 0xc0, - 0x47, 0x2d, 0xd4, 0xa9, 0x75, 0x0f, 0x82, 0x82, 0x36, 0xc1, 0x83, 0x41, 0x7a, 0x5b, 0x8b, 0xef, - 0x23, 0x6f, 0xe0, 0x0c, 0xe4, 0x0a, 0x57, 0x39, 0xc0, 0x30, 0x16, 0x5c, 0xa6, 0x7e, 0xa9, 0x55, - 0xee, 0xd4, 0xba, 0x87, 0x85, 0xee, 0x5b, 0x80, 0xbe, 0xe0, 0xd2, 0xd9, 0x77, 0xb9, 0x5d, 0xd3, - 0xf6, 0x27, 0xc2, 0x3b, 0x4e, 0x23, 0x75, 0xbc, 0x9d, 0x84, 0x73, 0x50, 0xa6, 0x46, 0x75, 0x60, - 0x17, 0x72, 0x8d, 0xab, 0x49, 0x38, 0x7e, 0x01, 0x3d, 0x8c, 0x27, 0x7e, 0xc9, 0x14, 0x6c, 0x6e, - 0x28, 0x98, 0x53, 0xfd, 0x9b, 0x75, 0x86, 0x75, 0xf5, 0x27, 0xe4, 0x14, 0x97, 0x39, 0x80, 0x5f, - 0x36, 0x5e, 0x7f, 0x53, 0x3d, 0x67, 0xcb, 0xd1, 0xde, 0xfd, 0x62, 0x45, 0xd1, 0x72, 0x45, 0xd1, - 0xcf, 0x8a, 0xa2, 0x8f, 0x8c, 0x7a, 0xcb, 0x8c, 0x7a, 0x5f, 0x19, 0xf5, 0x9e, 0x2e, 0xa2, 0x58, - 0x3f, 0xcf, 0x46, 0xc1, 0x58, 0x4e, 0x99, 0x3b, 0x74, 0x22, 0x55, 0xb4, 0x9e, 0xd9, 0xeb, 0x39, - 0x7b, 0xfb, 0xf7, 0x7a, 0x3d, 0x4f, 0x20, 0x1d, 0x55, 0xcc, 0xeb, 0xcf, 0x7e, 0x03, 0x00, 0x00, - 0xff, 0xff, 0xeb, 0xe0, 0x85, 0x41, 0x0b, 0x02, 0x00, 0x00, +var fileDescriptor_3a670ad1a329246b = []byte{ + // 317 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0x31, 0x4f, 0x02, 0x31, + 0x1c, 0xc5, 0xaf, 0xa0, 0x28, 0xc5, 0xc5, 0x0b, 0x31, 0x27, 0x24, 0x85, 0x30, 0xb1, 0xd0, 0x26, + 0x38, 0xe8, 0xa2, 0x03, 0x31, 0x1a, 0x16, 0x43, 0x70, 0x73, 0x21, 0xc7, 0xf1, 0xef, 0x79, 0x11, + 0xae, 0x97, 0xb6, 0x24, 0xf2, 0x05, 0x5c, 0xf5, 0x63, 0x31, 0x32, 0x3a, 0x19, 0x03, 0x5f, 0xc4, + 0x5c, 0x5b, 0x13, 0x0d, 0xb7, 0xb5, 0x79, 0xbf, 0xf7, 0x7f, 0x2f, 0x0f, 0xb7, 0x52, 0x31, 0x5f, + 0x2a, 0xc6, 0x01, 0x24, 0xf0, 0x65, 0x3a, 0x03, 0xc9, 0x62, 0x48, 0x41, 0x25, 0x8a, 0x66, 0x52, + 0x68, 0xe1, 0x9f, 0x1a, 0x80, 0xfe, 0x01, 0x1a, 0xf5, 0x58, 0xc4, 0xc2, 0xa8, 0x2c, 0x7f, 0x59, + 0xb0, 0xd1, 0xdc, 0xbf, 0xc4, 0x01, 0x9c, 0x48, 0xf6, 0xc5, 0x2c, 0x94, 0xe1, 0xc2, 0xa5, 0x74, + 0xde, 0x10, 0x3e, 0xb9, 0xb7, 0xb9, 0x8f, 0x3a, 0xd4, 0xe0, 0x5f, 0xe2, 0x8a, 0x05, 0x02, 0xd4, + 0x46, 0xdd, 0x5a, 0xff, 0x9c, 0xee, 0xf5, 0xa0, 0x23, 0x03, 0x0c, 0x0e, 0xd6, 0x5f, 0x2d, 0x6f, + 0xec, 0x70, 0xff, 0x1a, 0x57, 0x39, 0xc0, 0x24, 0x49, 0xb9, 0x50, 0x41, 0xa9, 0x5d, 0xee, 0xd6, + 0xfa, 0x8d, 0x02, 0xef, 0x1d, 0xc0, 0x30, 0xe5, 0xc2, 0x99, 0x8f, 0xb9, 0xfd, 0xaa, 0xce, 0x3b, + 0xc2, 0x47, 0x4e, 0xf3, 0xeb, 0xf8, 0x30, 0x0b, 0x57, 0x20, 0x4d, 0x85, 0xea, 0xd8, 0x7e, 0xfc, + 0x1b, 0x5c, 0xcd, 0xc2, 0xe8, 0x05, 0xf4, 0x24, 0x99, 0x05, 0x25, 0x53, 0xae, 0x59, 0x58, 0x2e, + 0x67, 0x86, 0xb7, 0xbf, 0x09, 0xd6, 0x33, 0x9c, 0xf9, 0x14, 0x97, 0x39, 0x40, 0x50, 0x36, 0xce, + 0xb3, 0xe2, 0x6a, 0xce, 0x94, 0x83, 0x83, 0xf1, 0x7a, 0x4b, 0xd0, 0x66, 0x4b, 0xd0, 0xf7, 0x96, + 0xa0, 0x8f, 0x1d, 0xf1, 0x36, 0x3b, 0xe2, 0x7d, 0xee, 0x88, 0xf7, 0x74, 0x15, 0x27, 0xfa, 0x79, + 0x39, 0xa5, 0x91, 0x58, 0xb0, 0x87, 0xfc, 0x4c, 0x6f, 0x94, 0x8f, 0x19, 0x89, 0x39, 0x33, 0x57, + 0x7b, 0x91, 0x90, 0xc0, 0x5e, 0xff, 0xad, 0xae, 0x57, 0x19, 0xa8, 0x69, 0xc5, 0xac, 0x7e, 0xf1, + 0x13, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xdd, 0x16, 0xb7, 0xfe, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/params.pb.go b/x/feerefunder/types/params.pb.go index 62f1e84f..c97cf773 100644 --- a/x/feerefunder/types/params.pb.go +++ b/x/feerefunder/types/params.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/feerefunder/params.proto +// source: nolus/feerefunder/params.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -32,7 +31,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_2dae67276ca81c89, []int{0} + return fileDescriptor_524ff10ed538e5f3, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -69,26 +68,27 @@ func (m *Params) GetMinFee() Fee { } func init() { - proto.RegisterType((*Params)(nil), "neutron.feerefunder.Params") + proto.RegisterType((*Params)(nil), "nolus.feerefunder.Params") } -func init() { proto.RegisterFile("neutron/feerefunder/params.proto", fileDescriptor_2dae67276ca81c89) } +func init() { proto.RegisterFile("nolus/feerefunder/params.proto", fileDescriptor_524ff10ed538e5f3) } -var fileDescriptor_2dae67276ca81c89 = []byte{ - // 207 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, - 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xaa, - 0xd0, 0x43, 0x52, 0x21, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x96, 0xd7, 0x07, 0xb1, 0x20, 0x4a, - 0xa5, 0x64, 0xb1, 0x19, 0x96, 0x96, 0x9a, 0x0a, 0x91, 0x56, 0x72, 0xe7, 0x62, 0x0b, 0x00, 0x9b, - 0x2c, 0x64, 0xce, 0xc5, 0x9e, 0x9b, 0x99, 0x17, 0x9f, 0x96, 0x9a, 0x2a, 0xc1, 0xa8, 0xc0, 0xa8, - 0xc1, 0x6d, 0x24, 0xa1, 0x87, 0xc5, 0x16, 0x3d, 0xb7, 0xd4, 0x54, 0x27, 0x96, 0x13, 0xf7, 0xe4, - 0x19, 0x82, 0xd8, 0x72, 0x33, 0xf3, 0xdc, 0x52, 0x53, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, - 0xf2, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xd3, 0xf4, 0xcc, 0x92, - 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x89, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, - 0x7e, 0x99, 0x89, 0x7e, 0x05, 0x8a, 0xeb, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x0e, - 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x22, 0x03, 0x03, 0x97, 0x0e, 0x01, 0x00, 0x00, +var fileDescriptor_524ff10ed538e5f3 = []byte{ + // 212 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, 0x2f, 0x48, + 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0xcb, 0xeb, 0x21, + 0xc9, 0x4b, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x65, 0xf5, 0x41, 0x2c, 0x88, 0x42, 0x29, 0x69, + 0x4c, 0x83, 0xd2, 0x52, 0x53, 0x21, 0x92, 0x4a, 0xae, 0x5c, 0x6c, 0x01, 0x60, 0x53, 0x85, 0x4c, + 0xb9, 0xd8, 0x73, 0x33, 0xf3, 0xe2, 0xd3, 0x52, 0x53, 0x25, 0x18, 0x15, 0x18, 0x35, 0xb8, 0x8d, + 0xc4, 0xf4, 0x30, 0x6c, 0xd0, 0x73, 0x4b, 0x4d, 0x75, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x88, + 0x2d, 0x37, 0x33, 0xcf, 0x2d, 0x35, 0xd5, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0xa7, 0xa0, 0x13, + 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, + 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xb2, 0x48, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, + 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xf7, 0x03, 0x99, 0xa7, 0x1b, 0x00, 0xb2, 0x38, 0x39, 0x3f, 0x47, + 0x1f, 0x6c, 0xbc, 0x6e, 0x72, 0x7e, 0x51, 0xaa, 0x7e, 0x05, 0x8a, 0xf3, 0x4a, 0x2a, 0x0b, 0x52, + 0x8b, 0x93, 0xd8, 0xc0, 0x2e, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x15, 0xcc, 0x80, + 0x09, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/query.pb.go b/x/feerefunder/types/query.pb.go index fe73033b..d0fcb947 100644 --- a/x/feerefunder/types/query.pb.go +++ b/x/feerefunder/types/query.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/feerefunder/query.proto +// source: nolus/feerefunder/query.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -18,6 +14,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -39,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c20b5686ec46d4e6, []int{0} + return fileDescriptor_7346a51f37965875, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c20b5686ec46d4e6, []int{1} + return fileDescriptor_7346a51f37965875, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +123,7 @@ func (m *FeeInfoRequest) Reset() { *m = FeeInfoRequest{} } func (m *FeeInfoRequest) String() string { return proto.CompactTextString(m) } func (*FeeInfoRequest) ProtoMessage() {} func (*FeeInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c20b5686ec46d4e6, []int{2} + return fileDescriptor_7346a51f37965875, []int{2} } func (m *FeeInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -182,7 +181,7 @@ func (m *FeeInfoResponse) Reset() { *m = FeeInfoResponse{} } func (m *FeeInfoResponse) String() string { return proto.CompactTextString(m) } func (*FeeInfoResponse) ProtoMessage() {} func (*FeeInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c20b5686ec46d4e6, []int{3} + return fileDescriptor_7346a51f37965875, []int{3} } func (m *FeeInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -219,44 +218,44 @@ func (m *FeeInfoResponse) GetFeeInfo() *FeeInfo { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "neutron.feerefunder.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "neutron.feerefunder.QueryParamsResponse") - proto.RegisterType((*FeeInfoRequest)(nil), "neutron.feerefunder.FeeInfoRequest") - proto.RegisterType((*FeeInfoResponse)(nil), "neutron.feerefunder.FeeInfoResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "nolus.feerefunder.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "nolus.feerefunder.QueryParamsResponse") + proto.RegisterType((*FeeInfoRequest)(nil), "nolus.feerefunder.FeeInfoRequest") + proto.RegisterType((*FeeInfoResponse)(nil), "nolus.feerefunder.FeeInfoResponse") } -func init() { proto.RegisterFile("neutron/feerefunder/query.proto", fileDescriptor_c20b5686ec46d4e6) } +func init() { proto.RegisterFile("nolus/feerefunder/query.proto", fileDescriptor_7346a51f37965875) } -var fileDescriptor_c20b5686ec46d4e6 = []byte{ +var fileDescriptor_7346a51f37965875 = []byte{ // 441 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x6b, 0xd4, 0x40, - 0x14, 0xc6, 0x77, 0xd6, 0xba, 0xdb, 0x8e, 0xa0, 0x30, 0x2d, 0x58, 0x62, 0x4d, 0xd7, 0xa8, 0xec, - 0x2a, 0x34, 0x43, 0xab, 0x22, 0x5e, 0x7b, 0x10, 0xd6, 0x8b, 0x35, 0x47, 0x2f, 0x65, 0x92, 0xbc, - 0x4c, 0x03, 0xdd, 0x79, 0xe9, 0xcc, 0xa4, 0xd8, 0xab, 0x5e, 0x3d, 0x08, 0x5e, 0xfd, 0x83, 0x7a, - 0x2c, 0x78, 0xf1, 0x24, 0xb2, 0xeb, 0x1f, 0x22, 0x99, 0x4c, 0x8b, 0xc5, 0xd8, 0xde, 0x66, 0xde, - 0xfb, 0xbe, 0x6f, 0x7e, 0xef, 0x25, 0x74, 0x53, 0x41, 0x6d, 0x35, 0x2a, 0x5e, 0x00, 0x68, 0x28, - 0x6a, 0x95, 0x83, 0xe6, 0x47, 0x35, 0xe8, 0x93, 0xb8, 0xd2, 0x68, 0x91, 0xad, 0x7a, 0x41, 0xfc, - 0x97, 0x20, 0x78, 0x9a, 0xa1, 0x99, 0xa1, 0xe1, 0xa9, 0x30, 0xd0, 0xaa, 0xf9, 0xf1, 0x76, 0x0a, - 0x56, 0x6c, 0xf3, 0x4a, 0xc8, 0x52, 0x09, 0x5b, 0xa2, 0x6a, 0x03, 0x82, 0x35, 0x89, 0x12, 0xdd, - 0x91, 0x37, 0x27, 0x5f, 0xdd, 0x90, 0x88, 0xf2, 0x10, 0xb8, 0xa8, 0x4a, 0x2e, 0x94, 0x42, 0xeb, - 0x2c, 0xc6, 0x77, 0x1f, 0x74, 0x51, 0x49, 0x50, 0x60, 0xca, 0x73, 0xc9, 0xa8, 0x4b, 0x52, 0x09, - 0x2d, 0x66, 0x5e, 0x11, 0xad, 0x51, 0xf6, 0xae, 0x41, 0xdb, 0x73, 0xc5, 0x04, 0x8e, 0x6a, 0x30, - 0x36, 0xda, 0xa3, 0xab, 0x97, 0xaa, 0xa6, 0x42, 0x65, 0x80, 0xbd, 0xa2, 0x83, 0xd6, 0xbc, 0x4e, - 0x46, 0x64, 0x72, 0x6b, 0xe7, 0x5e, 0xdc, 0x31, 0x77, 0xdc, 0x9a, 0x76, 0x97, 0x4e, 0x7f, 0x6e, - 0xf6, 0x12, 0x6f, 0x88, 0x72, 0x7a, 0xfb, 0x35, 0xc0, 0x54, 0x15, 0xe8, 0xdf, 0x60, 0xf7, 0x29, - 0xcd, 0x0e, 0x84, 0x52, 0x70, 0xb8, 0x5f, 0xe6, 0x2e, 0x70, 0x25, 0x59, 0xf1, 0x95, 0x69, 0xce, - 0xee, 0xd2, 0x61, 0x85, 0xda, 0x36, 0xbd, 0xbe, 0xeb, 0x0d, 0x9a, 0xeb, 0x34, 0x67, 0x01, 0x5d, - 0x36, 0x4d, 0x84, 0xca, 0x60, 0xfd, 0xc6, 0x88, 0x4c, 0x96, 0x92, 0x8b, 0x7b, 0xf4, 0x86, 0xde, - 0xb9, 0x78, 0xc5, 0x33, 0xbf, 0xa4, 0xcb, 0x05, 0xc0, 0x7e, 0xa9, 0x0a, 0xf4, 0xd4, 0x1b, 0x9d, - 0xd4, 0xe7, 0xbe, 0x61, 0xd1, 0x1e, 0x76, 0xbe, 0xf5, 0xe9, 0x4d, 0xb7, 0x04, 0xf6, 0x99, 0xd0, - 0x41, 0x3b, 0x14, 0x1b, 0x77, 0x7a, 0xff, 0xdd, 0x60, 0x30, 0xb9, 0x5e, 0xd8, 0x02, 0x46, 0xfc, - 0xe3, 0xf7, 0xdf, 0x5f, 0xfb, 0x4f, 0xd8, 0x98, 0x7b, 0xc7, 0x16, 0x6a, 0xc9, 0xff, 0xff, 0xe1, - 0xd8, 0x27, 0x42, 0x87, 0x9e, 0x96, 0x3d, 0xbc, 0x72, 0x16, 0xcf, 0xf2, 0xe8, 0x6a, 0x91, 0xe7, - 0xd8, 0x72, 0x1c, 0x63, 0xf6, 0xf8, 0x5a, 0x8e, 0x66, 0x97, 0xbb, 0x6f, 0x4f, 0xe7, 0x21, 0x39, - 0x9b, 0x87, 0xe4, 0xd7, 0x3c, 0x24, 0x5f, 0x16, 0x61, 0xef, 0x6c, 0x11, 0xf6, 0x7e, 0x2c, 0xc2, - 0xde, 0xfb, 0x17, 0xb2, 0xb4, 0x07, 0x75, 0x1a, 0x67, 0x38, 0xeb, 0x8c, 0x3a, 0x7e, 0xce, 0x3f, - 0x5c, 0xca, 0xb3, 0x27, 0x15, 0x98, 0x74, 0xe0, 0x7e, 0xc8, 0x67, 0x7f, 0x02, 0x00, 0x00, 0xff, - 0xff, 0xa5, 0xf2, 0x80, 0x6c, 0x6d, 0x03, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xcf, 0x6b, 0xd4, 0x40, + 0x14, 0xde, 0xd4, 0x9a, 0x6d, 0x47, 0x50, 0x1c, 0x0b, 0xed, 0x46, 0x9b, 0x6d, 0x03, 0x4a, 0x11, + 0x9a, 0xa1, 0x15, 0xd1, 0x73, 0x0f, 0xe2, 0x5e, 0x4a, 0xcd, 0xd1, 0x4b, 0x99, 0x24, 0x2f, 0x69, + 0x20, 0x3b, 0x2f, 0x9b, 0x99, 0x88, 0xf5, 0xe8, 0x5f, 0x20, 0xf8, 0x4f, 0xf5, 0x58, 0xf0, 0xe2, + 0x49, 0x64, 0xd7, 0xbf, 0xc1, 0xb3, 0xcc, 0x8f, 0x16, 0x4b, 0xd6, 0x7a, 0x7b, 0xf3, 0xbe, 0xef, + 0x7b, 0xdf, 0x37, 0x6f, 0x86, 0x6c, 0x0b, 0xac, 0x3b, 0xc9, 0x0a, 0x80, 0x16, 0x8a, 0x4e, 0xe4, + 0xd0, 0xb2, 0x59, 0x07, 0xed, 0x79, 0xdc, 0xb4, 0xa8, 0x90, 0x3e, 0x34, 0x70, 0xfc, 0x17, 0x1c, + 0x3c, 0xcf, 0x50, 0x4e, 0x51, 0xb2, 0x94, 0x4b, 0xb0, 0x5c, 0xf6, 0xe1, 0x20, 0x05, 0xc5, 0x0f, + 0x58, 0xc3, 0xcb, 0x4a, 0x70, 0x55, 0xa1, 0xb0, 0xf2, 0x60, 0xa3, 0xc4, 0x12, 0x4d, 0xc9, 0x74, + 0xe5, 0xba, 0x4f, 0x4a, 0xc4, 0xb2, 0x06, 0xc6, 0x9b, 0x8a, 0x71, 0x21, 0x50, 0x19, 0x89, 0x74, + 0xe8, 0xb8, 0x9f, 0xa8, 0x04, 0x01, 0xb2, 0xba, 0x22, 0x84, 0x7d, 0x42, 0xc3, 0x5b, 0x3e, 0x75, + 0x78, 0xb4, 0x41, 0xe8, 0x3b, 0x1d, 0xeb, 0xc4, 0x34, 0x13, 0x98, 0x75, 0x20, 0x55, 0x74, 0x4c, + 0x1e, 0xdd, 0xe8, 0xca, 0x06, 0x85, 0x04, 0xfa, 0x8a, 0xf8, 0x56, 0xbc, 0xe5, 0xed, 0x78, 0x7b, + 0xf7, 0x0e, 0x47, 0x71, 0xef, 0xc6, 0xb1, 0x95, 0x1c, 0xad, 0x5e, 0xfc, 0x18, 0x0f, 0x12, 0x47, + 0x8f, 0x72, 0x72, 0xff, 0x0d, 0xc0, 0x44, 0x14, 0xe8, 0x1c, 0xe8, 0x36, 0x21, 0xd9, 0x19, 0x17, + 0x02, 0xea, 0xd3, 0x2a, 0x37, 0xe3, 0xd6, 0x93, 0x75, 0xd7, 0x99, 0xe4, 0x74, 0x93, 0x0c, 0x1b, + 0x6c, 0x95, 0xc6, 0x56, 0x0c, 0xe6, 0xeb, 0xe3, 0x24, 0xa7, 0x01, 0x59, 0x93, 0x7a, 0x84, 0xc8, + 0x60, 0xeb, 0xce, 0x8e, 0xb7, 0xb7, 0x9a, 0x5c, 0x9f, 0xa3, 0xb7, 0xe4, 0xc1, 0xb5, 0x8b, 0x4b, + 0xfc, 0x92, 0xac, 0x15, 0x00, 0xa7, 0x95, 0x28, 0xd0, 0x65, 0x0e, 0x96, 0x64, 0xbe, 0x52, 0x0d, + 0x0b, 0x5b, 0x1c, 0xfe, 0xf6, 0xc8, 0x5d, 0xb3, 0x00, 0xfa, 0x89, 0xf8, 0xf6, 0x46, 0xf4, 0xe9, + 0x12, 0x61, 0x7f, 0x75, 0xc1, 0xb3, 0xff, 0xd1, 0x6c, 0xb2, 0x68, 0xf7, 0xf3, 0xb7, 0x5f, 0x5f, + 0x57, 0x1e, 0xd3, 0x11, 0xfb, 0xd7, 0x0b, 0xd1, 0x19, 0x19, 0xba, 0x64, 0x74, 0xf7, 0x96, 0xd4, + 0xce, 0x38, 0xba, 0x8d, 0xe2, 0x4c, 0xc7, 0xc6, 0x74, 0x44, 0x37, 0x97, 0x98, 0xea, 0x1d, 0x1d, + 0x25, 0x17, 0xf3, 0xd0, 0xbb, 0x9c, 0x87, 0xde, 0xcf, 0x79, 0xe8, 0x7d, 0x59, 0x84, 0x83, 0xcb, + 0x45, 0x38, 0xf8, 0xbe, 0x08, 0x07, 0xef, 0x5f, 0x97, 0x95, 0x3a, 0xeb, 0xd2, 0x38, 0xc3, 0x29, + 0x3b, 0xd6, 0xe2, 0xfd, 0x13, 0xfd, 0x81, 0x32, 0xac, 0xed, 0xac, 0xfd, 0x0c, 0x5b, 0x60, 0x1f, + 0x6f, 0x8c, 0x54, 0xe7, 0x0d, 0xc8, 0xd4, 0x37, 0x3f, 0xed, 0xc5, 0x9f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x09, 0x5d, 0x11, 0x4c, 0x3e, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -286,7 +285,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.feerefunder.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.feerefunder.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -295,7 +294,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) FeeInfo(ctx context.Context, in *FeeInfoRequest, opts ...grpc.CallOption) (*FeeInfoResponse, error) { out := new(FeeInfoResponse) - err := c.cc.Invoke(ctx, "/neutron.feerefunder.Query/FeeInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.feerefunder.Query/FeeInfo", in, out, opts...) if err != nil { return nil, err } @@ -334,7 +333,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.feerefunder.Query/Params", + FullMethod: "/nolus.feerefunder.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -352,7 +351,7 @@ func _Query_FeeInfo_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.feerefunder.Query/FeeInfo", + FullMethod: "/nolus.feerefunder.Query/FeeInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).FeeInfo(ctx, req.(*FeeInfoRequest)) @@ -361,7 +360,7 @@ func _Query_FeeInfo_Handler(srv interface{}, ctx context.Context, dec func(inter } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.feerefunder.Query", + ServiceName: "nolus.feerefunder.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -374,7 +373,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/feerefunder/query.proto", + Metadata: "nolus/feerefunder/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/query.pb.gw.go b/x/feerefunder/types/query.pb.gw.go index 5dce6d4e..f2a08613 100644 --- a/x/feerefunder/types/query.pb.gw.go +++ b/x/feerefunder/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: neutron/feerefunder/query.proto +// source: nolus/feerefunder/query.proto /* Package types is a reverse proxy. @@ -224,9 +224,9 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"neutron-org", "neutron", "feerefunder", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "feerefunder", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_FeeInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"neutron-org", "neutron", "feerefunder", "info"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_FeeInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "feerefunder", "info"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/feerefunder/types/tx.pb.go b/x/feerefunder/types/tx.pb.go index 8aaab733..3a6b8b3f 100644 --- a/x/feerefunder/types/tx.pb.go +++ b/x/feerefunder/types/tx.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/feerefunder/tx.proto +// source: nolus/feerefunder/tx.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/cosmos-sdk/types/tx/amino" @@ -19,6 +15,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -48,7 +47,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_2e613aff856d34ed, []int{0} + return fileDescriptor_56911478c0f385ff, []int{0} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -102,7 +101,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2e613aff856d34ed, []int{1} + return fileDescriptor_56911478c0f385ff, []int{1} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -132,36 +131,36 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgUpdateParams)(nil), "neutron.feerefunder.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "neutron.feerefunder.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("neutron/feerefunder/tx.proto", fileDescriptor_2e613aff856d34ed) } - -var fileDescriptor_2e613aff856d34ed = []byte{ - // 347 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc9, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, - 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xca, 0xea, 0x21, 0xc9, 0x4a, - 0x09, 0x26, 0xe6, 0x66, 0xe6, 0xe5, 0xeb, 0x83, 0x49, 0x88, 0x3a, 0x29, 0xf1, 0xe4, 0xfc, 0xe2, - 0xdc, 0xfc, 0x62, 0xfd, 0xdc, 0xe2, 0x74, 0xfd, 0x32, 0x43, 0x10, 0x05, 0x95, 0x90, 0x84, 0x48, - 0xc4, 0x83, 0x79, 0xfa, 0x10, 0x0e, 0x54, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0x22, 0x0e, 0x62, - 0x41, 0x45, 0x15, 0xb0, 0xb9, 0xa7, 0x20, 0xb1, 0x28, 0x31, 0x17, 0xaa, 0x4f, 0x69, 0x27, 0x23, - 0x17, 0xbf, 0x6f, 0x71, 0x7a, 0x68, 0x41, 0x4a, 0x62, 0x49, 0x6a, 0x00, 0x58, 0x46, 0xc8, 0x8c, - 0x8b, 0x33, 0xb1, 0xb4, 0x24, 0x23, 0xbf, 0x28, 0xb3, 0xa4, 0x52, 0x82, 0x51, 0x81, 0x51, 0x83, - 0xd3, 0x49, 0xe2, 0xd2, 0x16, 0x5d, 0x11, 0xa8, 0x85, 0x8e, 0x29, 0x29, 0x45, 0xa9, 0xc5, 0xc5, - 0xc1, 0x25, 0x45, 0x99, 0x79, 0xe9, 0x41, 0x08, 0xa5, 0x42, 0x76, 0x5c, 0x6c, 0x10, 0xb3, 0x25, - 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0xa4, 0xf5, 0xb0, 0x78, 0x58, 0x0f, 0x62, 0x89, 0x13, 0xe7, - 0x89, 0x7b, 0xf2, 0x0c, 0x2b, 0x9e, 0x6f, 0xd0, 0x62, 0x0c, 0x82, 0xea, 0xb2, 0xd2, 0x6b, 0x7a, - 0xbe, 0x41, 0x0b, 0x61, 0x5e, 0xd7, 0xf3, 0x0d, 0x5a, 0xd2, 0xc8, 0x0e, 0x47, 0x73, 0xa7, 0x92, - 0x24, 0x97, 0x38, 0x9a, 0x50, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x51, 0x01, 0x17, - 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x12, 0x17, 0x0f, 0x8a, 0xcf, 0x54, 0xb0, 0xba, 0x08, 0xcd, 0x10, - 0x29, 0x1d, 0x62, 0x54, 0xc1, 0xac, 0x92, 0x62, 0x6d, 0x00, 0x79, 0xc2, 0xc9, 0xff, 0xc4, 0x23, - 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, - 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x4c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, - 0x92, 0xf3, 0x73, 0xf5, 0xa1, 0x06, 0xeb, 0xe6, 0x17, 0xa5, 0xc3, 0xd8, 0xfa, 0x65, 0x26, 0xfa, - 0x15, 0xa8, 0x09, 0xa6, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x41, 0xc6, 0x80, 0x00, 0x00, - 0x00, 0xff, 0xff, 0xb2, 0x97, 0x0b, 0xe2, 0x54, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgUpdateParams)(nil), "nolus.feerefunder.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "nolus.feerefunder.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("nolus/feerefunder/tx.proto", fileDescriptor_56911478c0f385ff) } + +var fileDescriptor_56911478c0f385ff = []byte{ + // 352 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, 0x2f, 0xa9, + 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0xcb, 0xe9, 0x21, 0xc9, 0x49, 0x09, 0x26, + 0xe6, 0x66, 0xe6, 0xe5, 0xeb, 0x83, 0x49, 0x88, 0x2a, 0x29, 0xf1, 0xe4, 0xfc, 0xe2, 0xdc, 0xfc, + 0x62, 0xfd, 0xdc, 0xe2, 0x74, 0xfd, 0x32, 0x43, 0x10, 0x05, 0x95, 0x90, 0x84, 0x48, 0xc4, 0x83, + 0x79, 0xfa, 0x10, 0x0e, 0x54, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0x22, 0x0e, 0x62, 0x41, 0x45, + 0xe5, 0x30, 0xdd, 0x52, 0x90, 0x58, 0x94, 0x98, 0x0b, 0xd5, 0xa5, 0xb4, 0x9d, 0x91, 0x8b, 0xdf, + 0xb7, 0x38, 0x3d, 0xb4, 0x20, 0x25, 0xb1, 0x24, 0x35, 0x00, 0x2c, 0x23, 0x64, 0xc6, 0xc5, 0x99, + 0x58, 0x5a, 0x92, 0x91, 0x5f, 0x94, 0x59, 0x52, 0x29, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xe9, 0x24, + 0x71, 0x69, 0x8b, 0xae, 0x08, 0xd4, 0x3a, 0xc7, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0xe2, 0xe0, 0x92, + 0xa2, 0xcc, 0xbc, 0xf4, 0x20, 0x84, 0x52, 0x21, 0x1b, 0x2e, 0x36, 0x88, 0xd9, 0x12, 0x4c, 0x0a, + 0x8c, 0x1a, 0xdc, 0x46, 0x92, 0x7a, 0x18, 0x9e, 0xd5, 0x83, 0x58, 0xe1, 0xc4, 0x79, 0xe2, 0x9e, + 0x3c, 0xc3, 0x8a, 0xe7, 0x1b, 0xb4, 0x18, 0x83, 0xa0, 0x7a, 0xac, 0xf4, 0x9a, 0x9e, 0x6f, 0xd0, + 0x42, 0x98, 0xd6, 0xf5, 0x7c, 0x83, 0x96, 0x34, 0xb2, 0xb3, 0xd1, 0x5c, 0xa9, 0x24, 0xc9, 0x25, + 0x8e, 0x26, 0x14, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x6a, 0x94, 0xc3, 0xc5, 0xec, 0x5b, + 0x9c, 0x2e, 0x14, 0xc7, 0xc5, 0x83, 0xe2, 0x2f, 0x25, 0x2c, 0xee, 0x41, 0x33, 0x42, 0x4a, 0x8b, + 0xb0, 0x1a, 0x98, 0x35, 0x52, 0xac, 0x0d, 0x20, 0x0f, 0x38, 0x05, 0x9d, 0x78, 0x24, 0xc7, 0x78, + 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, + 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x45, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, + 0xae, 0xbe, 0x1f, 0xc8, 0x58, 0xdd, 0x00, 0x50, 0xa0, 0x27, 0xe7, 0xe7, 0xe8, 0x83, 0x6d, 0xd1, + 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0xaf, 0x40, 0x4d, 0x29, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, + 0xd8, 0x31, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x04, 0x81, 0x0b, 0x2e, 0x4b, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -189,7 +188,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.feerefunder.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.feerefunder.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -223,7 +222,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.feerefunder.Msg/UpdateParams", + FullMethod: "/nolus.feerefunder.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -232,7 +231,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.feerefunder.Msg", + ServiceName: "nolus.feerefunder.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -241,7 +240,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/feerefunder/tx.proto", + Metadata: "nolus/feerefunder/tx.proto", } func (m *MsgUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/genesis.pb.go b/x/interchainqueries/types/genesis.pb.go index ef69e7dd..ff93866d 100644 --- a/x/interchainqueries/types/genesis.pb.go +++ b/x/interchainqueries/types/genesis.pb.go @@ -1,19 +1,18 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchainqueries/genesis.proto +// source: nolus/interchainqueries/genesis.proto package types import ( fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -58,7 +57,7 @@ func (m *RegisteredQuery) Reset() { *m = RegisteredQuery{} } func (m *RegisteredQuery) String() string { return proto.CompactTextString(m) } func (*RegisteredQuery) ProtoMessage() {} func (*RegisteredQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_ed312d37df0260a6, []int{0} + return fileDescriptor_08fbcb001df4c4fa, []int{0} } func (m *RegisteredQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -183,7 +182,7 @@ func (m *KVKey) Reset() { *m = KVKey{} } func (m *KVKey) String() string { return proto.CompactTextString(m) } func (*KVKey) ProtoMessage() {} func (*KVKey) Descriptor() ([]byte, []int) { - return fileDescriptor_ed312d37df0260a6, []int{1} + return fileDescriptor_08fbcb001df4c4fa, []int{1} } func (m *KVKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,7 +235,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_ed312d37df0260a6, []int{2} + return fileDescriptor_08fbcb001df4c4fa, []int{2} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -280,57 +279,58 @@ func (m *GenesisState) GetRegisteredQueries() []*RegisteredQuery { } func init() { - proto.RegisterType((*RegisteredQuery)(nil), "neutron.interchainqueries.RegisteredQuery") - proto.RegisterType((*KVKey)(nil), "neutron.interchainqueries.KVKey") - proto.RegisterType((*GenesisState)(nil), "neutron.interchainqueries.GenesisState") + proto.RegisterType((*RegisteredQuery)(nil), "nolus.interchainqueries.RegisteredQuery") + proto.RegisterType((*KVKey)(nil), "nolus.interchainqueries.KVKey") + proto.RegisterType((*GenesisState)(nil), "nolus.interchainqueries.GenesisState") } func init() { - proto.RegisterFile("neutron/interchainqueries/genesis.proto", fileDescriptor_ed312d37df0260a6) + proto.RegisterFile("nolus/interchainqueries/genesis.proto", fileDescriptor_08fbcb001df4c4fa) } -var fileDescriptor_ed312d37df0260a6 = []byte{ - // 638 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x8e, 0xd3, 0xb4, 0x25, 0x9b, 0xb4, 0xc0, 0xd2, 0x83, 0x5b, 0x09, 0x27, 0xa4, 0x02, 0x22, - 0xa4, 0x7a, 0x9b, 0xd2, 0x1b, 0x07, 0x44, 0x91, 0xf8, 0x2b, 0x87, 0xe2, 0x16, 0x24, 0xb8, 0x58, - 0xfe, 0x19, 0x9c, 0x55, 0x93, 0x5d, 0xb3, 0xbb, 0x0e, 0xf8, 0x2d, 0x78, 0x8e, 0x3e, 0x49, 0x8f, - 0x3d, 0x72, 0x02, 0xd4, 0x3e, 0x07, 0x12, 0xf2, 0xd8, 0xa1, 0x05, 0xd2, 0x9e, 0x3c, 0xfe, 0xf6, - 0x9b, 0x6f, 0x67, 0x67, 0xbe, 0x21, 0xf7, 0x05, 0x64, 0x46, 0x49, 0xc1, 0xb8, 0x30, 0xa0, 0xa2, - 0x61, 0xc0, 0xc5, 0xa7, 0x0c, 0x14, 0x07, 0xcd, 0x12, 0x10, 0xa0, 0xb9, 0x76, 0x53, 0x25, 0x8d, - 0xa4, 0xab, 0x15, 0xd1, 0xfd, 0x8f, 0xb8, 0xe6, 0x44, 0x52, 0x8f, 0xa5, 0x66, 0x61, 0xa0, 0x81, - 0x4d, 0x06, 0x21, 0x98, 0x60, 0xc0, 0x22, 0xc9, 0x45, 0x99, 0xba, 0xb6, 0x92, 0xc8, 0x44, 0x62, - 0xc8, 0x8a, 0xa8, 0x42, 0x3b, 0x3c, 0x8c, 0x58, 0x24, 0x15, 0xb0, 0x68, 0xc4, 0x41, 0x18, 0x36, - 0x19, 0x54, 0x51, 0x45, 0xb8, 0x77, 0x79, 0x69, 0x69, 0xa0, 0x82, 0x71, 0x55, 0x59, 0xef, 0x57, - 0x83, 0x5c, 0xf7, 0x20, 0xe1, 0xda, 0x80, 0x82, 0xf8, 0x4d, 0x06, 0x2a, 0xa7, 0xcb, 0xa4, 0xce, - 0x63, 0xdb, 0xea, 0x5a, 0xfd, 0x86, 0x57, 0xe7, 0x31, 0x5d, 0x21, 0xf3, 0xf2, 0xb3, 0x00, 0x65, - 0xd7, 0xbb, 0x56, 0xbf, 0xe9, 0x95, 0x3f, 0xf4, 0x36, 0x21, 0x85, 0x62, 0xee, 0x9b, 0x3c, 0x05, - 0x7b, 0x0e, 0x8f, 0x9a, 0x88, 0x1c, 0xe4, 0x29, 0xd0, 0x6d, 0xd2, 0x38, 0x84, 0x5c, 0xdb, 0x8d, - 0xee, 0x5c, 0xbf, 0xb5, 0xd5, 0x75, 0x2f, 0xed, 0x80, 0xbb, 0xfb, 0x6e, 0x17, 0x72, 0x0f, 0xd9, - 0x94, 0x91, 0x5b, 0x46, 0x05, 0x42, 0x07, 0x91, 0xe1, 0x52, 0x68, 0xff, 0x23, 0x1f, 0x19, 0x50, - 0xf6, 0x3c, 0xaa, 0xd3, 0x8b, 0x47, 0xcf, 0xf0, 0x84, 0xae, 0x93, 0xa5, 0x48, 0x0a, 0x01, 0x08, - 0xfa, 0x3c, 0xb6, 0x17, 0x90, 0xda, 0x3e, 0x07, 0x5f, 0xc6, 0x05, 0x29, 0x4b, 0xe3, 0xc0, 0x80, - 0x9f, 0x82, 0xe2, 0x32, 0xb6, 0x17, 0xf1, 0x6d, 0xed, 0x12, 0xdc, 0x43, 0x8c, 0xbe, 0x22, 0xbd, - 0x51, 0xa0, 0x8d, 0xaf, 0xb3, 0x70, 0xcc, 0x8d, 0x81, 0xd8, 0x57, 0xa0, 0xb3, 0x91, 0xf1, 0x47, - 0x32, 0x0a, 0x46, 0xfe, 0x10, 0x78, 0x32, 0x34, 0xf6, 0x35, 0xcc, 0x74, 0x0a, 0xe6, 0xfe, 0x94, - 0xe8, 0x21, 0xef, 0x75, 0x41, 0x7b, 0x81, 0x2c, 0x3a, 0x24, 0xeb, 0xb3, 0xb5, 0x14, 0x8c, 0xa5, - 0x81, 0xa9, 0x58, 0xb3, 0x6b, 0xf5, 0x5b, 0x5b, 0x6b, 0x2e, 0x0f, 0x23, 0xb7, 0x18, 0xa6, 0x5b, - 0x8d, 0x70, 0x32, 0x70, 0x4b, 0x21, 0xaf, 0x33, 0xe3, 0x22, 0x0f, 0x35, 0xaa, 0x9b, 0x80, 0x2c, - 0xc6, 0x90, 0x4a, 0xcd, 0x8d, 0x4d, 0xb0, 0xd3, 0xab, 0x6e, 0x69, 0x28, 0xb7, 0x30, 0x94, 0x5b, - 0x19, 0xca, 0x7d, 0x2a, 0xb9, 0xd8, 0xd9, 0x3c, 0xfe, 0xde, 0xa9, 0x1d, 0xfd, 0xe8, 0xf4, 0x13, - 0x6e, 0x86, 0x59, 0xe8, 0x46, 0x72, 0xcc, 0x2a, 0xf7, 0x95, 0x9f, 0x0d, 0x1d, 0x1f, 0xb2, 0x62, - 0x9c, 0x1a, 0x13, 0xb4, 0x37, 0xd5, 0xa6, 0x77, 0xc9, 0x72, 0xf9, 0x16, 0xdf, 0xf0, 0x31, 0xc8, - 0xcc, 0xd8, 0x2d, 0x6c, 0xc4, 0x52, 0x89, 0x1e, 0x94, 0x20, 0xdd, 0x24, 0x2b, 0xea, 0x8f, 0x99, - 0xfc, 0xc0, 0x4c, 0x1f, 0xda, 0x46, 0x32, 0x3d, 0x3f, 0x7b, 0x62, 0xca, 0xfa, 0x7b, 0x1b, 0x64, - 0x1e, 0xe7, 0x4f, 0x29, 0x69, 0xa4, 0x81, 0x19, 0xa2, 0xed, 0x9a, 0x1e, 0xc6, 0xf4, 0x06, 0x99, - 0x3b, 0x84, 0x1c, 0x6d, 0xd7, 0xf6, 0x8a, 0xb0, 0x77, 0x64, 0x91, 0xf6, 0xf3, 0x72, 0xb5, 0xf6, - 0x4d, 0x60, 0x80, 0x3e, 0x26, 0x0b, 0xa5, 0x9f, 0x31, 0xb1, 0xb5, 0x75, 0xe7, 0x0a, 0xa3, 0xed, - 0x21, 0x71, 0xa7, 0x51, 0xb4, 0xc1, 0xab, 0xd2, 0xe8, 0x7b, 0x72, 0xa1, 0x2c, 0xbf, 0xa2, 0xda, - 0x75, 0xec, 0xe5, 0x83, 0x2b, 0xc4, 0xfe, 0x59, 0x1a, 0xef, 0xa6, 0xfa, 0x0b, 0xe0, 0xa0, 0x77, - 0xde, 0x1e, 0x9f, 0x3a, 0xd6, 0xc9, 0xa9, 0x63, 0xfd, 0x3c, 0x75, 0xac, 0xaf, 0x67, 0x4e, 0xed, - 0xe4, 0xcc, 0xa9, 0x7d, 0x3b, 0x73, 0x6a, 0x1f, 0x1e, 0x5d, 0x98, 0x40, 0x75, 0xc5, 0x86, 0x54, - 0xc9, 0x34, 0x66, 0x93, 0x6d, 0xf6, 0x65, 0xc6, 0xe6, 0xe2, 0x68, 0xc2, 0x05, 0xdc, 0xdc, 0x87, - 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x34, 0x51, 0x13, 0x7e, 0x04, 0x00, 0x00, +var fileDescriptor_08fbcb001df4c4fa = []byte{ + // 642 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x53, 0xcf, 0x6e, 0xd3, 0x4e, + 0x10, 0x8e, 0xd3, 0xb4, 0xfd, 0x65, 0x93, 0xf6, 0x07, 0x4b, 0x25, 0x4c, 0x25, 0x9c, 0x28, 0xa5, + 0x52, 0x2e, 0xd9, 0x6d, 0xc2, 0x19, 0x24, 0x8a, 0xc4, 0xbf, 0x22, 0x54, 0xdc, 0x0a, 0x10, 0x17, + 0x6b, 0x63, 0x0f, 0xc9, 0xaa, 0x8e, 0xd7, 0xec, 0xae, 0x0b, 0x7e, 0x0b, 0x9e, 0x82, 0x03, 0x4f, + 0xd2, 0x63, 0x8f, 0x9c, 0x00, 0xb5, 0x8f, 0xc1, 0x05, 0x79, 0xec, 0xd0, 0x02, 0xcd, 0xc9, 0xe3, + 0x6f, 0xbf, 0xf9, 0x76, 0x67, 0xe6, 0x1b, 0xb2, 0x9d, 0xa8, 0x38, 0x33, 0x5c, 0x26, 0x16, 0x74, + 0x38, 0x15, 0x32, 0x79, 0x9f, 0x81, 0x96, 0x60, 0xf8, 0x04, 0x12, 0x30, 0xd2, 0xb0, 0x54, 0x2b, + 0xab, 0xe8, 0x4d, 0xa4, 0xb1, 0x7f, 0x68, 0x9b, 0x5e, 0xa8, 0xcc, 0x4c, 0x19, 0x3e, 0x16, 0x06, + 0xf8, 0xf1, 0x70, 0x0c, 0x56, 0x0c, 0x79, 0xa8, 0x64, 0x52, 0x26, 0x6e, 0x6e, 0x4c, 0xd4, 0x44, + 0x61, 0xc8, 0x8b, 0xa8, 0x42, 0x3b, 0x72, 0x1c, 0xf2, 0x50, 0x69, 0xe0, 0x61, 0x2c, 0x21, 0xb1, + 0xfc, 0x78, 0x58, 0x45, 0x15, 0xe1, 0xce, 0xa2, 0x67, 0xa5, 0x42, 0x8b, 0x59, 0xf5, 0xaa, 0xde, + 0xcf, 0x06, 0xf9, 0xdf, 0x87, 0x89, 0x34, 0x16, 0x34, 0x44, 0x2f, 0x33, 0xd0, 0x39, 0x5d, 0x27, + 0x75, 0x19, 0xb9, 0x4e, 0xd7, 0xe9, 0x37, 0xfc, 0xba, 0x8c, 0xe8, 0x06, 0x59, 0x56, 0x1f, 0x12, + 0xd0, 0x6e, 0xbd, 0xeb, 0xf4, 0x9b, 0x7e, 0xf9, 0x43, 0x6f, 0x13, 0x52, 0x28, 0xe6, 0x81, 0xcd, + 0x53, 0x70, 0x97, 0xf0, 0xa8, 0x89, 0xc8, 0x61, 0x9e, 0x02, 0x1d, 0x91, 0xc6, 0x11, 0xe4, 0xc6, + 0x6d, 0x74, 0x97, 0xfa, 0xad, 0x91, 0xc7, 0x16, 0x54, 0xcf, 0xf6, 0x5e, 0xed, 0x41, 0xee, 0x23, + 0x97, 0x72, 0x72, 0xc3, 0x6a, 0x91, 0x18, 0x11, 0x5a, 0xa9, 0x12, 0x13, 0xbc, 0x93, 0xb1, 0x05, + 0xed, 0x2e, 0xa3, 0x36, 0xbd, 0x7c, 0xf4, 0x08, 0x4f, 0xe8, 0x16, 0x59, 0x0b, 0x55, 0x92, 0x00, + 0x82, 0x81, 0x8c, 0xdc, 0x15, 0xa4, 0xb6, 0x2f, 0xc0, 0xa7, 0x51, 0x41, 0xca, 0xd2, 0x48, 0x58, + 0x08, 0x52, 0xd0, 0x52, 0x45, 0xee, 0x2a, 0x56, 0xd6, 0x2e, 0xc1, 0x7d, 0xc4, 0xe8, 0x33, 0xd2, + 0x8b, 0x85, 0xb1, 0x81, 0xc9, 0xc6, 0x33, 0x69, 0x2d, 0x44, 0x81, 0x06, 0x93, 0xc5, 0x36, 0x88, + 0x55, 0x28, 0xe2, 0x60, 0x0a, 0x72, 0x32, 0xb5, 0xee, 0x7f, 0x98, 0xe9, 0x15, 0xcc, 0x83, 0x39, + 0xd1, 0x47, 0xde, 0xf3, 0x82, 0xf6, 0x04, 0x59, 0x74, 0x4a, 0xb6, 0xae, 0xd6, 0xd2, 0x30, 0x53, + 0x16, 0xe6, 0x62, 0xcd, 0xae, 0xd3, 0x6f, 0x8d, 0x36, 0x99, 0x1c, 0x87, 0xac, 0x18, 0x24, 0xab, + 0xc6, 0x77, 0x3c, 0x64, 0xa5, 0x90, 0xdf, 0xb9, 0xe2, 0x22, 0x1f, 0x35, 0xaa, 0x9b, 0x80, 0xac, + 0x46, 0x90, 0x2a, 0x23, 0xad, 0x4b, 0xb0, 0xcf, 0xb7, 0x58, 0x69, 0x26, 0x56, 0x98, 0x89, 0x55, + 0x66, 0x62, 0x0f, 0x95, 0x4c, 0x76, 0x77, 0x4e, 0xbe, 0x75, 0x6a, 0x5f, 0xbe, 0x77, 0xfa, 0x13, + 0x69, 0xa7, 0xd9, 0x98, 0x85, 0x6a, 0xc6, 0x2b, 0xe7, 0x95, 0x9f, 0x81, 0x89, 0x8e, 0x78, 0x31, + 0x4c, 0x83, 0x09, 0xc6, 0x9f, 0x6b, 0xd3, 0x6d, 0xb2, 0x5e, 0xd6, 0x12, 0x58, 0x39, 0x03, 0x95, + 0x59, 0xb7, 0x85, 0x8d, 0x58, 0x2b, 0xd1, 0xc3, 0x12, 0xa4, 0x3b, 0x64, 0x43, 0xff, 0xb6, 0x52, + 0x20, 0xec, 0xbc, 0xd0, 0x36, 0x92, 0xe9, 0xc5, 0xd9, 0x03, 0x5b, 0xbe, 0xbf, 0x37, 0x20, 0xcb, + 0x38, 0x7f, 0x4a, 0x49, 0x23, 0x15, 0x76, 0x8a, 0xa6, 0x6b, 0xfa, 0x18, 0xd3, 0x6b, 0x64, 0xe9, + 0x08, 0x72, 0x34, 0x5d, 0xdb, 0x2f, 0xc2, 0xde, 0x67, 0x87, 0xb4, 0x1f, 0x97, 0x4b, 0x75, 0x60, + 0x85, 0x05, 0x7a, 0x8f, 0xac, 0x94, 0x6e, 0xc6, 0xc4, 0xd6, 0xa8, 0xb3, 0xd0, 0x66, 0xfb, 0x48, + 0xdb, 0x6d, 0x14, 0x4d, 0xf0, 0xab, 0x24, 0xfa, 0x9a, 0x5c, 0x7a, 0x54, 0x50, 0x51, 0xdd, 0x3a, + 0x76, 0xb2, 0xbf, 0x50, 0xea, 0xaf, 0x75, 0xf1, 0xaf, 0xeb, 0x3f, 0x00, 0x09, 0x66, 0xf7, 0xcd, + 0xc9, 0x99, 0xe7, 0x9c, 0x9e, 0x79, 0xce, 0x8f, 0x33, 0xcf, 0xf9, 0x74, 0xee, 0xd5, 0x4e, 0xcf, + 0xbd, 0xda, 0xd7, 0x73, 0xaf, 0xf6, 0xf6, 0xfe, 0xa5, 0xee, 0xbf, 0x28, 0x2e, 0x18, 0xec, 0x17, + 0x7b, 0x18, 0xaa, 0x98, 0xe3, 0x7d, 0x03, 0x5c, 0xe9, 0x8f, 0x57, 0xac, 0x2d, 0x4e, 0x66, 0xbc, + 0x82, 0x6b, 0x7b, 0xf7, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcb, 0xd9, 0x5d, 0xce, 0x75, 0x04, + 0x00, 0x00, } func (m *RegisteredQuery) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/params.pb.go b/x/interchainqueries/types/params.pb.go index db88e900..94b6336e 100644 --- a/x/interchainqueries/types/params.pb.go +++ b/x/interchainqueries/types/params.pb.go @@ -1,18 +1,17 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchainqueries/params.proto +// source: nolus/interchainqueries/params.proto package types import ( fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -42,7 +41,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_752a5f3346da64b1, []int{0} + return fileDescriptor_d55c724307965f46, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -93,36 +92,36 @@ func (m *Params) GetTxQueryRemovalLimit() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "neutron.interchainqueries.Params") + proto.RegisterType((*Params)(nil), "nolus.interchainqueries.Params") } func init() { - proto.RegisterFile("neutron/interchainqueries/params.proto", fileDescriptor_752a5f3346da64b1) + proto.RegisterFile("nolus/interchainqueries/params.proto", fileDescriptor_d55c724307965f46) } -var fileDescriptor_752a5f3346da64b1 = []byte{ - // 331 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xb1, 0x4e, 0xf3, 0x30, - 0x10, 0xc7, 0x93, 0xaf, 0x55, 0x87, 0x7c, 0xb0, 0x84, 0x0a, 0xb5, 0x1d, 0xdc, 0x8a, 0x01, 0x75, - 0xa9, 0xdd, 0x52, 0x26, 0xd8, 0x0a, 0x23, 0x03, 0x14, 0x58, 0x58, 0xa2, 0x24, 0xb5, 0x52, 0x8b, - 0x3a, 0x17, 0xec, 0x4b, 0xd5, 0xbe, 0x05, 0x23, 0x23, 0x33, 0x4f, 0xd2, 0xb1, 0x23, 0x13, 0xa0, - 0x76, 0xe0, 0x35, 0x50, 0xec, 0x20, 0x21, 0xc1, 0xe4, 0x93, 0x7f, 0x77, 0xfe, 0xff, 0x74, 0xf6, - 0x0e, 0x53, 0x9e, 0xa3, 0x82, 0x94, 0x89, 0x14, 0xb9, 0x8a, 0xa7, 0xa1, 0x48, 0x1f, 0x72, 0xae, - 0x04, 0xd7, 0x2c, 0x0b, 0x55, 0x28, 0x35, 0xcd, 0x14, 0x20, 0xf8, 0xcd, 0xb2, 0x8f, 0xfe, 0xea, - 0x6b, 0x91, 0x18, 0xb4, 0x04, 0xcd, 0xa2, 0x50, 0x73, 0x36, 0x1f, 0x44, 0x1c, 0xc3, 0x01, 0x8b, - 0x41, 0xa4, 0x76, 0xb4, 0x55, 0x4f, 0x20, 0x01, 0x53, 0xb2, 0xa2, 0xb2, 0xb7, 0x07, 0x9f, 0xae, - 0x57, 0xbb, 0x34, 0x09, 0x7e, 0xdf, 0xab, 0x17, 0x6f, 0x2d, 0x03, 0x9d, 0x47, 0x52, 0x60, 0x80, - 0x42, 0x72, 0xc8, 0xb1, 0xe1, 0x76, 0xdc, 0x6e, 0x75, 0xec, 0x1b, 0x76, 0x6d, 0xd0, 0x8d, 0x25, - 0x7e, 0xe6, 0xed, 0xda, 0x89, 0x09, 0xcf, 0x40, 0x0b, 0x6c, 0xfc, 0xeb, 0x54, 0xba, 0xff, 0x8f, - 0x9a, 0xd4, 0xaa, 0xd0, 0x42, 0x85, 0x96, 0x2a, 0xf4, 0x0c, 0x44, 0x3a, 0xea, 0xaf, 0xde, 0xda, - 0xce, 0xcb, 0x7b, 0xbb, 0x9b, 0x08, 0x9c, 0xe6, 0x11, 0x8d, 0x41, 0xb2, 0xd2, 0xdb, 0x1e, 0x3d, - 0x3d, 0xb9, 0x67, 0xb8, 0xcc, 0xb8, 0x36, 0x03, 0x7a, 0xbc, 0x63, 0x12, 0xce, 0x6d, 0x80, 0x3f, - 0xf4, 0xf6, 0x71, 0x11, 0xd8, 0x50, 0xc5, 0x25, 0xcc, 0xc3, 0x59, 0x30, 0x13, 0x52, 0x60, 0xa3, - 0x62, 0x2c, 0xf7, 0x70, 0x71, 0x55, 0xc0, 0xb1, 0x65, 0x17, 0x05, 0x3a, 0xa9, 0x3e, 0x3d, 0xb7, - 0x9d, 0xd1, 0xed, 0x6a, 0x43, 0xdc, 0xf5, 0x86, 0xb8, 0x1f, 0x1b, 0xe2, 0x3e, 0x6e, 0x89, 0xb3, - 0xde, 0x12, 0xe7, 0x75, 0x4b, 0x9c, 0xbb, 0xd3, 0x1f, 0x32, 0xe5, 0x7e, 0x7b, 0xa0, 0x92, 0xef, - 0x9a, 0xcd, 0x8f, 0xd9, 0xe2, 0x8f, 0x8f, 0x31, 0x96, 0x51, 0xcd, 0xec, 0x71, 0xf8, 0x15, 0x00, - 0x00, 0xff, 0xff, 0xc7, 0x61, 0x00, 0x43, 0xc2, 0x01, 0x00, 0x00, +var fileDescriptor_d55c724307965f46 = []byte{ + // 336 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0x3f, 0x4f, 0xfa, 0x40, + 0x18, 0xc7, 0xdb, 0x1f, 0x84, 0xa1, 0x3f, 0x5d, 0x2a, 0x51, 0x64, 0x38, 0x88, 0x71, 0x60, 0xe1, + 0x0e, 0x64, 0x73, 0x70, 0x40, 0x47, 0x63, 0x10, 0x1d, 0x8c, 0x4b, 0xd3, 0x96, 0x0b, 0x5c, 0xec, + 0xf5, 0xa9, 0xbd, 0xa7, 0x04, 0xde, 0x85, 0xa3, 0xa3, 0xb3, 0xaf, 0x84, 0x91, 0xd1, 0x49, 0x0d, + 0x1d, 0x7c, 0x1b, 0xe6, 0xee, 0x18, 0x4c, 0x74, 0xea, 0x93, 0x7e, 0x9e, 0x3f, 0x9f, 0x7c, 0xcf, + 0x3b, 0x4e, 0x21, 0x29, 0x14, 0x13, 0x29, 0xf2, 0x3c, 0x9e, 0x85, 0x22, 0x7d, 0x2c, 0x78, 0x2e, + 0xb8, 0x62, 0x59, 0x98, 0x87, 0x52, 0xd1, 0x2c, 0x07, 0x04, 0xff, 0xc0, 0x74, 0xd1, 0x5f, 0x5d, + 0x4d, 0x12, 0x83, 0x92, 0xa0, 0x58, 0x14, 0x2a, 0xce, 0xe6, 0xfd, 0x88, 0x63, 0xd8, 0x67, 0x31, + 0x88, 0xd4, 0x0e, 0x36, 0xeb, 0x53, 0x98, 0x82, 0x29, 0x99, 0xae, 0xec, 0xdf, 0xa3, 0x2f, 0xd7, + 0xab, 0x8d, 0xcc, 0x7e, 0xbf, 0xe7, 0xd5, 0xf5, 0xae, 0x65, 0xa0, 0x8a, 0x48, 0x0a, 0x0c, 0x50, + 0x48, 0x0e, 0x05, 0x36, 0xdc, 0xb6, 0xdb, 0xa9, 0x8e, 0x7d, 0xc3, 0x6e, 0x0c, 0xba, 0xb5, 0xc4, + 0xcf, 0xbc, 0x5d, 0x3b, 0x31, 0xe1, 0x19, 0x28, 0x81, 0x8d, 0x7f, 0xed, 0x4a, 0xe7, 0xff, 0xc9, + 0x21, 0xb5, 0x2a, 0x54, 0xab, 0xd0, 0xad, 0x0a, 0x3d, 0x07, 0x91, 0x0e, 0x7b, 0xab, 0xf7, 0x96, + 0xf3, 0xfa, 0xd1, 0xea, 0x4c, 0x05, 0xce, 0x8a, 0x88, 0xc6, 0x20, 0xd9, 0xd6, 0xdb, 0x7e, 0xba, + 0x6a, 0xf2, 0xc0, 0x70, 0x99, 0x71, 0x65, 0x06, 0xd4, 0x78, 0xc7, 0x5c, 0xb8, 0xb0, 0x07, 0xfc, + 0x81, 0xb7, 0x8f, 0x8b, 0xc0, 0x1e, 0xcd, 0xb9, 0x84, 0x79, 0x98, 0x04, 0x89, 0x90, 0x02, 0x1b, + 0x15, 0x63, 0xb9, 0x87, 0x8b, 0x6b, 0x0d, 0xc7, 0x96, 0x5d, 0x6a, 0x74, 0x5a, 0x7d, 0x7e, 0x69, + 0x39, 0xc3, 0xbb, 0xd5, 0x86, 0xb8, 0xeb, 0x0d, 0x71, 0x3f, 0x37, 0xc4, 0x7d, 0x2a, 0x89, 0xb3, + 0x2e, 0x89, 0xf3, 0x56, 0x12, 0xe7, 0xfe, 0xec, 0x87, 0xcc, 0x95, 0x4e, 0xb7, 0x3b, 0xd2, 0xd9, + 0xc4, 0x90, 0x30, 0x13, 0x76, 0x37, 0x86, 0x9c, 0xb3, 0xc5, 0x1f, 0x2f, 0x63, 0x44, 0xa3, 0x9a, + 0x89, 0x72, 0xf0, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x36, 0x58, 0x0d, 0xec, 0xc1, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/query.pb.go b/x/interchainqueries/types/query.pb.go index 0f1972e0..b3d4ec34 100644 --- a/x/interchainqueries/types/query.pb.go +++ b/x/interchainqueries/types/query.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchainqueries/query.proto +// source: nolus/interchainqueries/query.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -18,6 +14,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -39,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{0} + return fileDescriptor_5913889f6e620de0, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{1} + return fileDescriptor_5913889f6e620de0, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +123,7 @@ func (m *QueryRegisteredQueriesRequest) Reset() { *m = QueryRegisteredQu func (m *QueryRegisteredQueriesRequest) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueriesRequest) ProtoMessage() {} func (*QueryRegisteredQueriesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{2} + return fileDescriptor_5913889f6e620de0, []int{2} } func (m *QueryRegisteredQueriesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -184,7 +183,7 @@ func (m *QueryRegisteredQueriesResponse) Reset() { *m = QueryRegisteredQ func (m *QueryRegisteredQueriesResponse) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueriesResponse) ProtoMessage() {} func (*QueryRegisteredQueriesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{3} + return fileDescriptor_5913889f6e620de0, []int{3} } func (m *QueryRegisteredQueriesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -235,7 +234,7 @@ func (m *QueryRegisteredQueryRequest) Reset() { *m = QueryRegisteredQuer func (m *QueryRegisteredQueryRequest) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueryRequest) ProtoMessage() {} func (*QueryRegisteredQueryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{4} + return fileDescriptor_5913889f6e620de0, []int{4} } func (m *QueryRegisteredQueryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -279,7 +278,7 @@ func (m *QueryRegisteredQueryResponse) Reset() { *m = QueryRegisteredQue func (m *QueryRegisteredQueryResponse) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueryResponse) ProtoMessage() {} func (*QueryRegisteredQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{5} + return fileDescriptor_5913889f6e620de0, []int{5} } func (m *QueryRegisteredQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -323,7 +322,7 @@ func (m *QueryRegisteredQueryResultRequest) Reset() { *m = QueryRegister func (m *QueryRegisteredQueryResultRequest) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueryResultRequest) ProtoMessage() {} func (*QueryRegisteredQueryResultRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{6} + return fileDescriptor_5913889f6e620de0, []int{6} } func (m *QueryRegisteredQueryResultRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -367,7 +366,7 @@ func (m *QueryRegisteredQueryResultResponse) Reset() { *m = QueryRegiste func (m *QueryRegisteredQueryResultResponse) String() string { return proto.CompactTextString(m) } func (*QueryRegisteredQueryResultResponse) ProtoMessage() {} func (*QueryRegisteredQueryResultResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{7} + return fileDescriptor_5913889f6e620de0, []int{7} } func (m *QueryRegisteredQueryResultResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -413,7 +412,7 @@ func (m *Transaction) Reset() { *m = Transaction{} } func (m *Transaction) String() string { return proto.CompactTextString(m) } func (*Transaction) ProtoMessage() {} func (*Transaction) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{8} + return fileDescriptor_5913889f6e620de0, []int{8} } func (m *Transaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -471,7 +470,7 @@ func (m *QueryLastRemoteHeight) Reset() { *m = QueryLastRemoteHeight{} } func (m *QueryLastRemoteHeight) String() string { return proto.CompactTextString(m) } func (*QueryLastRemoteHeight) ProtoMessage() {} func (*QueryLastRemoteHeight) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{9} + return fileDescriptor_5913889f6e620de0, []int{9} } func (m *QueryLastRemoteHeight) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -515,7 +514,7 @@ func (m *QueryLastRemoteHeightResponse) Reset() { *m = QueryLastRemoteHe func (m *QueryLastRemoteHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryLastRemoteHeightResponse) ProtoMessage() {} func (*QueryLastRemoteHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2254be23ba3ff3b4, []int{10} + return fileDescriptor_5913889f6e620de0, []int{10} } func (m *QueryLastRemoteHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -552,73 +551,73 @@ func (m *QueryLastRemoteHeightResponse) GetHeight() uint64 { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "neutron.interchainqueries.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "neutron.interchainqueries.QueryParamsResponse") - proto.RegisterType((*QueryRegisteredQueriesRequest)(nil), "neutron.interchainqueries.QueryRegisteredQueriesRequest") - proto.RegisterType((*QueryRegisteredQueriesResponse)(nil), "neutron.interchainqueries.QueryRegisteredQueriesResponse") - proto.RegisterType((*QueryRegisteredQueryRequest)(nil), "neutron.interchainqueries.QueryRegisteredQueryRequest") - proto.RegisterType((*QueryRegisteredQueryResponse)(nil), "neutron.interchainqueries.QueryRegisteredQueryResponse") - proto.RegisterType((*QueryRegisteredQueryResultRequest)(nil), "neutron.interchainqueries.QueryRegisteredQueryResultRequest") - proto.RegisterType((*QueryRegisteredQueryResultResponse)(nil), "neutron.interchainqueries.QueryRegisteredQueryResultResponse") - proto.RegisterType((*Transaction)(nil), "neutron.interchainqueries.Transaction") - proto.RegisterType((*QueryLastRemoteHeight)(nil), "neutron.interchainqueries.QueryLastRemoteHeight") - proto.RegisterType((*QueryLastRemoteHeightResponse)(nil), "neutron.interchainqueries.QueryLastRemoteHeightResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "nolus.interchainqueries.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "nolus.interchainqueries.QueryParamsResponse") + proto.RegisterType((*QueryRegisteredQueriesRequest)(nil), "nolus.interchainqueries.QueryRegisteredQueriesRequest") + proto.RegisterType((*QueryRegisteredQueriesResponse)(nil), "nolus.interchainqueries.QueryRegisteredQueriesResponse") + proto.RegisterType((*QueryRegisteredQueryRequest)(nil), "nolus.interchainqueries.QueryRegisteredQueryRequest") + proto.RegisterType((*QueryRegisteredQueryResponse)(nil), "nolus.interchainqueries.QueryRegisteredQueryResponse") + proto.RegisterType((*QueryRegisteredQueryResultRequest)(nil), "nolus.interchainqueries.QueryRegisteredQueryResultRequest") + proto.RegisterType((*QueryRegisteredQueryResultResponse)(nil), "nolus.interchainqueries.QueryRegisteredQueryResultResponse") + proto.RegisterType((*Transaction)(nil), "nolus.interchainqueries.Transaction") + proto.RegisterType((*QueryLastRemoteHeight)(nil), "nolus.interchainqueries.QueryLastRemoteHeight") + proto.RegisterType((*QueryLastRemoteHeightResponse)(nil), "nolus.interchainqueries.QueryLastRemoteHeightResponse") } func init() { - proto.RegisterFile("neutron/interchainqueries/query.proto", fileDescriptor_2254be23ba3ff3b4) -} - -var fileDescriptor_2254be23ba3ff3b4 = []byte{ - // 758 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x4d, 0x4f, 0x14, 0x4d, - 0x10, 0xde, 0x5e, 0xf6, 0x5d, 0x5e, 0x6a, 0x79, 0x5f, 0xa0, 0x45, 0x03, 0x2b, 0xae, 0x30, 0x44, - 0x58, 0x30, 0x3b, 0xc3, 0x87, 0x0a, 0x46, 0xc4, 0x84, 0x83, 0x4a, 0xe2, 0x01, 0x26, 0xe2, 0xc1, - 0xcb, 0xa6, 0x77, 0xb7, 0x33, 0x3b, 0x09, 0xdb, 0xbd, 0xcc, 0xf4, 0x22, 0x73, 0xf5, 0xe6, 0xcd, - 0xe8, 0x5f, 0xf0, 0x07, 0x78, 0xf3, 0xe0, 0xc1, 0x2b, 0xf1, 0x44, 0xe2, 0xc5, 0x93, 0x31, 0xe0, - 0x0f, 0x31, 0xd3, 0xdd, 0xfb, 0xfd, 0xc5, 0x72, 0x9a, 0xee, 0x9e, 0x7a, 0xaa, 0x9e, 0x7a, 0xaa, - 0xaa, 0x1b, 0xee, 0x30, 0x5a, 0x11, 0x1e, 0x67, 0x96, 0xcb, 0x04, 0xf5, 0xf2, 0x45, 0xe2, 0xb2, - 0xa3, 0x0a, 0xf5, 0x5c, 0xea, 0x5b, 0xe1, 0x37, 0x30, 0xcb, 0x1e, 0x17, 0x1c, 0x4f, 0x6b, 0x33, - 0xb3, 0xcd, 0x2c, 0xb9, 0x9c, 0xe7, 0x7e, 0x89, 0xfb, 0x56, 0x8e, 0xf8, 0x54, 0x61, 0xac, 0xe3, - 0xd5, 0x1c, 0x15, 0x64, 0xd5, 0x2a, 0x13, 0xc7, 0x65, 0x44, 0xb8, 0x9c, 0x29, 0x37, 0xc9, 0x49, - 0x87, 0x3b, 0x5c, 0x2e, 0xad, 0x70, 0xa5, 0x4f, 0x67, 0x1c, 0xce, 0x9d, 0x43, 0x6a, 0x91, 0xb2, - 0x6b, 0x11, 0xc6, 0xb8, 0x90, 0x10, 0x5f, 0xff, 0x5d, 0xec, 0xce, 0xd0, 0xa1, 0x8c, 0xfa, 0x6e, - 0xd5, 0x70, 0xa1, 0xbb, 0x61, 0x99, 0x78, 0xa4, 0x54, 0xb5, 0x33, 0xba, 0xdb, 0x89, 0x13, 0x65, - 0x63, 0x4c, 0x02, 0xde, 0x0f, 0x53, 0xd9, 0x93, 0x40, 0x9b, 0x1e, 0x55, 0xa8, 0x2f, 0x8c, 0x57, - 0x70, 0xad, 0xe9, 0xd4, 0x2f, 0x73, 0xe6, 0x53, 0xfc, 0x04, 0xe2, 0x2a, 0xc0, 0x14, 0x9a, 0x45, - 0xe9, 0xc4, 0xda, 0x9c, 0xd9, 0x55, 0x2d, 0x53, 0x41, 0x77, 0x62, 0xa7, 0xbf, 0x6e, 0x47, 0x6c, - 0x0d, 0x33, 0x3e, 0x21, 0xb8, 0x25, 0x1d, 0xdb, 0xd4, 0x71, 0x7d, 0x41, 0x3d, 0x5a, 0xd8, 0x57, - 0xf6, 0x3a, 0x32, 0xbe, 0x01, 0x71, 0xfe, 0x86, 0x51, 0x2f, 0x0c, 0x31, 0x94, 0x1e, 0xb1, 0xf5, - 0x0e, 0xcf, 0xc3, 0x7f, 0x79, 0xce, 0x18, 0xcd, 0x87, 0x8a, 0x65, 0xdd, 0xc2, 0x54, 0x74, 0x16, - 0xa5, 0x47, 0xec, 0xd1, 0xfa, 0xe1, 0x6e, 0x01, 0x3f, 0x05, 0xa8, 0x57, 0x62, 0x6a, 0x48, 0x72, - 0x5c, 0x30, 0x55, 0xd9, 0xcc, 0xb0, 0x6c, 0xa6, 0x2a, 0xb5, 0x2e, 0x9b, 0xb9, 0x47, 0x1c, 0xaa, - 0x03, 0xdb, 0x0d, 0x48, 0xe3, 0x3b, 0x82, 0x54, 0x37, 0x9a, 0x5a, 0x8a, 0x2c, 0x60, 0xaf, 0xf6, - 0x33, 0xab, 0x93, 0x96, 0x9c, 0x13, 0x6b, 0xcb, 0x3d, 0x64, 0x69, 0xf6, 0x18, 0x68, 0x7d, 0x26, - 0xbc, 0xd6, 0x40, 0xf8, 0x59, 0x53, 0x2e, 0x51, 0x99, 0xcb, 0x62, 0xdf, 0x5c, 0x14, 0xbb, 0xa6, - 0x64, 0x36, 0xe1, 0x66, 0x87, 0x5c, 0x82, 0xaa, 0xe0, 0xd3, 0xf0, 0xaf, 0x74, 0x14, 0x6a, 0x1a, - 0x56, 0x35, 0x66, 0x0f, 0xcb, 0xfd, 0x6e, 0xc1, 0xa8, 0xc0, 0x4c, 0x67, 0xa4, 0xd6, 0xe0, 0x00, - 0xc6, 0x5b, 0x34, 0x08, 0x74, 0x63, 0x0c, 0xa0, 0x80, 0x3d, 0xd6, 0x9c, 0x7b, 0x60, 0x6c, 0xc3, - 0x5c, 0x97, 0xb0, 0x95, 0x43, 0x71, 0x09, 0xda, 0x05, 0x30, 0x7a, 0xe1, 0x35, 0xf9, 0x6d, 0x88, - 0x7b, 0xf2, 0x44, 0x53, 0x5e, 0xe8, 0x41, 0xb9, 0x11, 0xaf, 0x51, 0xc6, 0x2e, 0x24, 0x5e, 0x7a, - 0x84, 0xf9, 0x44, 0x36, 0x1f, 0xfe, 0x1f, 0xa2, 0x35, 0x26, 0x51, 0xb7, 0x10, 0xf6, 0x71, 0x91, - 0xba, 0x4e, 0x51, 0xc8, 0xd2, 0xc5, 0x6c, 0xbd, 0xc3, 0x18, 0x62, 0x05, 0x22, 0x88, 0x6c, 0xce, - 0x51, 0x5b, 0xae, 0x8d, 0x2d, 0xb8, 0x2e, 0x23, 0xbc, 0x20, 0xbe, 0xb0, 0x69, 0x89, 0x0b, 0xfa, - 0x5c, 0x19, 0xb7, 0x35, 0x3d, 0x6a, 0x6f, 0x7a, 0x63, 0x43, 0x8f, 0x54, 0x2b, 0xba, 0x96, 0x69, - 0x9d, 0x0a, 0x6a, 0xa4, 0xb2, 0xf6, 0x6e, 0x18, 0xfe, 0x91, 0x48, 0xfc, 0x01, 0x41, 0x5c, 0xcd, - 0x2b, 0xce, 0xf4, 0x93, 0xa1, 0xe9, 0xa2, 0x48, 0x9a, 0x97, 0x35, 0x57, 0x5c, 0x8c, 0xa5, 0xb7, - 0x3f, 0xfe, 0x7c, 0x8c, 0xce, 0xe3, 0x39, 0xab, 0xdf, 0x1d, 0x86, 0xbf, 0x21, 0x98, 0x68, 0x9b, - 0x3f, 0xbc, 0xd9, 0xbf, 0x4c, 0x9d, 0x6f, 0x96, 0xe4, 0xc3, 0x2b, 0x20, 0x35, 0xeb, 0xfb, 0x92, - 0xb5, 0x85, 0x33, 0x3d, 0x58, 0xb7, 0xdf, 0x06, 0xf8, 0x0b, 0x82, 0xb1, 0x96, 0x26, 0xc4, 0x0f, - 0x06, 0x63, 0x51, 0x1d, 0xd3, 0xe4, 0xc6, 0xc0, 0x38, 0xcd, 0x7d, 0x5d, 0x72, 0xcf, 0xe0, 0xbb, - 0x97, 0xe7, 0x1e, 0xe0, 0xaf, 0x08, 0x12, 0x0d, 0x4d, 0x8f, 0xb7, 0x06, 0x8f, 0x5e, 0x9f, 0xd5, - 0xe4, 0xe3, 0x2b, 0xa2, 0x75, 0x06, 0x96, 0xcc, 0x60, 0x09, 0x2f, 0x5a, 0x7d, 0x9e, 0xf0, 0xac, - 0x1a, 0x4d, 0xfc, 0x19, 0xc1, 0x78, 0xdb, 0x2c, 0xad, 0xf4, 0x23, 0xd1, 0x8a, 0x48, 0x6e, 0x0e, - 0x8a, 0xa8, 0x31, 0x5e, 0x91, 0x8c, 0x97, 0x71, 0xba, 0xa7, 0xe6, 0x21, 0x30, 0xab, 0x66, 0x71, - 0xe7, 0xe0, 0xf4, 0x3c, 0x85, 0xce, 0xce, 0x53, 0xe8, 0xf7, 0x79, 0x0a, 0xbd, 0xbf, 0x48, 0x45, - 0xce, 0x2e, 0x52, 0x91, 0x9f, 0x17, 0xa9, 0xc8, 0xeb, 0x47, 0x8e, 0x2b, 0x8a, 0x95, 0x9c, 0x99, - 0xe7, 0xa5, 0xaa, 0xb7, 0x0c, 0xf7, 0x9c, 0x9a, 0xe7, 0xe3, 0x7b, 0xd6, 0x49, 0xa7, 0x07, 0x3e, - 0x28, 0x53, 0x3f, 0x17, 0x97, 0x8f, 0xfc, 0xfa, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0x57, - 0x58, 0xcf, 0xfd, 0x08, 0x00, 0x00, + proto.RegisterFile("nolus/interchainqueries/query.proto", fileDescriptor_5913889f6e620de0) +} + +var fileDescriptor_5913889f6e620de0 = []byte{ + // 764 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0xbd, 0x6e, 0x13, 0x4b, + 0x14, 0xc7, 0x3d, 0x8e, 0xaf, 0xef, 0xcd, 0x71, 0xee, 0x4d, 0x32, 0x37, 0x40, 0x30, 0xc1, 0x49, + 0x36, 0x5f, 0x86, 0xe0, 0x5d, 0x25, 0x81, 0x04, 0x41, 0x48, 0x91, 0x02, 0x88, 0x84, 0x50, 0xb2, + 0xa4, 0x40, 0x48, 0xc8, 0x1a, 0xdb, 0xa3, 0xf5, 0x4a, 0xf6, 0x8e, 0xb3, 0x33, 0x86, 0xb8, 0xa5, + 0xa6, 0x40, 0xe2, 0x15, 0xa8, 0xe8, 0x28, 0x28, 0x78, 0x83, 0x94, 0x91, 0x68, 0xa8, 0x10, 0x4a, + 0xe8, 0x78, 0x09, 0xb4, 0x33, 0xe3, 0x6f, 0xaf, 0x63, 0x53, 0x79, 0x77, 0x7c, 0xfe, 0xe7, 0xfc, + 0xce, 0xd7, 0x0e, 0x2c, 0x78, 0xac, 0x54, 0xe5, 0x96, 0xeb, 0x09, 0xea, 0xe7, 0x8b, 0xc4, 0xf5, + 0x8e, 0xaa, 0xd4, 0x77, 0x29, 0xb7, 0x82, 0xdf, 0x9a, 0x59, 0xf1, 0x99, 0x60, 0xf8, 0x8a, 0x34, + 0x32, 0xbb, 0x8c, 0x92, 0x37, 0xf3, 0x8c, 0x97, 0x19, 0xb7, 0x72, 0x84, 0x53, 0xa5, 0xb0, 0x5e, + 0xad, 0xe5, 0xa8, 0x20, 0x6b, 0x56, 0x85, 0x38, 0xae, 0x47, 0x84, 0xcb, 0x3c, 0xe5, 0x24, 0x39, + 0xe5, 0x30, 0x87, 0xc9, 0x47, 0x2b, 0x78, 0xd2, 0xa7, 0x33, 0x0e, 0x63, 0x4e, 0x89, 0x5a, 0xa4, + 0xe2, 0x5a, 0xc4, 0xf3, 0x98, 0x90, 0x12, 0xae, 0xff, 0x5d, 0x0a, 0xa3, 0x73, 0xa8, 0x47, 0xb9, + 0x5b, 0x37, 0x5b, 0x0c, 0x33, 0xab, 0x10, 0x9f, 0x94, 0xeb, 0x56, 0x73, 0x61, 0x56, 0xe2, 0x58, + 0x59, 0x18, 0x53, 0x80, 0x0f, 0x82, 0x24, 0xf6, 0xa5, 0xcc, 0xa6, 0x47, 0x55, 0xca, 0x85, 0x71, + 0x08, 0xff, 0xb7, 0x9d, 0xf2, 0x0a, 0xf3, 0x38, 0xc5, 0x0f, 0x20, 0xae, 0xdc, 0x4f, 0xa3, 0x39, + 0x94, 0x4e, 0xac, 0xcf, 0x9a, 0x21, 0x55, 0x32, 0x95, 0x70, 0x37, 0x76, 0xf2, 0x7d, 0x36, 0x62, + 0x6b, 0x91, 0xf1, 0x01, 0xc1, 0x75, 0xe9, 0xd6, 0xa6, 0x8e, 0xcb, 0x05, 0xf5, 0x69, 0xe1, 0x40, + 0xd9, 0xeb, 0xb8, 0xf8, 0x32, 0xc4, 0xd9, 0x6b, 0x8f, 0xfa, 0x41, 0x80, 0x91, 0xf4, 0xa8, 0xad, + 0xdf, 0xf0, 0x02, 0xfc, 0x9b, 0x67, 0x9e, 0x47, 0xf3, 0x41, 0xa5, 0xb2, 0x6e, 0x61, 0x3a, 0x3a, + 0x87, 0xd2, 0xa3, 0xf6, 0x58, 0xf3, 0x70, 0xaf, 0x80, 0x1f, 0x02, 0x34, 0x3b, 0x30, 0x3d, 0x22, + 0x09, 0x97, 0x4d, 0xd5, 0x2e, 0x33, 0x68, 0x97, 0xa9, 0x1a, 0xac, 0xdb, 0x65, 0xee, 0x13, 0x87, + 0xea, 0xc0, 0x76, 0x8b, 0xd2, 0x38, 0x41, 0x90, 0x0a, 0xc3, 0xd4, 0x85, 0x78, 0x09, 0xd8, 0x6f, + 0xfc, 0x99, 0xd5, 0x49, 0x4b, 0xe6, 0xc4, 0x7a, 0x3a, 0xb4, 0x28, 0xed, 0xfe, 0x6a, 0xba, 0x3a, + 0x93, 0x7e, 0x67, 0x18, 0xfc, 0xa8, 0x2d, 0x93, 0xa8, 0xcc, 0x64, 0xe5, 0xc2, 0x4c, 0x14, 0x5b, + 0x5b, 0x2a, 0x77, 0xe1, 0x5a, 0x8f, 0x4c, 0x6a, 0xf5, 0x72, 0x5f, 0x85, 0x7f, 0xa4, 0xa3, 0xa0, + 0xa2, 0x41, 0x47, 0x63, 0xf6, 0xdf, 0xf2, 0x7d, 0xaf, 0x60, 0x70, 0x98, 0xe9, 0xad, 0xd4, 0x15, + 0x78, 0x06, 0x13, 0x1d, 0x15, 0xa8, 0xe9, 0xa1, 0x18, 0x38, 0x7f, 0x7b, 0xbc, 0x3d, 0xf3, 0x9a, + 0xb1, 0x03, 0xf3, 0x21, 0x41, 0xab, 0x25, 0x31, 0x00, 0x74, 0x0e, 0x8c, 0x7e, 0x7a, 0x8d, 0xbe, + 0x0d, 0x71, 0x5f, 0x9e, 0x68, 0xe0, 0xc5, 0x50, 0xe0, 0x56, 0xb5, 0xd6, 0x18, 0x7b, 0x90, 0x38, + 0xf4, 0x89, 0xc7, 0x89, 0x1c, 0x3b, 0xfc, 0x1f, 0x44, 0x1b, 0x1c, 0x51, 0xb7, 0x10, 0x4c, 0x70, + 0x91, 0xba, 0x4e, 0x51, 0xc8, 0xb6, 0xc5, 0x6c, 0xfd, 0x86, 0x31, 0xc4, 0x0a, 0x44, 0x10, 0x39, + 0x96, 0x63, 0xb6, 0x7c, 0x36, 0xb6, 0xe1, 0x92, 0x8c, 0xf0, 0x84, 0x70, 0x61, 0xd3, 0x32, 0x13, + 0xf4, 0xb1, 0x32, 0xee, 0x1a, 0x77, 0xd4, 0x3d, 0xee, 0xc6, 0x96, 0x5e, 0xa6, 0x4e, 0x75, 0x23, + 0xcf, 0x26, 0x0a, 0x6a, 0x45, 0x59, 0xff, 0x15, 0x87, 0xbf, 0xa4, 0x12, 0xbf, 0x45, 0x10, 0x57, + 0x9b, 0x8a, 0x57, 0xfb, 0x17, 0xa1, 0xed, 0xf3, 0x90, 0xbc, 0x35, 0x98, 0xb1, 0xe2, 0x30, 0x56, + 0xde, 0x7c, 0xfd, 0xf9, 0x3e, 0x3a, 0x8f, 0x67, 0xad, 0xfe, 0xdf, 0x2c, 0xfc, 0x05, 0xc1, 0x64, + 0xd7, 0xce, 0xe1, 0xcd, 0x8b, 0xda, 0xd3, 0xfb, 0x5b, 0x92, 0xdc, 0x1a, 0x5a, 0xa7, 0x79, 0x37, + 0x24, 0x6f, 0x06, 0xaf, 0x86, 0xf2, 0x76, 0xef, 0x3e, 0xfe, 0x84, 0x60, 0xbc, 0x63, 0xec, 0xf0, + 0xed, 0x61, 0x08, 0xea, 0x4b, 0x99, 0xbc, 0x33, 0xa4, 0x4a, 0x53, 0xaf, 0x49, 0xea, 0x55, 0x7c, + 0x63, 0x50, 0xea, 0x1a, 0xfe, 0x8c, 0x20, 0xd1, 0x32, 0xe2, 0xf8, 0xde, 0xb0, 0x91, 0x9b, 0x5b, + 0x99, 0xbc, 0xff, 0x47, 0x5a, 0xcd, 0x9e, 0x91, 0xec, 0x2b, 0x78, 0xc9, 0xea, 0x7b, 0x35, 0x67, + 0xd5, 0x0a, 0xe2, 0x8f, 0x08, 0x26, 0xba, 0x76, 0xc6, 0xec, 0x0f, 0xd0, 0x69, 0x9f, 0xdc, 0x1c, + 0xce, 0xbe, 0xc1, 0x6a, 0x4a, 0xd6, 0x34, 0x5e, 0xee, 0x53, 0xe7, 0x40, 0x96, 0x55, 0xdb, 0xb6, + 0xfb, 0xfc, 0xe4, 0x2c, 0x85, 0x4e, 0xcf, 0x52, 0xe8, 0xc7, 0x59, 0x0a, 0xbd, 0x3b, 0x4f, 0x45, + 0x4e, 0xcf, 0x53, 0x91, 0x6f, 0xe7, 0xa9, 0xc8, 0x8b, 0x1d, 0xc7, 0x15, 0xc5, 0x6a, 0xce, 0xcc, + 0xb3, 0xb2, 0xf5, 0x34, 0xf0, 0x95, 0xd9, 0x0f, 0xae, 0xe4, 0x3c, 0x2b, 0x29, 0xd7, 0x99, 0x3c, + 0xf3, 0xa9, 0x75, 0xdc, 0xeb, 0xf6, 0xae, 0x55, 0x28, 0xcf, 0xc5, 0xe5, 0x0d, 0xbe, 0xf1, 0x3b, + 0x00, 0x00, 0xff, 0xff, 0x59, 0x8e, 0x79, 0x78, 0xd0, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -651,7 +650,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -660,7 +659,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) RegisteredQueries(ctx context.Context, in *QueryRegisteredQueriesRequest, opts ...grpc.CallOption) (*QueryRegisteredQueriesResponse, error) { out := new(QueryRegisteredQueriesResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Query/RegisteredQueries", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Query/RegisteredQueries", in, out, opts...) if err != nil { return nil, err } @@ -669,7 +668,7 @@ func (c *queryClient) RegisteredQueries(ctx context.Context, in *QueryRegistered func (c *queryClient) RegisteredQuery(ctx context.Context, in *QueryRegisteredQueryRequest, opts ...grpc.CallOption) (*QueryRegisteredQueryResponse, error) { out := new(QueryRegisteredQueryResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Query/RegisteredQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Query/RegisteredQuery", in, out, opts...) if err != nil { return nil, err } @@ -678,7 +677,7 @@ func (c *queryClient) RegisteredQuery(ctx context.Context, in *QueryRegisteredQu func (c *queryClient) QueryResult(ctx context.Context, in *QueryRegisteredQueryResultRequest, opts ...grpc.CallOption) (*QueryRegisteredQueryResultResponse, error) { out := new(QueryRegisteredQueryResultResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Query/QueryResult", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Query/QueryResult", in, out, opts...) if err != nil { return nil, err } @@ -687,7 +686,7 @@ func (c *queryClient) QueryResult(ctx context.Context, in *QueryRegisteredQueryR func (c *queryClient) LastRemoteHeight(ctx context.Context, in *QueryLastRemoteHeight, opts ...grpc.CallOption) (*QueryLastRemoteHeightResponse, error) { out := new(QueryLastRemoteHeightResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Query/LastRemoteHeight", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Query/LastRemoteHeight", in, out, opts...) if err != nil { return nil, err } @@ -738,7 +737,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Query/Params", + FullMethod: "/nolus.interchainqueries.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -756,7 +755,7 @@ func _Query_RegisteredQueries_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Query/RegisteredQueries", + FullMethod: "/nolus.interchainqueries.Query/RegisteredQueries", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).RegisteredQueries(ctx, req.(*QueryRegisteredQueriesRequest)) @@ -774,7 +773,7 @@ func _Query_RegisteredQuery_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Query/RegisteredQuery", + FullMethod: "/nolus.interchainqueries.Query/RegisteredQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).RegisteredQuery(ctx, req.(*QueryRegisteredQueryRequest)) @@ -792,7 +791,7 @@ func _Query_QueryResult_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Query/QueryResult", + FullMethod: "/nolus.interchainqueries.Query/QueryResult", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).QueryResult(ctx, req.(*QueryRegisteredQueryResultRequest)) @@ -810,7 +809,7 @@ func _Query_LastRemoteHeight_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Query/LastRemoteHeight", + FullMethod: "/nolus.interchainqueries.Query/LastRemoteHeight", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).LastRemoteHeight(ctx, req.(*QueryLastRemoteHeight)) @@ -819,7 +818,7 @@ func _Query_LastRemoteHeight_Handler(srv interface{}, ctx context.Context, dec f } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.interchainqueries.Query", + ServiceName: "nolus.interchainqueries.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -844,7 +843,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/interchainqueries/query.proto", + Metadata: "nolus/interchainqueries/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/query.pb.gw.go b/x/interchainqueries/types/query.pb.gw.go index 8cbfcdc6..d2164ff8 100644 --- a/x/interchainqueries/types/query.pb.gw.go +++ b/x/interchainqueries/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: neutron/interchainqueries/query.proto +// source: nolus/interchainqueries/query.proto /* Package types is a reverse proxy. @@ -461,15 +461,15 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchainqueries", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchainqueries", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RegisteredQueries_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchainqueries", "registered_queries"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RegisteredQueries_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchainqueries", "registered_queries"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RegisteredQuery_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchainqueries", "registered_query"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RegisteredQuery_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchainqueries", "registered_query"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_QueryResult_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchainqueries", "query_result"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_QueryResult_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchainqueries", "query_result"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LastRemoteHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchainqueries", "remote_height"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_LastRemoteHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchainqueries", "remote_height"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/interchainqueries/types/tx.pb.go b/x/interchainqueries/types/tx.pb.go index a4a4ca2d..929aa5d2 100644 --- a/x/interchainqueries/types/tx.pb.go +++ b/x/interchainqueries/types/tx.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchainqueries/tx.proto +// source: nolus/interchainqueries/tx.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - types1 "github.com/cometbft/cometbft/abci/types" crypto "github.com/cometbft/cometbft/proto/tendermint/crypto" _ "github.com/cosmos/cosmos-proto" @@ -22,6 +18,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -45,7 +44,7 @@ type MsgRegisterInterchainQuery struct { TransactionsFilter string `protobuf:"bytes,3,opt,name=transactions_filter,json=transactionsFilter,proto3" json:"transactions_filter,omitempty"` // is IBC connection ID for getting ConsensusState to verify proofs ConnectionId string `protobuf:"bytes,4,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"` - // is used to specify how often (in neutron blocks) the query must be updated + // is used to specify how often (in nolus blocks) the query must be updated UpdatePeriod uint64 `protobuf:"varint,5,opt,name=update_period,json=updatePeriod,proto3" json:"update_period,omitempty"` // is the signer of the message Sender string `protobuf:"bytes,6,opt,name=sender,proto3" json:"sender,omitempty"` @@ -55,7 +54,7 @@ func (m *MsgRegisterInterchainQuery) Reset() { *m = MsgRegisterInterchai func (m *MsgRegisterInterchainQuery) String() string { return proto.CompactTextString(m) } func (*MsgRegisterInterchainQuery) ProtoMessage() {} func (*MsgRegisterInterchainQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{0} + return fileDescriptor_c0ec4c1e96ae4947, []int{0} } func (m *MsgRegisterInterchainQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -134,7 +133,7 @@ func (m *MsgRegisterInterchainQueryResponse) Reset() { *m = MsgRegisterI func (m *MsgRegisterInterchainQueryResponse) String() string { return proto.CompactTextString(m) } func (*MsgRegisterInterchainQueryResponse) ProtoMessage() {} func (*MsgRegisterInterchainQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{1} + return fileDescriptor_c0ec4c1e96ae4947, []int{1} } func (m *MsgRegisterInterchainQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,7 +172,7 @@ func (m *MsgRegisterInterchainQueryResponse) GetId() uint64 { type MsgSubmitQueryResult struct { QueryId uint64 `protobuf:"varint,1,opt,name=query_id,json=queryId,proto3" json:"query_id,omitempty"` Sender string `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"` - // is the IBC client ID for an IBC connection between Neutron chain and target + // is the IBC client ID for an IBC connection between nolus chain and target // chain (where the result was obtained from) ClientId string `protobuf:"bytes,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"` Result *QueryResult `protobuf:"bytes,4,opt,name=result,proto3" json:"result,omitempty"` @@ -183,7 +182,7 @@ func (m *MsgSubmitQueryResult) Reset() { *m = MsgSubmitQueryResult{} } func (m *MsgSubmitQueryResult) String() string { return proto.CompactTextString(m) } func (*MsgSubmitQueryResult) ProtoMessage() {} func (*MsgSubmitQueryResult) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{2} + return fileDescriptor_c0ec4c1e96ae4947, []int{2} } func (m *MsgSubmitQueryResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -252,7 +251,7 @@ func (m *QueryResult) Reset() { *m = QueryResult{} } func (m *QueryResult) String() string { return proto.CompactTextString(m) } func (*QueryResult) ProtoMessage() {} func (*QueryResult) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{3} + return fileDescriptor_c0ec4c1e96ae4947, []int{3} } func (m *QueryResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -332,7 +331,7 @@ func (m *StorageValue) Reset() { *m = StorageValue{} } func (m *StorageValue) String() string { return proto.CompactTextString(m) } func (*StorageValue) ProtoMessage() {} func (*StorageValue) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{4} + return fileDescriptor_c0ec4c1e96ae4947, []int{4} } func (m *StorageValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -403,7 +402,7 @@ func (m *Block) Reset() { *m = Block{} } func (m *Block) String() string { return proto.CompactTextString(m) } func (*Block) ProtoMessage() {} func (*Block) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{5} + return fileDescriptor_c0ec4c1e96ae4947, []int{5} } func (m *Block) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -469,7 +468,7 @@ func (m *TxValue) Reset() { *m = TxValue{} } func (m *TxValue) String() string { return proto.CompactTextString(m) } func (*TxValue) ProtoMessage() {} func (*TxValue) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{6} + return fileDescriptor_c0ec4c1e96ae4947, []int{6} } func (m *TxValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -533,7 +532,7 @@ func (m *MsgSubmitQueryResultResponse) Reset() { *m = MsgSubmitQueryResu func (m *MsgSubmitQueryResultResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitQueryResultResponse) ProtoMessage() {} func (*MsgSubmitQueryResultResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{7} + return fileDescriptor_c0ec4c1e96ae4947, []int{7} } func (m *MsgSubmitQueryResultResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -571,7 +570,7 @@ func (m *MsgRemoveInterchainQueryRequest) Reset() { *m = MsgRemoveInterc func (m *MsgRemoveInterchainQueryRequest) String() string { return proto.CompactTextString(m) } func (*MsgRemoveInterchainQueryRequest) ProtoMessage() {} func (*MsgRemoveInterchainQueryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{8} + return fileDescriptor_c0ec4c1e96ae4947, []int{8} } func (m *MsgRemoveInterchainQueryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -621,7 +620,7 @@ func (m *MsgRemoveInterchainQueryResponse) Reset() { *m = MsgRemoveInter func (m *MsgRemoveInterchainQueryResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveInterchainQueryResponse) ProtoMessage() {} func (*MsgRemoveInterchainQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{9} + return fileDescriptor_c0ec4c1e96ae4947, []int{9} } func (m *MsgRemoveInterchainQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -662,7 +661,7 @@ func (m *MsgUpdateInterchainQueryRequest) Reset() { *m = MsgUpdateInterc func (m *MsgUpdateInterchainQueryRequest) String() string { return proto.CompactTextString(m) } func (*MsgUpdateInterchainQueryRequest) ProtoMessage() {} func (*MsgUpdateInterchainQueryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{10} + return fileDescriptor_c0ec4c1e96ae4947, []int{10} } func (m *MsgUpdateInterchainQueryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +732,7 @@ func (m *MsgUpdateInterchainQueryResponse) Reset() { *m = MsgUpdateInter func (m *MsgUpdateInterchainQueryResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateInterchainQueryResponse) ProtoMessage() {} func (*MsgUpdateInterchainQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{11} + return fileDescriptor_c0ec4c1e96ae4947, []int{11} } func (m *MsgUpdateInterchainQueryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -778,7 +777,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{12} + return fileDescriptor_c0ec4c1e96ae4947, []int{12} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -832,7 +831,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d4793837a316491e, []int{13} + return fileDescriptor_c0ec4c1e96ae4947, []int{13} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -862,101 +861,99 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgRegisterInterchainQuery)(nil), "neutron.interchainqueries.MsgRegisterInterchainQuery") - proto.RegisterType((*MsgRegisterInterchainQueryResponse)(nil), "neutron.interchainqueries.MsgRegisterInterchainQueryResponse") - proto.RegisterType((*MsgSubmitQueryResult)(nil), "neutron.interchainqueries.MsgSubmitQueryResult") - proto.RegisterType((*QueryResult)(nil), "neutron.interchainqueries.QueryResult") - proto.RegisterType((*StorageValue)(nil), "neutron.interchainqueries.StorageValue") - proto.RegisterType((*Block)(nil), "neutron.interchainqueries.Block") - proto.RegisterType((*TxValue)(nil), "neutron.interchainqueries.TxValue") - proto.RegisterType((*MsgSubmitQueryResultResponse)(nil), "neutron.interchainqueries.MsgSubmitQueryResultResponse") - proto.RegisterType((*MsgRemoveInterchainQueryRequest)(nil), "neutron.interchainqueries.MsgRemoveInterchainQueryRequest") - proto.RegisterType((*MsgRemoveInterchainQueryResponse)(nil), "neutron.interchainqueries.MsgRemoveInterchainQueryResponse") - proto.RegisterType((*MsgUpdateInterchainQueryRequest)(nil), "neutron.interchainqueries.MsgUpdateInterchainQueryRequest") - proto.RegisterType((*MsgUpdateInterchainQueryResponse)(nil), "neutron.interchainqueries.MsgUpdateInterchainQueryResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "neutron.interchainqueries.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "neutron.interchainqueries.MsgUpdateParamsResponse") -} - -func init() { - proto.RegisterFile("neutron/interchainqueries/tx.proto", fileDescriptor_d4793837a316491e) -} - -var fileDescriptor_d4793837a316491e = []byte{ - // 1164 bytes of a gzipped FileDescriptorProto + proto.RegisterType((*MsgRegisterInterchainQuery)(nil), "nolus.interchainqueries.MsgRegisterInterchainQuery") + proto.RegisterType((*MsgRegisterInterchainQueryResponse)(nil), "nolus.interchainqueries.MsgRegisterInterchainQueryResponse") + proto.RegisterType((*MsgSubmitQueryResult)(nil), "nolus.interchainqueries.MsgSubmitQueryResult") + proto.RegisterType((*QueryResult)(nil), "nolus.interchainqueries.QueryResult") + proto.RegisterType((*StorageValue)(nil), "nolus.interchainqueries.StorageValue") + proto.RegisterType((*Block)(nil), "nolus.interchainqueries.Block") + proto.RegisterType((*TxValue)(nil), "nolus.interchainqueries.TxValue") + proto.RegisterType((*MsgSubmitQueryResultResponse)(nil), "nolus.interchainqueries.MsgSubmitQueryResultResponse") + proto.RegisterType((*MsgRemoveInterchainQueryRequest)(nil), "nolus.interchainqueries.MsgRemoveInterchainQueryRequest") + proto.RegisterType((*MsgRemoveInterchainQueryResponse)(nil), "nolus.interchainqueries.MsgRemoveInterchainQueryResponse") + proto.RegisterType((*MsgUpdateInterchainQueryRequest)(nil), "nolus.interchainqueries.MsgUpdateInterchainQueryRequest") + proto.RegisterType((*MsgUpdateInterchainQueryResponse)(nil), "nolus.interchainqueries.MsgUpdateInterchainQueryResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "nolus.interchainqueries.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "nolus.interchainqueries.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("nolus/interchainqueries/tx.proto", fileDescriptor_c0ec4c1e96ae4947) } + +var fileDescriptor_c0ec4c1e96ae4947 = []byte{ + // 1168 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4f, 0x4f, 0x1b, 0x47, - 0x14, 0x67, 0x8d, 0x4d, 0xf0, 0xe0, 0x40, 0x32, 0x25, 0xc5, 0x38, 0x8d, 0x43, 0xb6, 0x6a, 0x12, - 0xa1, 0x64, 0x57, 0x71, 0x29, 0x55, 0x41, 0xfd, 0x03, 0x6d, 0xa3, 0x22, 0x84, 0x4a, 0x17, 0xc8, - 0xa1, 0x97, 0xd5, 0x7a, 0x77, 0x58, 0x8f, 0xbc, 0x9e, 0x71, 0x76, 0x66, 0xfd, 0xe7, 0x50, 0xa9, - 0xca, 0xb1, 0x97, 0xd2, 0x6f, 0x51, 0xa9, 0x17, 0xa4, 0xf4, 0x2b, 0x54, 0xca, 0x31, 0xea, 0xa9, - 0x87, 0xaa, 0xaa, 0xe0, 0xc0, 0xb1, 0x5f, 0xa1, 0x9a, 0x3f, 0x6b, 0x4c, 0x8c, 0x4d, 0xe0, 0x02, - 0xfb, 0xde, 0xfb, 0xbd, 0x37, 0xbf, 0xf9, 0xcd, 0xbc, 0x37, 0x06, 0x26, 0x41, 0x09, 0x8f, 0x29, - 0xb1, 0x31, 0xe1, 0x28, 0xf6, 0x6b, 0x1e, 0x26, 0xcf, 0x13, 0x14, 0x63, 0xc4, 0x6c, 0xde, 0xb1, - 0x9a, 0x31, 0xe5, 0x14, 0xce, 0x6b, 0x8c, 0x35, 0x80, 0x29, 0xdd, 0xf4, 0x1a, 0x98, 0x50, 0x5b, - 0xfe, 0x55, 0xe8, 0xd2, 0x9c, 0x4f, 0x59, 0x83, 0x32, 0xbb, 0xc1, 0x42, 0xbb, 0xf5, 0x44, 0xfc, - 0xd3, 0x81, 0x79, 0x15, 0x70, 0xa5, 0x65, 0x2b, 0x43, 0x87, 0x66, 0x43, 0x1a, 0x52, 0xe5, 0x17, - 0x5f, 0x69, 0x42, 0x48, 0x69, 0x18, 0x21, 0x5b, 0x5a, 0xd5, 0x64, 0xdf, 0xf6, 0x48, 0x57, 0x87, - 0x1e, 0x0c, 0xa7, 0x1d, 0x22, 0x82, 0x18, 0x4e, 0x2b, 0xdf, 0x1f, 0x0e, 0x6c, 0x7a, 0xb1, 0xd7, - 0x48, 0x71, 0xb7, 0x39, 0x22, 0x01, 0x8a, 0x1b, 0x98, 0x70, 0xdb, 0xab, 0xfa, 0xd8, 0xe6, 0xdd, - 0x26, 0x4a, 0x83, 0x77, 0xfa, 0x82, 0x7e, 0xdc, 0x6d, 0x72, 0x2a, 0x38, 0xd1, 0x7d, 0x15, 0x36, - 0x7f, 0xc9, 0x80, 0xd2, 0x16, 0x0b, 0x1d, 0x14, 0x62, 0xc6, 0x51, 0xbc, 0xd1, 0x5b, 0xe9, 0xbb, - 0x04, 0xc5, 0x5d, 0x78, 0x07, 0x00, 0xb1, 0x64, 0xd7, 0x15, 0x25, 0x8b, 0xc6, 0x82, 0xf1, 0x30, - 0xef, 0xe4, 0xa5, 0x67, 0xb7, 0xdb, 0x44, 0x70, 0x09, 0x64, 0xeb, 0xa8, 0xcb, 0x8a, 0x99, 0x85, - 0xf1, 0x87, 0x53, 0x95, 0x05, 0x6b, 0xa8, 0xd8, 0xd6, 0xe6, 0xb3, 0x4d, 0xd4, 0x75, 0x24, 0x1a, - 0xda, 0xe0, 0x1d, 0x1e, 0x7b, 0x84, 0x79, 0x3e, 0xc7, 0x94, 0x30, 0x77, 0x1f, 0x47, 0x1c, 0xc5, - 0xc5, 0x71, 0x59, 0x1d, 0xf6, 0x87, 0x9e, 0xca, 0x08, 0x7c, 0x1f, 0x5c, 0xf7, 0x29, 0x21, 0x48, - 0x3a, 0x5d, 0x1c, 0x14, 0xb3, 0x12, 0x5a, 0x38, 0x75, 0x6e, 0x04, 0x02, 0x94, 0x34, 0x03, 0x8f, - 0x23, 0xb7, 0x89, 0x62, 0x4c, 0x83, 0x62, 0x6e, 0xc1, 0x78, 0x98, 0x75, 0x0a, 0xca, 0xb9, 0x2d, - 0x7d, 0xf0, 0x5d, 0x30, 0xc1, 0xa4, 0x1e, 0xc5, 0x09, 0x59, 0x42, 0x5b, 0x2b, 0x53, 0x2f, 0x4e, - 0x0e, 0x17, 0xb5, 0x61, 0x2e, 0x01, 0x73, 0xb8, 0x24, 0x0e, 0x62, 0x4d, 0x4a, 0x18, 0x82, 0xd3, - 0x20, 0x83, 0x03, 0x29, 0x49, 0xd6, 0xc9, 0xe0, 0xc0, 0x7c, 0x69, 0x80, 0xd9, 0x2d, 0x16, 0xee, - 0x24, 0xd5, 0x06, 0xe6, 0x29, 0x34, 0x89, 0x38, 0x9c, 0x07, 0x93, 0x4a, 0xc3, 0x1e, 0xfc, 0x9a, - 0xb4, 0x37, 0xfa, 0xe9, 0x64, 0xfa, 0xe9, 0xc0, 0xdb, 0x20, 0xef, 0x47, 0x18, 0x11, 0x2e, 0x72, - 0x94, 0x2e, 0x93, 0xca, 0xb1, 0x11, 0xc0, 0xcf, 0xc0, 0x44, 0x2c, 0x2b, 0x4b, 0x19, 0xa6, 0x2a, - 0xf7, 0x47, 0xc8, 0xde, 0xc7, 0xc3, 0xd1, 0x59, 0x67, 0xf7, 0xfa, 0x9f, 0x01, 0xa6, 0xfa, 0xc9, - 0x3e, 0x05, 0xa0, 0xde, 0x72, 0x15, 0x92, 0x15, 0x0d, 0x79, 0xae, 0x0f, 0x46, 0x2c, 0xb0, 0xc3, - 0x69, 0xec, 0x85, 0xe8, 0x99, 0x17, 0x25, 0xc8, 0xc9, 0xd7, 0x5b, 0xaa, 0x0c, 0x83, 0xcb, 0x20, - 0x57, 0x8d, 0xa8, 0x5f, 0x97, 0x1b, 0x1b, 0x7d, 0x35, 0xd6, 0x05, 0xce, 0x51, 0x70, 0xa1, 0x48, - 0x0d, 0xe1, 0xb0, 0xc6, 0xe5, 0xb6, 0xb3, 0x8e, 0xb6, 0x60, 0x09, 0x4c, 0xc6, 0xa8, 0x85, 0x19, - 0xa6, 0x44, 0x6e, 0x3b, 0xeb, 0xf4, 0x6c, 0xf8, 0x08, 0x40, 0x2f, 0x8a, 0x68, 0xdb, 0xad, 0xb7, - 0x5c, 0xdf, 0x8b, 0xa2, 0xaa, 0xe7, 0xd7, 0x99, 0x3c, 0xfe, 0x49, 0xe7, 0x86, 0x8c, 0x6c, 0xb6, - 0xbe, 0x4c, 0xfd, 0xe6, 0x81, 0x01, 0x0a, 0xfd, 0xac, 0xe1, 0x07, 0x60, 0x9a, 0x29, 0xdb, 0x6d, - 0xc6, 0x68, 0x1f, 0x77, 0xf4, 0x3d, 0xbf, 0xae, 0xbd, 0xdb, 0xd2, 0x09, 0x6f, 0x80, 0xf1, 0x3a, - 0xea, 0xca, 0xfd, 0x14, 0x1c, 0xf1, 0x09, 0x67, 0x41, 0xae, 0x25, 0x2a, 0x48, 0xaa, 0x05, 0x47, - 0x19, 0xf0, 0x09, 0xc8, 0x6d, 0x8b, 0x06, 0xd3, 0xa7, 0x73, 0xdb, 0x3a, 0x6d, 0x40, 0x4b, 0x35, - 0xa0, 0x25, 0xe3, 0xdf, 0x36, 0x99, 0xa3, 0x90, 0xe6, 0x6f, 0x06, 0xc8, 0x49, 0x15, 0xe0, 0x17, - 0xe0, 0x26, 0x41, 0x1d, 0xee, 0x4a, 0x31, 0xdc, 0x1a, 0xf2, 0xc4, 0xdd, 0x30, 0x64, 0xa1, 0x59, - 0x4b, 0x8d, 0x14, 0x2b, 0x1d, 0x29, 0xd6, 0x1a, 0xe9, 0x3a, 0x33, 0x02, 0x2e, 0x73, 0xbf, 0x91, - 0x60, 0xf8, 0x48, 0x08, 0xe8, 0xa5, 0x57, 0x6a, 0x58, 0x9a, 0xc6, 0xc0, 0x0a, 0xc8, 0xf0, 0x8e, - 0xe4, 0x3f, 0x55, 0x31, 0x47, 0x9c, 0xd1, 0x6e, 0x47, 0x9d, 0x70, 0x86, 0x77, 0xcc, 0xbf, 0x0d, - 0x70, 0x4d, 0xdb, 0xf0, 0x13, 0x71, 0x2c, 0xaa, 0x21, 0x34, 0xcd, 0x3b, 0xfd, 0xfb, 0x15, 0xd3, - 0xc8, 0xfa, 0xba, 0x83, 0xfc, 0xdd, 0x8e, 0xbe, 0x84, 0x3d, 0x38, 0xfc, 0x1c, 0x4c, 0x07, 0x28, - 0xc2, 0x2d, 0xd1, 0x19, 0x72, 0x22, 0x69, 0xc2, 0xc5, 0x61, 0x82, 0x39, 0xd7, 0x53, 0xbc, 0x34, - 0xe1, 0x1a, 0x98, 0xc1, 0xc4, 0x8f, 0x12, 0x71, 0x07, 0x74, 0x85, 0xf1, 0x0b, 0x2a, 0x4c, 0xf7, - 0x12, 0x54, 0x09, 0x08, 0xb2, 0x81, 0xc7, 0x3d, 0x79, 0x54, 0x05, 0x47, 0x7e, 0x9b, 0x65, 0xf0, - 0xde, 0x79, 0x6d, 0x9c, 0xf6, 0xbd, 0xe9, 0x81, 0xbb, 0x72, 0x3a, 0x34, 0x68, 0x0b, 0x0d, 0xcc, - 0x86, 0xe7, 0x09, 0x62, 0x57, 0xe9, 0xf8, 0xb3, 0x4d, 0x69, 0x82, 0x85, 0xe1, 0x4b, 0x68, 0x1a, - 0x2f, 0x32, 0x92, 0xc7, 0x9e, 0x9c, 0x6e, 0x97, 0xe7, 0xb1, 0x0a, 0x26, 0x09, 0x6a, 0xbb, 0x97, - 0x9a, 0xde, 0xd7, 0x08, 0x6a, 0x6f, 0x8a, 0x01, 0xbe, 0x28, 0x6e, 0x69, 0xdb, 0x3d, 0x3b, 0x6e, - 0x55, 0xbf, 0xce, 0x10, 0xd4, 0xde, 0xeb, 0x9f, 0xb8, 0xcb, 0x60, 0x4e, 0x60, 0xcf, 0x1b, 0xf8, - 0x6a, 0x8a, 0xdf, 0x22, 0xa8, 0xbd, 0x3b, 0x38, 0xf3, 0x4f, 0x85, 0xca, 0x5d, 0x24, 0xd4, 0x10, - 0x0d, 0xb4, 0x50, 0x7f, 0x18, 0x60, 0xa6, 0x07, 0xda, 0x96, 0xef, 0x26, 0x5c, 0x06, 0x79, 0x2f, - 0xe1, 0x35, 0x1a, 0x63, 0xde, 0x55, 0xdd, 0xbe, 0x5e, 0xfc, 0xf3, 0xf7, 0xc7, 0xb3, 0xfa, 0x61, - 0x5f, 0x0b, 0x82, 0x18, 0x31, 0xb6, 0xc3, 0x63, 0x4c, 0x42, 0xe7, 0x14, 0x0a, 0xbf, 0x02, 0x13, - 0xea, 0xe5, 0xd5, 0x77, 0xf5, 0xde, 0x08, 0xcd, 0xd4, 0x52, 0xeb, 0xf9, 0x57, 0xff, 0xdc, 0x1d, - 0xfb, 0xf5, 0xe4, 0x70, 0xd1, 0x70, 0x74, 0xee, 0xca, 0x92, 0xd8, 0xc2, 0x69, 0xd5, 0x9f, 0x4e, - 0x0e, 0x17, 0xef, 0x0d, 0x3e, 0xf1, 0x6f, 0x70, 0x36, 0xe7, 0xc1, 0xdc, 0x1b, 0xae, 0x74, 0x8b, - 0x95, 0x97, 0x39, 0x30, 0xbe, 0xc5, 0x42, 0xf8, 0xb3, 0x01, 0xe6, 0x86, 0xbd, 0xe4, 0x1f, 0x8d, - 0xa0, 0x3a, 0xfc, 0xb5, 0x2b, 0x7d, 0x7a, 0xa5, 0xb4, 0xde, 0x23, 0xf9, 0x03, 0xb8, 0x39, 0xf8, - 0x20, 0xda, 0xa3, 0x6b, 0x0e, 0x24, 0x94, 0x3e, 0xbe, 0x64, 0x42, 0x6f, 0xf9, 0x03, 0x03, 0xdc, - 0x3a, 0xb7, 0x8d, 0xe0, 0xca, 0x45, 0xfb, 0x1a, 0xde, 0xde, 0xa5, 0xd5, 0x2b, 0xe5, 0xf6, 0x51, - 0x3a, 0xf7, 0xc2, 0x5e, 0x44, 0x69, 0x54, 0xa7, 0x5f, 0x44, 0x69, 0x64, 0x87, 0x40, 0x02, 0x0a, - 0x67, 0xba, 0x63, 0xf1, 0x6d, 0x8a, 0x29, 0x6c, 0xa9, 0xf2, 0xf6, 0xd8, 0x74, 0xbd, 0x52, 0xee, - 0x47, 0xd1, 0x0e, 0xeb, 0x7b, 0xaf, 0x8e, 0xca, 0xc6, 0xeb, 0xa3, 0xb2, 0xf1, 0xef, 0x51, 0xd9, - 0x38, 0x38, 0x2e, 0x8f, 0xbd, 0x3e, 0x2e, 0x8f, 0xfd, 0x75, 0x5c, 0x1e, 0xfb, 0x7e, 0x35, 0xc4, - 0xbc, 0x96, 0x54, 0x2d, 0x9f, 0x36, 0x6c, 0x5d, 0xfe, 0x31, 0x8d, 0xc3, 0xf4, 0xdb, 0x6e, 0x2d, - 0xd9, 0x9d, 0xf3, 0x7e, 0xf4, 0x8b, 0x9f, 0xbd, 0xd5, 0x09, 0xf9, 0xd0, 0x7d, 0xf8, 0x7f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xaf, 0x02, 0x2b, 0xa7, 0x1e, 0x0c, 0x00, 0x00, + 0x14, 0x67, 0x8d, 0x4d, 0xf0, 0xe0, 0x40, 0x98, 0x92, 0x62, 0x4c, 0x31, 0xae, 0x1b, 0x24, 0x84, + 0xc2, 0x6e, 0x42, 0x68, 0x54, 0xd2, 0xaa, 0x2d, 0xf4, 0x8f, 0x8a, 0x10, 0x2d, 0x5d, 0x48, 0x54, + 0xf5, 0xb2, 0x5a, 0xef, 0x0e, 0xeb, 0xa9, 0xd7, 0x33, 0xce, 0xce, 0xac, 0xed, 0xbd, 0x45, 0x3d, + 0xb6, 0x95, 0x9a, 0x6f, 0xd0, 0x6b, 0x7b, 0xa3, 0x52, 0xbf, 0x41, 0x2f, 0x39, 0x46, 0x3d, 0xf5, + 0x50, 0x55, 0x15, 0x1c, 0x38, 0xf4, 0x4b, 0x54, 0x33, 0xb3, 0x6b, 0x4c, 0xcc, 0x9a, 0xc2, 0x05, + 0xf6, 0xbd, 0xf7, 0x9b, 0x37, 0xbf, 0xf7, 0xe6, 0xfd, 0x31, 0xa8, 0x10, 0xea, 0x87, 0xcc, 0xc0, + 0x84, 0xa3, 0xc0, 0xa9, 0xdb, 0x98, 0x3c, 0x0d, 0x51, 0x80, 0x11, 0x33, 0x78, 0x57, 0x6f, 0x05, + 0x94, 0x53, 0x38, 0x2b, 0x11, 0xfa, 0x00, 0xa2, 0x34, 0x6d, 0x37, 0x31, 0xa1, 0x86, 0xfc, 0xab, + 0xb0, 0xa5, 0x59, 0x87, 0xb2, 0x26, 0x65, 0x46, 0x93, 0x79, 0x46, 0xfb, 0xbe, 0xf8, 0x17, 0x1b, + 0xe6, 0x94, 0xc1, 0x92, 0x92, 0xa1, 0x84, 0xd8, 0x34, 0xe3, 0x51, 0x8f, 0x2a, 0xbd, 0xf8, 0x4a, + 0x0e, 0x78, 0x94, 0x7a, 0x3e, 0x32, 0xa4, 0x54, 0x0b, 0x0f, 0x0d, 0x9b, 0x44, 0xb1, 0x69, 0x29, + 0x8d, 0xb2, 0x87, 0x08, 0x62, 0x38, 0xf1, 0x7b, 0x27, 0x0d, 0xd6, 0xb2, 0x03, 0xbb, 0x99, 0xa0, + 0xe6, 0x39, 0x22, 0x2e, 0x0a, 0x9a, 0x98, 0x70, 0xc3, 0xae, 0x39, 0xd8, 0xe0, 0x51, 0x0b, 0x25, + 0xc6, 0x85, 0x3e, 0xa3, 0x13, 0x44, 0x2d, 0x4e, 0x05, 0x1f, 0x7a, 0xa8, 0xcc, 0xd5, 0x1f, 0x33, + 0xa0, 0xb4, 0xcb, 0x3c, 0x13, 0x79, 0x98, 0x71, 0x14, 0x6c, 0xf7, 0x6e, 0xfa, 0x32, 0x44, 0x41, + 0x04, 0x17, 0x00, 0x10, 0x57, 0x46, 0x96, 0x70, 0x59, 0xd4, 0x2a, 0xda, 0x72, 0xde, 0xcc, 0x4b, + 0xcd, 0x41, 0xd4, 0x42, 0x70, 0x0d, 0x64, 0x1b, 0x28, 0x62, 0xc5, 0x4c, 0x65, 0x74, 0x79, 0x62, + 0xad, 0xac, 0xa7, 0xa4, 0x59, 0xdf, 0x79, 0xb2, 0x83, 0x22, 0x53, 0x62, 0xa1, 0x01, 0x5e, 0xe3, + 0x81, 0x4d, 0x98, 0xed, 0x70, 0x4c, 0x09, 0xb3, 0x0e, 0xb1, 0xcf, 0x51, 0x50, 0x1c, 0x95, 0xbe, + 0x61, 0xbf, 0xe9, 0x53, 0x69, 0x81, 0x6f, 0x81, 0x9b, 0x0e, 0x25, 0x04, 0x49, 0xa5, 0x85, 0xdd, + 0x62, 0x56, 0x42, 0x0b, 0x67, 0xca, 0x6d, 0x57, 0x80, 0xc2, 0x96, 0x6b, 0x73, 0x64, 0xb5, 0x50, + 0x80, 0xa9, 0x5b, 0xcc, 0x55, 0xb4, 0xe5, 0xac, 0x59, 0x50, 0xca, 0x3d, 0xa9, 0x83, 0xaf, 0x83, + 0x31, 0x26, 0xb3, 0x51, 0x1c, 0x93, 0x2e, 0x62, 0xe9, 0xd1, 0xc4, 0xb7, 0xa7, 0x47, 0x2b, 0xb1, + 0x50, 0x5d, 0x07, 0xd5, 0xf4, 0x84, 0x98, 0x88, 0xb5, 0x28, 0x61, 0x08, 0x4e, 0x82, 0x0c, 0x76, + 0x65, 0x42, 0xb2, 0x66, 0x06, 0xbb, 0xd5, 0x5f, 0x35, 0x30, 0xb3, 0xcb, 0xbc, 0xfd, 0xb0, 0xd6, + 0xc4, 0x3c, 0x81, 0x86, 0x3e, 0x87, 0x73, 0x60, 0x5c, 0x65, 0xb0, 0x07, 0xbf, 0x21, 0xe5, 0xed, + 0x7e, 0x3a, 0x99, 0x7e, 0x3a, 0x70, 0x1e, 0xe4, 0x1d, 0x1f, 0x23, 0xc2, 0xc5, 0x19, 0x95, 0x97, + 0x71, 0xa5, 0xd8, 0x76, 0xe1, 0x7b, 0x60, 0x2c, 0x90, 0x9e, 0x65, 0x1a, 0x26, 0xd6, 0xee, 0xa4, + 0x26, 0xbd, 0x8f, 0x85, 0x19, 0x9f, 0x39, 0x1f, 0xe9, 0xbf, 0x1a, 0x98, 0xe8, 0xa7, 0xfa, 0x31, + 0x00, 0x8d, 0xb6, 0xa5, 0x90, 0xac, 0xa8, 0xc9, 0x37, 0x5d, 0x4a, 0x75, 0xbf, 0xcf, 0x69, 0x60, + 0x7b, 0xe8, 0x89, 0xed, 0x87, 0xc8, 0xcc, 0x37, 0xda, 0xca, 0x09, 0x83, 0xeb, 0x20, 0x57, 0xf3, + 0xa9, 0xd3, 0x90, 0x41, 0x0d, 0x2b, 0x8a, 0x2d, 0x81, 0x32, 0x15, 0x58, 0xe4, 0xa2, 0x8e, 0xb0, + 0x57, 0xe7, 0x32, 0xe0, 0xac, 0x19, 0x4b, 0xb0, 0x04, 0xc6, 0x03, 0xd4, 0xc6, 0x0c, 0x53, 0x22, + 0x03, 0xce, 0x9a, 0x3d, 0x19, 0xde, 0x05, 0xd0, 0xf6, 0x7d, 0xda, 0xb1, 0x1a, 0x6d, 0xcb, 0xb1, + 0x7d, 0xbf, 0x66, 0x3b, 0x0d, 0x26, 0x1f, 0x7e, 0xdc, 0xbc, 0x25, 0x2d, 0x3b, 0xed, 0x8f, 0x12, + 0x7d, 0xf5, 0xb9, 0x06, 0x0a, 0xfd, 0x9c, 0xe1, 0x12, 0x98, 0x64, 0x4a, 0xb6, 0x5a, 0x01, 0x3a, + 0xc4, 0xdd, 0xb8, 0xbe, 0x6f, 0xc6, 0xda, 0x3d, 0xa9, 0x84, 0xb7, 0xc0, 0x68, 0x03, 0x45, 0x32, + 0x9a, 0x82, 0x29, 0x3e, 0xe1, 0x0c, 0xc8, 0xb5, 0x85, 0x07, 0x49, 0xb5, 0x60, 0x2a, 0x01, 0xde, + 0x07, 0xb9, 0x3d, 0xd1, 0x58, 0xf1, 0xbb, 0xcc, 0xeb, 0x67, 0x8d, 0xa7, 0xab, 0xc6, 0xd3, 0xa5, + 0xfd, 0x8b, 0x16, 0x33, 0x15, 0xb2, 0xfa, 0x8b, 0x06, 0x72, 0x32, 0x0b, 0xf0, 0x43, 0x30, 0x4d, + 0x50, 0x97, 0x5b, 0x32, 0x19, 0x56, 0x1d, 0xd9, 0xa2, 0x2a, 0x34, 0xe9, 0x68, 0x46, 0x57, 0x63, + 0x44, 0x4f, 0xc6, 0x88, 0xbe, 0x49, 0x22, 0x73, 0x4a, 0xc0, 0xe5, 0xd9, 0xcf, 0x24, 0x18, 0xde, + 0x15, 0x09, 0xb4, 0x93, 0x62, 0x4a, 0x3b, 0x16, 0x63, 0xe0, 0x3d, 0x90, 0xe1, 0x5d, 0xc9, 0x7f, + 0x62, 0xad, 0x92, 0xfa, 0x42, 0x07, 0x5d, 0xf5, 0xba, 0x19, 0xde, 0xad, 0xfe, 0xa5, 0x81, 0x1b, + 0xb1, 0x0c, 0x37, 0xc4, 0xa3, 0xa8, 0x46, 0x88, 0x49, 0x2e, 0xf4, 0x47, 0x2b, 0x66, 0x90, 0xfe, + 0x49, 0x17, 0x39, 0x07, 0xdd, 0xb8, 0xfc, 0x7a, 0x70, 0xf8, 0x01, 0x98, 0x74, 0x91, 0x8f, 0xdb, + 0xa2, 0x23, 0xe4, 0x1c, 0x8a, 0xe9, 0x16, 0xd3, 0xd2, 0x65, 0xde, 0x4c, 0xf0, 0x52, 0x84, 0x9b, + 0x60, 0x0a, 0x13, 0xc7, 0x0f, 0x45, 0x05, 0xc4, 0x1e, 0x46, 0x2f, 0xf1, 0x30, 0xd9, 0x3b, 0xa0, + 0x5c, 0x40, 0x90, 0x75, 0x6d, 0x6e, 0xcb, 0x87, 0x2a, 0x98, 0xf2, 0xbb, 0x5a, 0x06, 0x6f, 0x5c, + 0xd4, 0xbe, 0x49, 0xbf, 0x57, 0x6d, 0xb0, 0x28, 0xa7, 0x42, 0x93, 0xb6, 0xd1, 0xc0, 0x4c, 0x78, + 0x1a, 0x22, 0x76, 0x9d, 0x4e, 0x3f, 0xdf, 0x8e, 0x55, 0x50, 0x49, 0xbf, 0x22, 0xa6, 0xf1, 0x2c, + 0x23, 0x79, 0x3c, 0x96, 0x53, 0xed, 0xea, 0x3c, 0x36, 0xc0, 0x38, 0x41, 0x1d, 0xeb, 0x0a, 0x33, + 0xfb, 0x06, 0x41, 0x9d, 0x1d, 0x31, 0xb6, 0x57, 0x44, 0x85, 0x76, 0xac, 0xf3, 0x43, 0x56, 0xf5, + 0xea, 0x14, 0x41, 0x9d, 0xc7, 0xfd, 0x73, 0xf6, 0x21, 0x98, 0x15, 0xd8, 0x8b, 0xc6, 0xbc, 0x9a, + 0xdd, 0xb7, 0x09, 0xea, 0x1c, 0x0c, 0x4e, 0xfa, 0xb3, 0x34, 0xe5, 0x2e, 0x4b, 0x53, 0x4a, 0x06, + 0xe2, 0x34, 0xfd, 0xae, 0x81, 0xa9, 0x1e, 0x68, 0x4f, 0xee, 0x4a, 0xf8, 0x10, 0xe4, 0xed, 0x90, + 0xd7, 0x69, 0x80, 0x79, 0xa4, 0x3a, 0x7d, 0xab, 0xf8, 0xc7, 0x6f, 0xab, 0x33, 0xf1, 0x22, 0xdf, + 0x74, 0xdd, 0x00, 0x31, 0xb6, 0xcf, 0x03, 0x4c, 0x3c, 0xf3, 0x0c, 0x0a, 0xb7, 0xc0, 0x98, 0xda, + 0xb6, 0x71, 0xa5, 0x2e, 0xa6, 0x66, 0x4c, 0x5d, 0xb4, 0x95, 0x7f, 0xf1, 0xf7, 0xe2, 0xc8, 0xcf, + 0xa7, 0x47, 0x2b, 0x9a, 0x19, 0x9f, 0x7c, 0xb4, 0x2e, 0x02, 0x38, 0xf3, 0xf9, 0xdd, 0xe9, 0xd1, + 0xca, 0x9b, 0x83, 0x4b, 0xfd, 0x15, 0xc6, 0xd5, 0x39, 0x30, 0xfb, 0x8a, 0x2a, 0x09, 0x70, 0xed, + 0xa7, 0x1c, 0x18, 0xdd, 0x65, 0x1e, 0xfc, 0x5e, 0x03, 0xb3, 0x69, 0xbb, 0xfb, 0x41, 0x2a, 0xd1, + 0xf4, 0xfd, 0x56, 0x7a, 0xf7, 0x1a, 0x87, 0x7a, 0x4b, 0x31, 0x02, 0xd3, 0x83, 0x0b, 0x70, 0x75, + 0x98, 0xc7, 0x01, 0x78, 0xe9, 0xed, 0x2b, 0xc1, 0x7b, 0x57, 0xff, 0xa0, 0x81, 0xdb, 0x17, 0xb6, + 0x0e, 0x7c, 0x67, 0x78, 0x44, 0xe9, 0x0d, 0x5d, 0xda, 0xb8, 0xc6, 0xc9, 0x3e, 0x3a, 0x17, 0x96, + 0xe8, 0x70, 0x3a, 0xc3, 0xfa, 0x7a, 0x38, 0x9d, 0xa1, 0xfd, 0x00, 0xbf, 0x01, 0x85, 0x73, 0xbd, + 0xb0, 0x7c, 0xb9, 0x2b, 0x85, 0x2c, 0xdd, 0xfb, 0xbf, 0xc8, 0xe4, 0xae, 0x52, 0xee, 0x99, 0x28, + 0xfd, 0xad, 0xaf, 0x5e, 0x1c, 0x97, 0xb5, 0x97, 0xc7, 0x65, 0xed, 0x9f, 0xe3, 0xb2, 0xf6, 0xfc, + 0xa4, 0x3c, 0xf2, 0xf2, 0xa4, 0x3c, 0xf2, 0xe7, 0x49, 0x79, 0xe4, 0xeb, 0xf7, 0x3d, 0xcc, 0xeb, + 0x61, 0x4d, 0x77, 0x68, 0xd3, 0xf8, 0x5c, 0x38, 0x5f, 0xdd, 0x13, 0x2b, 0xca, 0xa1, 0xbe, 0x21, + 0xef, 0x5a, 0x75, 0x68, 0x80, 0x8c, 0xee, 0x45, 0xbf, 0xe7, 0xc5, 0xef, 0xda, 0xda, 0x98, 0xdc, + 0x68, 0x0f, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x20, 0x2e, 0x61, 0xca, 0xf7, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -988,7 +985,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) RegisterInterchainQuery(ctx context.Context, in *MsgRegisterInterchainQuery, opts ...grpc.CallOption) (*MsgRegisterInterchainQueryResponse, error) { out := new(MsgRegisterInterchainQueryResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Msg/RegisterInterchainQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Msg/RegisterInterchainQuery", in, out, opts...) if err != nil { return nil, err } @@ -997,7 +994,7 @@ func (c *msgClient) RegisterInterchainQuery(ctx context.Context, in *MsgRegister func (c *msgClient) SubmitQueryResult(ctx context.Context, in *MsgSubmitQueryResult, opts ...grpc.CallOption) (*MsgSubmitQueryResultResponse, error) { out := new(MsgSubmitQueryResultResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Msg/SubmitQueryResult", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Msg/SubmitQueryResult", in, out, opts...) if err != nil { return nil, err } @@ -1006,7 +1003,7 @@ func (c *msgClient) SubmitQueryResult(ctx context.Context, in *MsgSubmitQueryRes func (c *msgClient) RemoveInterchainQuery(ctx context.Context, in *MsgRemoveInterchainQueryRequest, opts ...grpc.CallOption) (*MsgRemoveInterchainQueryResponse, error) { out := new(MsgRemoveInterchainQueryResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Msg/RemoveInterchainQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Msg/RemoveInterchainQuery", in, out, opts...) if err != nil { return nil, err } @@ -1015,7 +1012,7 @@ func (c *msgClient) RemoveInterchainQuery(ctx context.Context, in *MsgRemoveInte func (c *msgClient) UpdateInterchainQuery(ctx context.Context, in *MsgUpdateInterchainQueryRequest, opts ...grpc.CallOption) (*MsgUpdateInterchainQueryResponse, error) { out := new(MsgUpdateInterchainQueryResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Msg/UpdateInterchainQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Msg/UpdateInterchainQuery", in, out, opts...) if err != nil { return nil, err } @@ -1024,7 +1021,7 @@ func (c *msgClient) UpdateInterchainQuery(ctx context.Context, in *MsgUpdateInte func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.interchainqueries.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchainqueries.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -1074,7 +1071,7 @@ func _Msg_RegisterInterchainQuery_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Msg/RegisterInterchainQuery", + FullMethod: "/nolus.interchainqueries.Msg/RegisterInterchainQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RegisterInterchainQuery(ctx, req.(*MsgRegisterInterchainQuery)) @@ -1092,7 +1089,7 @@ func _Msg_SubmitQueryResult_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Msg/SubmitQueryResult", + FullMethod: "/nolus.interchainqueries.Msg/SubmitQueryResult", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitQueryResult(ctx, req.(*MsgSubmitQueryResult)) @@ -1110,7 +1107,7 @@ func _Msg_RemoveInterchainQuery_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Msg/RemoveInterchainQuery", + FullMethod: "/nolus.interchainqueries.Msg/RemoveInterchainQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RemoveInterchainQuery(ctx, req.(*MsgRemoveInterchainQueryRequest)) @@ -1128,7 +1125,7 @@ func _Msg_UpdateInterchainQuery_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Msg/UpdateInterchainQuery", + FullMethod: "/nolus.interchainqueries.Msg/UpdateInterchainQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateInterchainQuery(ctx, req.(*MsgUpdateInterchainQueryRequest)) @@ -1146,7 +1143,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchainqueries.Msg/UpdateParams", + FullMethod: "/nolus.interchainqueries.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -1155,7 +1152,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.interchainqueries.Msg", + ServiceName: "nolus.interchainqueries.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1180,7 +1177,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/interchainqueries/tx.proto", + Metadata: "nolus/interchainqueries/tx.proto", } func (m *MsgRegisterInterchainQuery) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/genesis.pb.go b/x/interchaintxs/types/genesis.pb.go index 85e6a2c7..fe5ed0b2 100644 --- a/x/interchaintxs/types/genesis.pb.go +++ b/x/interchaintxs/types/genesis.pb.go @@ -1,16 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchaintxs/v1/genesis.proto +// source: nolus/interchaintxs/v1/genesis.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" - - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -33,7 +32,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_d16558b72a810826, []int{0} + return fileDescriptor_728e280135863e2c, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -70,28 +69,29 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "neutron.interchaintxs.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "nolus.interchaintxs.v1.GenesisState") } func init() { - proto.RegisterFile("neutron/interchaintxs/v1/genesis.proto", fileDescriptor_d16558b72a810826) + proto.RegisterFile("nolus/interchaintxs/v1/genesis.proto", fileDescriptor_728e280135863e2c) } -var fileDescriptor_d16558b72a810826 = []byte{ - // 207 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcb, 0x4b, 0x2d, 0x2d, - 0x29, 0xca, 0xcf, 0xd3, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x2b, 0xa9, - 0x28, 0xd6, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x92, 0x80, 0xaa, 0xd3, 0x43, 0x51, 0xa7, 0x57, 0x66, 0x28, 0x25, 0x92, 0x9e, - 0x9f, 0x9e, 0x0f, 0x56, 0xa4, 0x0f, 0x62, 0x41, 0xd4, 0x4b, 0xa9, 0xe2, 0x34, 0xb7, 0x20, 0xb1, - 0x28, 0x31, 0x17, 0x6a, 0xac, 0x92, 0x1f, 0x17, 0x8f, 0x3b, 0xc4, 0x9e, 0xe0, 0x92, 0xc4, 0x92, - 0x54, 0x21, 0x3b, 0x2e, 0x36, 0x88, 0xbc, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x82, 0x1e, - 0x2e, 0x7b, 0xf5, 0x02, 0xc0, 0xea, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x72, - 0x0a, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xf3, 0xf4, 0xcc, 0x92, - 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x99, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, - 0x7e, 0x99, 0x89, 0x7e, 0x05, 0x9a, 0x63, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x2e, - 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x02, 0x5d, 0x4b, 0x80, 0x2a, 0x01, 0x00, 0x00, +var fileDescriptor_728e280135863e2c = []byte{ + // 213 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0xcb, 0xcf, 0x29, + 0x2d, 0xd6, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x2b, 0xa9, 0x28, 0xd6, + 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, + 0x17, 0x12, 0x03, 0xab, 0xd2, 0x43, 0x51, 0xa5, 0x57, 0x66, 0x28, 0x25, 0x92, 0x9e, 0x9f, 0x9e, + 0x0f, 0x56, 0xa2, 0x0f, 0x62, 0x41, 0x54, 0x4b, 0x29, 0xe3, 0x30, 0xb3, 0x20, 0xb1, 0x28, 0x31, + 0x17, 0x6a, 0xa4, 0x92, 0x0f, 0x17, 0x8f, 0x3b, 0xc4, 0x8e, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, + 0x1b, 0x2e, 0x36, 0x88, 0xbc, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x9c, 0x1e, 0x76, 0x3b, + 0xf5, 0x02, 0xc0, 0xaa, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x71, 0x0a, 0x39, + 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xab, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x3f, 0x90, 0x89, 0xba, 0x01, 0x20, 0xfb, 0x93, 0xf3, 0x73, + 0xf4, 0xc1, 0x16, 0xe8, 0x26, 0xe7, 0x17, 0xa5, 0xea, 0x57, 0xa0, 0xb9, 0xb6, 0xa4, 0xb2, 0x20, + 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x54, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x3b, 0xad, + 0xd3, 0x25, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/params.pb.go b/x/interchaintxs/types/params.pb.go index 3012954b..a5cd7d3e 100644 --- a/x/interchaintxs/types/params.pb.go +++ b/x/interchaintxs/types/params.pb.go @@ -1,17 +1,16 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchaintxs/v1/params.proto +// source: nolus/interchaintxs/v1/params.proto package types import ( fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -36,7 +35,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_52b0ced89d3fa9c6, []int{0} + return fileDescriptor_8dc15da27d779deb, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,34 +79,34 @@ func (m *Params) GetRegisterFee() []types.Coin { } func init() { - proto.RegisterType((*Params)(nil), "neutron.interchaintxs.v1.Params") + proto.RegisterType((*Params)(nil), "nolus.interchaintxs.v1.Params") } func init() { - proto.RegisterFile("neutron/interchaintxs/v1/params.proto", fileDescriptor_52b0ced89d3fa9c6) + proto.RegisterFile("nolus/interchaintxs/v1/params.proto", fileDescriptor_8dc15da27d779deb) } -var fileDescriptor_52b0ced89d3fa9c6 = []byte{ - // 291 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x31, 0x4b, 0x03, 0x41, - 0x10, 0x85, 0x6f, 0x35, 0xa4, 0xb8, 0x58, 0x05, 0x91, 0x98, 0x62, 0x13, 0x04, 0x21, 0x8d, 0xbb, - 0x9c, 0x0a, 0x42, 0xca, 0x08, 0x76, 0x01, 0x8d, 0x56, 0x36, 0xc7, 0xde, 0x31, 0x6e, 0xb6, 0xd8, - 0xdd, 0xb0, 0xb3, 0x39, 0xd6, 0x3f, 0x21, 0x96, 0x96, 0xfe, 0x9c, 0x94, 0x29, 0xad, 0x44, 0xee, - 0xfe, 0x88, 0xe4, 0xee, 0x52, 0x68, 0xf7, 0x98, 0x79, 0x8f, 0xf9, 0xe6, 0xc5, 0xe7, 0x06, 0xd6, - 0xde, 0x59, 0xc3, 0x95, 0xf1, 0xe0, 0xf2, 0xa5, 0x50, 0xc6, 0x07, 0xe4, 0x45, 0xc2, 0x57, 0xc2, - 0x09, 0x8d, 0x6c, 0xe5, 0xac, 0xb7, 0xfd, 0x41, 0x6b, 0x63, 0x7f, 0x6c, 0xac, 0x48, 0x86, 0x34, - 0xb7, 0xa8, 0x2d, 0xf2, 0x4c, 0x20, 0xf0, 0x22, 0xc9, 0xc0, 0x8b, 0x84, 0xe7, 0x56, 0x99, 0x26, - 0x39, 0x3c, 0x96, 0x56, 0xda, 0x5a, 0xf2, 0x9d, 0x6a, 0xa6, 0x67, 0x6f, 0x24, 0xee, 0xde, 0xd7, - 0x07, 0xfa, 0xd3, 0x78, 0xa8, 0x51, 0xa6, 0xb8, 0xce, 0xb4, 0xf2, 0xa9, 0x0f, 0xa9, 0x16, 0x21, - 0xd5, 0x80, 0x28, 0x24, 0xe0, 0x80, 0x8c, 0xc9, 0xa4, 0xb3, 0x38, 0xd1, 0x28, 0x1f, 0x6b, 0xc3, - 0x53, 0x98, 0x8b, 0x30, 0x6f, 0xb7, 0xfd, 0x59, 0x7c, 0xe4, 0x40, 0x2a, 0xf4, 0xe0, 0xd2, 0x17, - 0x80, 0xc1, 0xc1, 0xf8, 0x70, 0xd2, 0xbb, 0x3c, 0x65, 0x0d, 0x13, 0xdb, 0x31, 0xb1, 0x96, 0x89, - 0xdd, 0x5a, 0x65, 0x66, 0x9d, 0xcd, 0xf7, 0x28, 0x5a, 0xf4, 0xf6, 0xa1, 0x3b, 0x80, 0x69, 0xe7, - 0xe3, 0x73, 0x14, 0xcd, 0x1e, 0x36, 0x25, 0x25, 0xdb, 0x92, 0x92, 0x9f, 0x92, 0x92, 0xf7, 0x8a, - 0x46, 0xdb, 0x8a, 0x46, 0x5f, 0x15, 0x8d, 0x9e, 0x6f, 0xa4, 0xf2, 0xcb, 0x75, 0xc6, 0x72, 0xab, - 0x79, 0xdb, 0xc2, 0x85, 0x75, 0x72, 0xaf, 0x79, 0x71, 0xcd, 0xc3, 0xbf, 0xf6, 0xfc, 0xeb, 0x0a, - 0x30, 0xeb, 0xd6, 0xaf, 0x5e, 0xfd, 0x06, 0x00, 0x00, 0xff, 0xff, 0x40, 0x55, 0x79, 0xd9, 0x63, - 0x01, 0x00, 0x00, +var fileDescriptor_8dc15da27d779deb = []byte{ + // 296 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xb1, 0x4e, 0x32, 0x41, + 0x14, 0x85, 0x77, 0xff, 0x9f, 0x50, 0x2c, 0x56, 0xc4, 0x10, 0xa4, 0x18, 0x88, 0x36, 0x34, 0xcc, + 0x64, 0xb5, 0xa3, 0xc4, 0xc4, 0x0e, 0x43, 0x90, 0xca, 0x66, 0x33, 0xbb, 0xb9, 0x0e, 0x93, 0x30, + 0x7b, 0xc9, 0xdc, 0x81, 0x8c, 0x2f, 0x61, 0x2c, 0x2d, 0x7d, 0x1c, 0x4a, 0x4a, 0x2b, 0x63, 0xe0, + 0x45, 0xcc, 0xce, 0x62, 0xa1, 0xdd, 0xc9, 0xcc, 0x39, 0x37, 0xe7, 0x7c, 0xc9, 0x55, 0x89, 0xab, + 0x0d, 0x09, 0x5d, 0x3a, 0xb0, 0xc5, 0x52, 0xea, 0xd2, 0x79, 0x12, 0xdb, 0x54, 0xac, 0xa5, 0x95, + 0x86, 0xf8, 0xda, 0xa2, 0xc3, 0x76, 0x27, 0x98, 0xf8, 0x2f, 0x13, 0xdf, 0xa6, 0x3d, 0x56, 0x20, + 0x19, 0x24, 0x91, 0x4b, 0x02, 0xb1, 0x4d, 0x73, 0x70, 0x32, 0x15, 0x05, 0xea, 0xb2, 0xce, 0xf5, + 0xce, 0x15, 0x2a, 0x0c, 0x52, 0x54, 0xaa, 0x7e, 0xbd, 0x7c, 0x89, 0x93, 0xe6, 0x2c, 0x9c, 0x6f, + 0x8f, 0x93, 0x9e, 0x21, 0x95, 0xd1, 0x26, 0x37, 0xda, 0x65, 0xce, 0x67, 0x46, 0xfa, 0xcc, 0x00, + 0x91, 0x54, 0x40, 0xdd, 0x78, 0x10, 0x0f, 0x1b, 0xf3, 0x8e, 0x21, 0xf5, 0x10, 0x0c, 0x0b, 0x3f, + 0x95, 0x7e, 0x7a, 0xfa, 0x6d, 0x4f, 0x92, 0x33, 0x0b, 0x4a, 0x93, 0x03, 0x9b, 0x3d, 0x01, 0x74, + 0xff, 0x0d, 0xfe, 0x0f, 0x5b, 0xd7, 0x17, 0xbc, 0xee, 0xc4, 0xab, 0x4e, 0xfc, 0xd4, 0x89, 0xdf, + 0xa2, 0x2e, 0x27, 0x8d, 0xdd, 0x67, 0x3f, 0x9a, 0xb7, 0x7e, 0x42, 0x77, 0x00, 0xe3, 0xc6, 0xdb, + 0x7b, 0x3f, 0x9a, 0x2c, 0x76, 0x07, 0x16, 0xef, 0x0f, 0x2c, 0xfe, 0x3a, 0xb0, 0xf8, 0xf5, 0xc8, + 0xa2, 0xfd, 0x91, 0x45, 0x1f, 0x47, 0x16, 0x3d, 0x8e, 0x95, 0x76, 0xcb, 0x4d, 0xce, 0x0b, 0x34, + 0xe2, 0xbe, 0x62, 0x30, 0x9a, 0x55, 0x13, 0x0a, 0x5c, 0x89, 0x80, 0x64, 0x54, 0xa0, 0x05, 0xe1, + 0xff, 0xe0, 0x73, 0xcf, 0x6b, 0xa0, 0xbc, 0x19, 0xd6, 0xde, 0x7c, 0x07, 0x00, 0x00, 0xff, 0xff, + 0xd9, 0x6a, 0x0b, 0xe8, 0x62, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/query.pb.go b/x/interchaintxs/types/query.pb.go index 1518bda6..4e72375c 100644 --- a/x/interchaintxs/types/query.pb.go +++ b/x/interchaintxs/types/query.pb.go @@ -1,15 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchaintxs/v1/query.proto +// source: nolus/interchaintxs/v1/query.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -18,6 +14,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -39,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6130c5f6c54e2428, []int{0} + return fileDescriptor_ede337abbc56aa4f, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6130c5f6c54e2428, []int{1} + return fileDescriptor_ede337abbc56aa4f, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +120,7 @@ type QueryInterchainAccountAddressRequest struct { // interchain_account_id is an identifier of your interchain account from // which you want to execute msgs InterchainAccountId string `protobuf:"bytes,2,opt,name=interchain_account_id,json=interchainAccountId,proto3" json:"interchain_account_id,omitempty"` - // connection_id is an IBC connection identifier between Neutron and remote + // connection_id is an IBC connection identifier between nolus and remote // chain ConnectionId string `protobuf:"bytes,3,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"` } @@ -130,7 +129,7 @@ func (m *QueryInterchainAccountAddressRequest) Reset() { *m = QueryInter func (m *QueryInterchainAccountAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryInterchainAccountAddressRequest) ProtoMessage() {} func (*QueryInterchainAccountAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6130c5f6c54e2428, []int{2} + return fileDescriptor_ede337abbc56aa4f, []int{2} } func (m *QueryInterchainAccountAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -169,7 +168,7 @@ func (m *QueryInterchainAccountAddressResponse) Reset() { *m = QueryInte func (m *QueryInterchainAccountAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryInterchainAccountAddressResponse) ProtoMessage() {} func (*QueryInterchainAccountAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6130c5f6c54e2428, []int{3} + return fileDescriptor_ede337abbc56aa4f, []int{3} } func (m *QueryInterchainAccountAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -206,49 +205,49 @@ func (m *QueryInterchainAccountAddressResponse) GetInterchainAccountAddress() st } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "neutron.interchaintxs.v1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "neutron.interchaintxs.v1.QueryParamsResponse") - proto.RegisterType((*QueryInterchainAccountAddressRequest)(nil), "neutron.interchaintxs.v1.QueryInterchainAccountAddressRequest") - proto.RegisterType((*QueryInterchainAccountAddressResponse)(nil), "neutron.interchaintxs.v1.QueryInterchainAccountAddressResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "nolus.interchaintxs.v1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "nolus.interchaintxs.v1.QueryParamsResponse") + proto.RegisterType((*QueryInterchainAccountAddressRequest)(nil), "nolus.interchaintxs.v1.QueryInterchainAccountAddressRequest") + proto.RegisterType((*QueryInterchainAccountAddressResponse)(nil), "nolus.interchaintxs.v1.QueryInterchainAccountAddressResponse") } func init() { - proto.RegisterFile("neutron/interchaintxs/v1/query.proto", fileDescriptor_6130c5f6c54e2428) -} - -var fileDescriptor_6130c5f6c54e2428 = []byte{ - // 483 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xcf, 0x6a, 0x13, 0x41, - 0x18, 0xdf, 0x4d, 0x35, 0xe8, 0xa8, 0x97, 0x69, 0x85, 0x65, 0xd1, 0x4d, 0x59, 0x1b, 0x10, 0xb1, - 0x3b, 0x24, 0x0a, 0x82, 0x48, 0xa5, 0xbd, 0xe5, 0x66, 0x03, 0x5e, 0xbc, 0x84, 0xc9, 0xee, 0xb0, - 0x1d, 0x34, 0xf3, 0x6d, 0x76, 0x66, 0x63, 0x4b, 0xc8, 0xc5, 0x93, 0x07, 0x11, 0xc1, 0x17, 0xe8, - 0xcd, 0x9b, 0xcf, 0xd1, 0x63, 0xc1, 0x8b, 0x27, 0x91, 0xc4, 0x83, 0x8f, 0x21, 0x3b, 0x33, 0x6d, - 0xd9, 0x9a, 0x25, 0xe2, 0x6d, 0xf8, 0xf6, 0xf7, 0xef, 0xfb, 0xb3, 0x68, 0x4b, 0xb0, 0x42, 0xe5, - 0x20, 0x08, 0x17, 0x8a, 0xe5, 0xf1, 0x01, 0xe5, 0x42, 0x1d, 0x4a, 0x32, 0xe9, 0x90, 0x71, 0xc1, - 0xf2, 0xa3, 0x28, 0xcb, 0x41, 0x01, 0xf6, 0x2c, 0x2a, 0xaa, 0xa0, 0xa2, 0x49, 0xc7, 0x7f, 0x10, - 0x83, 0x1c, 0x81, 0x24, 0x43, 0x2a, 0x99, 0xa1, 0x90, 0x49, 0x67, 0xc8, 0x14, 0xed, 0x90, 0x8c, - 0xa6, 0x5c, 0x50, 0xc5, 0x41, 0x18, 0x15, 0x7f, 0x23, 0x85, 0x14, 0xf4, 0x93, 0x94, 0x2f, 0x5b, - 0xbd, 0x93, 0x02, 0xa4, 0x6f, 0x18, 0xa1, 0x19, 0x27, 0x54, 0x08, 0x50, 0x9a, 0x22, 0xed, 0xd7, - 0x76, 0x6d, 0xbe, 0x8c, 0xe6, 0x74, 0x64, 0x61, 0xe1, 0x06, 0xc2, 0xfb, 0xa5, 0xf9, 0x0b, 0x5d, - 0xec, 0xb3, 0x71, 0xc1, 0xa4, 0x0a, 0x5f, 0xa2, 0xf5, 0x4a, 0x55, 0x66, 0x20, 0x24, 0xc3, 0x3b, - 0xa8, 0x69, 0xc8, 0x9e, 0xbb, 0xe9, 0xde, 0xbf, 0xd1, 0xdd, 0x8c, 0xea, 0xda, 0x8b, 0x0c, 0x73, - 0xef, 0xca, 0xc9, 0x8f, 0x96, 0xd3, 0xb7, 0xac, 0xf0, 0xab, 0x8b, 0xb6, 0xb4, 0x6e, 0xef, 0x1c, - 0xbe, 0x1b, 0xc7, 0x50, 0x08, 0xb5, 0x9b, 0x24, 0x39, 0x93, 0x67, 0xfe, 0xf8, 0x1e, 0xba, 0x05, - 0x6f, 0x05, 0xcb, 0x07, 0xd4, 0xd4, 0xb5, 0xdf, 0xf5, 0xfe, 0x4d, 0x5d, 0xb4, 0x58, 0xdc, 0x45, - 0xb7, 0x2f, 0x6c, 0x07, 0xd4, 0x08, 0x0d, 0x78, 0xe2, 0x35, 0x34, 0x78, 0x9d, 0x5f, 0x36, 0xe9, - 0x25, 0xa5, 0x70, 0x0c, 0x42, 0xb0, 0xb8, 0x1c, 0x55, 0x89, 0x5d, 0x33, 0xc2, 0x17, 0xc5, 0x5e, - 0xf2, 0xf4, 0xda, 0xfb, 0xe3, 0x96, 0xf3, 0xfb, 0xb8, 0xe5, 0x84, 0x0c, 0xb5, 0x57, 0xe4, 0xb5, - 0x93, 0x79, 0x86, 0xfc, 0x25, 0x59, 0xaa, 0xe9, 0x3d, 0x5e, 0xa3, 0xd2, 0xfd, 0xb2, 0x86, 0xae, - 0x6a, 0x1f, 0xfc, 0xc1, 0x45, 0x4d, 0x33, 0x3a, 0xfc, 0xb0, 0x7e, 0xb8, 0x7f, 0x6f, 0xcc, 0xdf, - 0xfe, 0x47, 0xb4, 0xc9, 0x1b, 0xb6, 0xdf, 0x7d, 0xfb, 0xf5, 0xb9, 0xd1, 0xc2, 0x77, 0xc9, 0xf2, - 0x33, 0x31, 0x0b, 0xc3, 0x1f, 0x1b, 0xc8, 0xab, 0xeb, 0x1d, 0xef, 0xac, 0xb0, 0x5c, 0xb1, 0x64, - 0xff, 0xf9, 0x7f, 0xf3, 0x6d, 0x13, 0x63, 0xdd, 0xc4, 0x6b, 0xcc, 0x6b, 0x9a, 0x98, 0x56, 0x6e, - 0x68, 0x46, 0xa6, 0x4b, 0xcf, 0x65, 0x46, 0xa6, 0x95, 0x93, 0x98, 0x91, 0xfa, 0x4d, 0xee, 0xed, - 0x9f, 0xcc, 0x03, 0xf7, 0x74, 0x1e, 0xb8, 0x3f, 0xe7, 0x81, 0xfb, 0x69, 0x11, 0x38, 0xa7, 0x8b, - 0xc0, 0xf9, 0xbe, 0x08, 0x9c, 0x57, 0x4f, 0x52, 0xae, 0x0e, 0x8a, 0x61, 0x14, 0xc3, 0xe8, 0x2c, - 0xce, 0x36, 0xe4, 0xe9, 0x79, 0xb4, 0xc9, 0x63, 0x72, 0x78, 0x29, 0x9f, 0x3a, 0xca, 0x98, 0x1c, - 0x36, 0xf5, 0x8f, 0xf8, 0xe8, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x16, 0x40, 0xec, 0x47, 0x51, - 0x04, 0x00, 0x00, + proto.RegisterFile("nolus/interchaintxs/v1/query.proto", fileDescriptor_ede337abbc56aa4f) +} + +var fileDescriptor_ede337abbc56aa4f = []byte{ + // 485 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0x3f, 0x6f, 0xd3, 0x40, + 0x14, 0xb7, 0x53, 0x88, 0xe0, 0x80, 0xe5, 0x5a, 0x50, 0x64, 0xc0, 0x41, 0x0e, 0x48, 0xa8, 0xa8, + 0x3e, 0x25, 0x6c, 0x55, 0x19, 0xda, 0x2d, 0x0b, 0x2a, 0x81, 0x89, 0x25, 0xba, 0x9c, 0x4f, 0xee, + 0x49, 0xc9, 0x3d, 0xd7, 0x77, 0x0e, 0xad, 0xa2, 0x2c, 0x0c, 0xa8, 0x23, 0x12, 0x23, 0x4b, 0x3f, + 0x01, 0x9f, 0xa3, 0x63, 0x25, 0x16, 0x26, 0x84, 0x12, 0x06, 0x3e, 0x06, 0xf2, 0x9d, 0x69, 0xe5, + 0x62, 0x53, 0xd4, 0xed, 0xf4, 0xee, 0xf7, 0xef, 0xde, 0x7b, 0x87, 0x02, 0x09, 0xe3, 0x4c, 0x11, + 0x21, 0x35, 0x4f, 0xd9, 0x1e, 0x15, 0x52, 0x1f, 0x28, 0x32, 0xed, 0x92, 0xfd, 0x8c, 0xa7, 0x87, + 0x61, 0x92, 0x82, 0x06, 0x7c, 0xcf, 0x60, 0xc2, 0x12, 0x26, 0x9c, 0x76, 0xbd, 0x75, 0x06, 0x6a, + 0x02, 0x8a, 0x8c, 0xa8, 0xe2, 0x96, 0x40, 0xa6, 0xdd, 0x11, 0xd7, 0xb4, 0x4b, 0x12, 0x1a, 0x0b, + 0x49, 0xb5, 0x00, 0x69, 0x35, 0xbc, 0xb5, 0x18, 0x62, 0x30, 0x47, 0x92, 0x9f, 0x8a, 0xea, 0x83, + 0x18, 0x20, 0x1e, 0x73, 0x42, 0x13, 0x41, 0xa8, 0x94, 0xa0, 0x0d, 0x45, 0x15, 0xb7, 0x9d, 0x9a, + 0x6c, 0x09, 0x4d, 0xe9, 0xa4, 0x00, 0x05, 0x6b, 0x08, 0xbf, 0xca, 0xad, 0x77, 0x4d, 0x71, 0xc0, + 0xf7, 0x33, 0xae, 0x74, 0xf0, 0x1a, 0xad, 0x96, 0xaa, 0x2a, 0x01, 0xa9, 0x38, 0xde, 0x42, 0x4d, + 0x4b, 0x6e, 0xb9, 0x8f, 0xdc, 0xa7, 0xb7, 0x7a, 0x7e, 0x58, 0xfd, 0xb4, 0xd0, 0xf2, 0x76, 0xae, + 0x9d, 0x7c, 0x6f, 0x3b, 0x83, 0x82, 0x13, 0x7c, 0x71, 0xd1, 0x63, 0xa3, 0xda, 0x3f, 0x83, 0x6f, + 0x33, 0x06, 0x99, 0xd4, 0xdb, 0x51, 0x94, 0x72, 0xf5, 0xc7, 0x1d, 0x77, 0xd0, 0x1d, 0x78, 0x27, + 0x79, 0x3a, 0xa4, 0xb6, 0x6e, 0xdc, 0x6e, 0x0e, 0x6e, 0x9b, 0x62, 0x81, 0xc5, 0x3d, 0x74, 0xf7, + 0xdc, 0x76, 0x48, 0xad, 0xd0, 0x50, 0x44, 0xad, 0x86, 0x01, 0xaf, 0x8a, 0x8b, 0x26, 0xfd, 0x28, + 0x17, 0x66, 0x20, 0x25, 0x67, 0x79, 0x9b, 0x72, 0xec, 0x8a, 0x15, 0x3e, 0x2f, 0xf6, 0xa3, 0xcd, + 0x1b, 0x47, 0xc7, 0x6d, 0xe7, 0xd7, 0x71, 0xdb, 0x09, 0x38, 0x7a, 0x72, 0x49, 0xde, 0xb3, 0xbe, + 0x78, 0x15, 0x59, 0xca, 0xe9, 0x5b, 0xa2, 0x46, 0xa5, 0xf7, 0x79, 0x05, 0x5d, 0x37, 0x3e, 0xf8, + 0x83, 0x8b, 0x9a, 0xb6, 0x75, 0x78, 0xbd, 0xae, 0xb5, 0x7f, 0x4f, 0xcb, 0x7b, 0xf6, 0x5f, 0x58, + 0x9b, 0x35, 0xe8, 0xbc, 0xff, 0xfa, 0xf3, 0x53, 0xe3, 0x21, 0xbe, 0x4f, 0xaa, 0xd6, 0xc3, 0x8e, + 0x0a, 0x1f, 0x35, 0x50, 0xab, 0xee, 0xd5, 0x78, 0xeb, 0x9f, 0x76, 0x97, 0x0c, 0xd7, 0x7b, 0x71, + 0x45, 0x76, 0x11, 0x1f, 0x4c, 0x7c, 0x81, 0xe3, 0xca, 0xf8, 0xb3, 0xd2, 0xde, 0xcc, 0xc9, 0xac, + 0x72, 0x45, 0xe6, 0x64, 0x56, 0x5a, 0x83, 0x39, 0xa9, 0x9f, 0xde, 0xce, 0x9b, 0x93, 0x85, 0xef, + 0x9e, 0x2e, 0x7c, 0xf7, 0xc7, 0xc2, 0x77, 0x3f, 0x2e, 0x7d, 0xe7, 0x74, 0xe9, 0x3b, 0xdf, 0x96, + 0xbe, 0xf3, 0x76, 0x33, 0x16, 0x7a, 0x2f, 0x1b, 0x85, 0x0c, 0x26, 0xe4, 0x65, 0x1e, 0x66, 0x63, + 0x37, 0xff, 0x52, 0x0c, 0xc6, 0x36, 0xdb, 0x06, 0x83, 0x94, 0x93, 0x83, 0x0b, 0x11, 0xf5, 0x61, + 0xc2, 0xd5, 0xa8, 0x69, 0x7e, 0xdf, 0xf3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa8, 0x82, 0x11, + 0x56, 0x40, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -278,7 +277,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.interchaintxs.v1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchaintxs.v1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -287,7 +286,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) InterchainAccountAddress(ctx context.Context, in *QueryInterchainAccountAddressRequest, opts ...grpc.CallOption) (*QueryInterchainAccountAddressResponse, error) { out := new(QueryInterchainAccountAddressResponse) - err := c.cc.Invoke(ctx, "/neutron.interchaintxs.v1.Query/InterchainAccountAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchaintxs.v1.Query/InterchainAccountAddress", in, out, opts...) if err != nil { return nil, err } @@ -326,7 +325,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchaintxs.v1.Query/Params", + FullMethod: "/nolus.interchaintxs.v1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -344,7 +343,7 @@ func _Query_InterchainAccountAddress_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchaintxs.v1.Query/InterchainAccountAddress", + FullMethod: "/nolus.interchaintxs.v1.Query/InterchainAccountAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).InterchainAccountAddress(ctx, req.(*QueryInterchainAccountAddressRequest)) @@ -353,7 +352,7 @@ func _Query_InterchainAccountAddress_Handler(srv interface{}, ctx context.Contex } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.interchaintxs.v1.Query", + ServiceName: "nolus.interchaintxs.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -366,7 +365,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/interchaintxs/v1/query.proto", + Metadata: "nolus/interchaintxs/v1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/query.pb.gw.go b/x/interchaintxs/types/query.pb.gw.go index 943b58aa..b46d0738 100644 --- a/x/interchaintxs/types/query.pb.gw.go +++ b/x/interchaintxs/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: neutron/interchaintxs/v1/query.proto +// source: nolus/interchaintxs/v1/query.proto /* Package types is a reverse proxy. @@ -286,9 +286,9 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"neutron", "interchaintxs", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"nolus", "interchaintxs", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_InterchainAccountAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"neutron", "interchaintxs", "owner_address", "interchain_account_id", "connection_id", "interchain_account_address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_InterchainAccountAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"nolus", "interchaintxs", "owner_address", "interchain_account_id", "connection_id", "interchain_account_address"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/interchaintxs/types/tx.pb.go b/x/interchaintxs/types/tx.pb.go index b16ea116..3951acbf 100644 --- a/x/interchaintxs/types/tx.pb.go +++ b/x/interchaintxs/types/tx.pb.go @@ -1,15 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/interchaintxs/v1/tx.proto +// source: nolus/interchaintxs/v1/tx.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - + types2 "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" _ "github.com/cosmos/cosmos-proto" types1 "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" @@ -23,8 +20,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - - types2 "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -50,7 +48,7 @@ func (m *MsgRegisterInterchainAccount) Reset() { *m = MsgRegisterInterch func (m *MsgRegisterInterchainAccount) String() string { return proto.CompactTextString(m) } func (*MsgRegisterInterchainAccount) ProtoMessage() {} func (*MsgRegisterInterchainAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{0} + return fileDescriptor_10280c4a82898eed, []int{0} } func (m *MsgRegisterInterchainAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -90,7 +88,7 @@ func (m *MsgRegisterInterchainAccountResponse) Reset() { *m = MsgRegiste func (m *MsgRegisterInterchainAccountResponse) String() string { return proto.CompactTextString(m) } func (*MsgRegisterInterchainAccountResponse) ProtoMessage() {} func (*MsgRegisterInterchainAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{1} + return fileDescriptor_10280c4a82898eed, []int{1} } func (m *MsgRegisterInterchainAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -139,7 +137,7 @@ func (m *MsgSubmitTx) Reset() { *m = MsgSubmitTx{} } func (m *MsgSubmitTx) String() string { return proto.CompactTextString(m) } func (*MsgSubmitTx) ProtoMessage() {} func (*MsgSubmitTx) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{2} + return fileDescriptor_10280c4a82898eed, []int{2} } func (m *MsgSubmitTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -172,7 +170,7 @@ var xxx_messageInfo_MsgSubmitTx proto.InternalMessageInfo type MsgSubmitTxResponse struct { // channel's sequence_id for outgoing ibc packet. Unique per a channel. SequenceId uint64 `protobuf:"varint,1,opt,name=sequence_id,json=sequenceId,proto3" json:"sequence_id,omitempty"` - // channel src channel on neutron side transaction was submitted from + // channel src channel on nolus side transaction was submitted from Channel string `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"` } @@ -180,7 +178,7 @@ func (m *MsgSubmitTxResponse) Reset() { *m = MsgSubmitTxResponse{} } func (m *MsgSubmitTxResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitTxResponse) ProtoMessage() {} func (*MsgSubmitTxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{3} + return fileDescriptor_10280c4a82898eed, []int{3} } func (m *MsgSubmitTxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -239,7 +237,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{4} + return fileDescriptor_10280c4a82898eed, []int{4} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -293,7 +291,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_50f087790e59c806, []int{5} + return fileDescriptor_10280c4a82898eed, []int{5} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -323,71 +321,71 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgRegisterInterchainAccount)(nil), "neutron.interchaintxs.v1.MsgRegisterInterchainAccount") - proto.RegisterType((*MsgRegisterInterchainAccountResponse)(nil), "neutron.interchaintxs.v1.MsgRegisterInterchainAccountResponse") - proto.RegisterType((*MsgSubmitTx)(nil), "neutron.interchaintxs.v1.MsgSubmitTx") - proto.RegisterType((*MsgSubmitTxResponse)(nil), "neutron.interchaintxs.v1.MsgSubmitTxResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "neutron.interchaintxs.v1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "neutron.interchaintxs.v1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("neutron/interchaintxs/v1/tx.proto", fileDescriptor_50f087790e59c806) } - -var fileDescriptor_50f087790e59c806 = []byte{ - // 839 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xbf, 0x6f, 0xfb, 0x44, - 0x14, 0x8f, 0x93, 0x7c, 0x53, 0x72, 0x09, 0x42, 0xb8, 0xa9, 0xea, 0x44, 0x6d, 0x92, 0x1a, 0x2a, - 0x85, 0x4a, 0xb1, 0x9b, 0x80, 0x8a, 0x14, 0x09, 0xa4, 0xa6, 0x52, 0xa5, 0x0c, 0x91, 0x8a, 0x5b, - 0x16, 0x96, 0xe8, 0x62, 0x5f, 0x1c, 0x8b, 0xf8, 0xce, 0xf8, 0xce, 0x51, 0xb2, 0x21, 0x26, 0xc4, - 0xc4, 0xc2, 0xde, 0x11, 0x31, 0xa0, 0x0e, 0xfc, 0x01, 0x8c, 0x1d, 0x2b, 0x26, 0xa6, 0x02, 0xed, - 0x50, 0xe6, 0x0e, 0xcc, 0xe8, 0xec, 0x73, 0x7e, 0xa9, 0x89, 0xaa, 0xef, 0x92, 0xdc, 0x7b, 0xef, - 0x73, 0xef, 0xbd, 0xfb, 0x7c, 0xee, 0x9d, 0xc1, 0x01, 0x46, 0x01, 0xf3, 0x09, 0xd6, 0x1d, 0xcc, - 0x90, 0x6f, 0x0e, 0xa1, 0x83, 0xd9, 0x84, 0xea, 0xe3, 0x86, 0xce, 0x26, 0x9a, 0xe7, 0x13, 0x46, - 0x64, 0x45, 0x40, 0xb4, 0x25, 0x88, 0x36, 0x6e, 0x94, 0xde, 0x87, 0xae, 0x83, 0x89, 0x1e, 0xfe, - 0x46, 0xe0, 0x52, 0xd9, 0x24, 0xd4, 0x25, 0x54, 0xef, 0x43, 0x8a, 0xf4, 0x71, 0xa3, 0x8f, 0x18, - 0x6c, 0xe8, 0x26, 0x71, 0xb0, 0x88, 0xef, 0x8a, 0xb8, 0x4b, 0x6d, 0x5e, 0xc4, 0xa5, 0xb6, 0x08, - 0x14, 0xa3, 0x40, 0x2f, 0xb4, 0xf4, 0xc8, 0x10, 0xa1, 0x82, 0x4d, 0x6c, 0x12, 0xf9, 0xf9, 0x4a, - 0x78, 0xf7, 0x6c, 0x42, 0xec, 0x11, 0xd2, 0xa1, 0xe7, 0xe8, 0x10, 0x63, 0xc2, 0x20, 0x73, 0x08, - 0x8e, 0xf7, 0xec, 0x2c, 0x44, 0x87, 0x8c, 0x79, 0x71, 0x15, 0xe1, 0x0e, 0xad, 0x7e, 0x30, 0xd0, - 0x21, 0x9e, 0x8a, 0xd0, 0x7e, 0xcc, 0xc4, 0x00, 0x21, 0x1f, 0x0d, 0x02, 0x6c, 0x21, 0x9f, 0xaf, - 0x45, 0xf8, 0x70, 0x2d, 0x51, 0x1e, 0xf4, 0xa1, 0x2b, 0xea, 0xaa, 0xff, 0x24, 0xc1, 0x5e, 0x97, - 0xda, 0x06, 0xb2, 0x1d, 0xca, 0x90, 0xdf, 0x99, 0x81, 0x4f, 0x4d, 0x93, 0x04, 0x98, 0xc9, 0x07, - 0x20, 0x3f, 0xf0, 0x89, 0xdb, 0x83, 0x96, 0xe5, 0x23, 0x4a, 0x15, 0xa9, 0x2a, 0xd5, 0xb2, 0x46, - 0x8e, 0xfb, 0x4e, 0x23, 0x97, 0xfc, 0x19, 0x78, 0xd7, 0x24, 0x18, 0x23, 0x93, 0x1f, 0xa8, 0xe7, - 0x58, 0x4a, 0x92, 0x63, 0xda, 0xca, 0xf3, 0x7d, 0xa5, 0x30, 0x85, 0xee, 0xa8, 0xa5, 0x2e, 0x85, - 0x55, 0x23, 0x3f, 0xb7, 0x3b, 0x96, 0x7c, 0x05, 0x76, 0xe6, 0x3d, 0xf6, 0x60, 0x54, 0x97, 0xa7, - 0x49, 0x85, 0x69, 0xaa, 0xcf, 0xf7, 0x95, 0xbd, 0x28, 0xcd, 0x8b, 0x30, 0xd5, 0xd8, 0x76, 0x56, - 0xbb, 0xee, 0x58, 0x32, 0x06, 0x79, 0x5f, 0x1c, 0xaa, 0x37, 0x40, 0x48, 0x49, 0x57, 0x53, 0xb5, - 0x5c, 0xb3, 0xa8, 0x09, 0xa5, 0xb8, 0xde, 0x9a, 0xd0, 0x5b, 0x3b, 0x23, 0x0e, 0x6e, 0x1f, 0xdf, - 0xde, 0x57, 0x12, 0xbf, 0xfc, 0x55, 0xa9, 0xd9, 0x0e, 0x1b, 0x06, 0x7d, 0xcd, 0x24, 0xae, 0x90, - 0x55, 0xfc, 0xd5, 0xa9, 0xf5, 0xb5, 0xce, 0xa6, 0x1e, 0xa2, 0xe1, 0x06, 0x6a, 0xe4, 0xe2, 0x02, - 0xe7, 0x08, 0xb5, 0x8a, 0xdf, 0x5f, 0x57, 0x12, 0xff, 0x5e, 0x57, 0x12, 0xdf, 0x3d, 0xdd, 0x1c, - 0x2d, 0x51, 0xa6, 0x5a, 0xe0, 0xc3, 0x4d, 0x14, 0x1b, 0x88, 0x7a, 0x04, 0x53, 0x24, 0xef, 0x03, - 0x60, 0x0e, 0x21, 0xc6, 0x68, 0xc4, 0x4f, 0x1f, 0x11, 0x9d, 0x15, 0x9e, 0x8e, 0x25, 0xef, 0x82, - 0x2d, 0x8f, 0xf8, 0x6c, 0x46, 0xb0, 0x91, 0xe1, 0x66, 0xc7, 0x6a, 0xa5, 0x79, 0x69, 0xf5, 0xd7, - 0x24, 0xc8, 0x75, 0xa9, 0x7d, 0x19, 0xf4, 0x5d, 0x87, 0x5d, 0x4d, 0x5e, 0x23, 0x5c, 0x73, 0x1d, - 0xf3, 0x51, 0xfe, 0x17, 0x79, 0xfd, 0x60, 0x55, 0xec, 0x50, 0xa5, 0x15, 0x49, 0x6b, 0x20, 0xed, - 0x52, 0x9b, 0x0a, 0xd2, 0x0b, 0x5a, 0x74, 0x8b, 0xb5, 0xf8, 0x16, 0x6b, 0xa7, 0x78, 0x6a, 0x84, - 0x08, 0x59, 0x06, 0x69, 0x17, 0xb9, 0x44, 0x79, 0x13, 0x66, 0x09, 0xd7, 0xb2, 0x02, 0xb6, 0x98, - 0xe3, 0x22, 0x12, 0x30, 0x25, 0x53, 0x95, 0x6a, 0x69, 0x23, 0x36, 0xe5, 0x63, 0x90, 0xe2, 0x5a, - 0x6e, 0x55, 0xa5, 0x5a, 0xae, 0xa9, 0x68, 0xf1, 0xa0, 0x2f, 0x4c, 0x80, 0x76, 0x8e, 0x50, 0x3b, - 0xcd, 0xa5, 0x34, 0x38, 0x74, 0x93, 0x2c, 0x17, 0x60, 0x7b, 0x81, 0xaf, 0x99, 0x0a, 0x15, 0x90, - 0xa3, 0xe8, 0x9b, 0x00, 0x61, 0x13, 0xc5, 0x32, 0xa4, 0x0d, 0x10, 0xbb, 0x3a, 0x16, 0x6f, 0x4f, - 0x88, 0x22, 0x78, 0x8a, 0x4d, 0xf5, 0x77, 0x09, 0xbc, 0xd7, 0xa5, 0xf6, 0x97, 0x9e, 0x05, 0x19, - 0xba, 0x08, 0xc7, 0x4c, 0x3e, 0x01, 0x59, 0x18, 0xb0, 0x21, 0xf1, 0x1d, 0x36, 0x8d, 0x34, 0x68, - 0x2b, 0x7f, 0xfc, 0x56, 0x2f, 0x88, 0x7b, 0x28, 0xa4, 0xb8, 0x64, 0xbe, 0x83, 0x6d, 0x63, 0x0e, - 0x95, 0xcf, 0x40, 0x26, 0x1a, 0xd4, 0xb0, 0x48, 0xae, 0x59, 0xd5, 0xd6, 0x3d, 0x6b, 0x5a, 0x54, - 0xa9, 0x9d, 0xe5, 0xa7, 0xfe, 0xf9, 0xe9, 0xe6, 0x48, 0x32, 0xc4, 0xd6, 0xd6, 0x31, 0x3f, 0xf5, - 0x3c, 0xe9, 0x0f, 0x4f, 0x37, 0x47, 0xfb, 0xcb, 0xef, 0xc1, 0x4a, 0xbb, 0x6a, 0x11, 0xec, 0xae, - 0xb8, 0x62, 0x62, 0x9a, 0xff, 0x25, 0x41, 0xaa, 0x4b, 0x6d, 0xf9, 0x27, 0x09, 0x14, 0xd7, 0xbf, - 0x17, 0x27, 0xeb, 0xfb, 0xdc, 0x34, 0x04, 0xa5, 0xcf, 0xdf, 0x6e, 0x5f, 0xdc, 0x9d, 0x9a, 0x90, - 0xfb, 0xe0, 0x9d, 0xd9, 0xe5, 0x3f, 0xdc, 0x98, 0x2d, 0x86, 0x95, 0xea, 0xaf, 0x82, 0x2d, 0xd4, - 0x18, 0x81, 0xfc, 0x92, 0xba, 0x1f, 0x6d, 0x4c, 0xb0, 0x08, 0x2d, 0x35, 0x5e, 0x0d, 0x8d, 0xeb, - 0x95, 0xde, 0x7c, 0xcb, 0xd5, 0x6c, 0x7f, 0x71, 0xfb, 0x50, 0x96, 0xee, 0x1e, 0xca, 0xd2, 0xdf, - 0x0f, 0x65, 0xe9, 0xc7, 0xc7, 0x72, 0xe2, 0xee, 0xb1, 0x9c, 0xf8, 0xf3, 0xb1, 0x9c, 0xf8, 0xea, - 0xd3, 0x85, 0xb7, 0x4a, 0x64, 0xaf, 0x13, 0xdf, 0x8e, 0xd7, 0xfa, 0xf8, 0x13, 0x7d, 0xb2, 0xf2, - 0x01, 0x08, 0x1f, 0xb0, 0x7e, 0x26, 0x1c, 0xc5, 0x8f, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xd9, - 0x95, 0xf0, 0x9e, 0x4f, 0x07, 0x00, 0x00, + proto.RegisterType((*MsgRegisterInterchainAccount)(nil), "nolus.interchaintxs.v1.MsgRegisterInterchainAccount") + proto.RegisterType((*MsgRegisterInterchainAccountResponse)(nil), "nolus.interchaintxs.v1.MsgRegisterInterchainAccountResponse") + proto.RegisterType((*MsgSubmitTx)(nil), "nolus.interchaintxs.v1.MsgSubmitTx") + proto.RegisterType((*MsgSubmitTxResponse)(nil), "nolus.interchaintxs.v1.MsgSubmitTxResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "nolus.interchaintxs.v1.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "nolus.interchaintxs.v1.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("nolus/interchaintxs/v1/tx.proto", fileDescriptor_10280c4a82898eed) } + +var fileDescriptor_10280c4a82898eed = []byte{ + // 845 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x6f, 0xe3, 0x44, + 0x14, 0x8e, 0x93, 0x6c, 0x4a, 0x26, 0x41, 0x08, 0x6f, 0x76, 0xeb, 0x84, 0xae, 0x1d, 0x5c, 0x24, + 0xa2, 0xa2, 0xd8, 0x9b, 0x80, 0x38, 0x44, 0x70, 0x48, 0x90, 0x56, 0xca, 0x21, 0xa8, 0x72, 0xcb, + 0x85, 0x03, 0xd1, 0xc4, 0x9e, 0x38, 0x16, 0xf1, 0x8c, 0xf1, 0x8c, 0xab, 0xe4, 0x86, 0x38, 0x21, + 0x4e, 0xf0, 0x1f, 0xf4, 0x88, 0x10, 0x87, 0x1e, 0x38, 0x73, 0xee, 0xb1, 0xe2, 0xc4, 0xa9, 0x40, + 0x7b, 0x28, 0xe2, 0xd8, 0xbf, 0x00, 0x8d, 0x3d, 0xce, 0x2f, 0x35, 0x51, 0xb5, 0x97, 0xc4, 0xef, + 0xbd, 0x6f, 0xde, 0x7b, 0xf3, 0x7d, 0x6f, 0x1e, 0xd0, 0x30, 0x99, 0x46, 0xd4, 0xf4, 0x30, 0x43, + 0xa1, 0x3d, 0x81, 0x1e, 0x66, 0x33, 0x6a, 0x9e, 0xb5, 0x4c, 0x36, 0x33, 0x82, 0x90, 0x30, 0x22, + 0x3f, 0x8f, 0x01, 0xc6, 0x1a, 0xc0, 0x38, 0x6b, 0xd5, 0xde, 0x86, 0xbe, 0x87, 0x89, 0x19, 0xff, + 0x26, 0xd0, 0x9a, 0x6a, 0x13, 0xea, 0x13, 0x6a, 0x8e, 0x20, 0x45, 0xe6, 0x59, 0x6b, 0x84, 0x18, + 0x6c, 0x99, 0x36, 0xf1, 0xb0, 0x88, 0xef, 0x8b, 0xb8, 0x4f, 0x5d, 0x5e, 0xc2, 0xa7, 0xae, 0x08, + 0x54, 0x93, 0xc0, 0x30, 0xb6, 0xcc, 0xc4, 0x10, 0xa1, 0x8a, 0x4b, 0x5c, 0x92, 0xf8, 0xf9, 0x97, + 0xf0, 0x1e, 0xb8, 0x84, 0xb8, 0x53, 0x64, 0xc2, 0xc0, 0x33, 0x21, 0xc6, 0x84, 0x41, 0xe6, 0x11, + 0x9c, 0x9e, 0x79, 0xb6, 0x12, 0x9d, 0x30, 0x16, 0xa4, 0x55, 0x84, 0x3b, 0xb6, 0x46, 0xd1, 0xd8, + 0x84, 0x78, 0x2e, 0x42, 0xef, 0x24, 0x2c, 0x8c, 0x11, 0x0a, 0xd1, 0x38, 0xc2, 0x0e, 0x0a, 0xf9, + 0xb7, 0x08, 0x1e, 0x6e, 0xa1, 0x28, 0x80, 0x21, 0xf4, 0x45, 0x4d, 0xfd, 0x9f, 0x2c, 0x38, 0x18, + 0x50, 0xd7, 0x42, 0xae, 0x47, 0x19, 0x0a, 0xfb, 0x0b, 0x70, 0xd7, 0xb6, 0x49, 0x84, 0x99, 0xfc, + 0x2e, 0x28, 0x8f, 0x43, 0xe2, 0x0f, 0xa1, 0xe3, 0x84, 0x88, 0x52, 0x45, 0xaa, 0x4b, 0x8d, 0xa2, + 0x55, 0xe2, 0xbe, 0x6e, 0xe2, 0x92, 0x3f, 0x05, 0x6f, 0xda, 0x04, 0x63, 0x64, 0xf3, 0xcb, 0x0c, + 0x3d, 0x47, 0xc9, 0x72, 0x4c, 0x4f, 0xb9, 0xbf, 0xd6, 0x2a, 0x73, 0xe8, 0x4f, 0x3b, 0xfa, 0x5a, + 0x58, 0xb7, 0xca, 0x4b, 0xbb, 0xef, 0xc8, 0xa7, 0xe0, 0xd9, 0xb2, 0xc7, 0x21, 0x4c, 0xea, 0xf2, + 0x34, 0xb9, 0x38, 0x4d, 0xfd, 0xfe, 0x5a, 0x3b, 0x48, 0xd2, 0x3c, 0x08, 0xd3, 0xad, 0xa7, 0xde, + 0x66, 0xd7, 0x7d, 0x47, 0xc6, 0xa0, 0x1c, 0x8a, 0x4b, 0x0d, 0xc7, 0x08, 0x29, 0xf9, 0x7a, 0xae, + 0x51, 0x6a, 0x57, 0x0d, 0xa1, 0x12, 0xd7, 0xda, 0x10, 0x5a, 0x1b, 0x9f, 0x11, 0x0f, 0xf7, 0x5e, + 0x5e, 0x5e, 0x6b, 0x99, 0x5f, 0xfe, 0xd2, 0x1a, 0xae, 0xc7, 0x26, 0xd1, 0xc8, 0xb0, 0x89, 0x2f, + 0x24, 0x15, 0x7f, 0x4d, 0xea, 0x7c, 0x6d, 0xb2, 0x79, 0x80, 0x68, 0x7c, 0x80, 0x5a, 0xa5, 0xb4, + 0xc0, 0x2b, 0x84, 0x3a, 0xd5, 0xef, 0xcf, 0xb5, 0xcc, 0xbf, 0xe7, 0x5a, 0xe6, 0xbb, 0xbb, 0x8b, + 0xa3, 0x35, 0xca, 0x74, 0x07, 0xbc, 0xb7, 0x8b, 0x62, 0x0b, 0xd1, 0x80, 0x60, 0x8a, 0xe4, 0x17, + 0x00, 0xd8, 0x13, 0x88, 0x31, 0x9a, 0xf2, 0xdb, 0x27, 0x44, 0x17, 0x85, 0xa7, 0xef, 0xc8, 0xfb, + 0x60, 0x2f, 0x20, 0x21, 0x5b, 0x10, 0x6c, 0x15, 0xb8, 0xd9, 0x77, 0x3a, 0x79, 0x5e, 0x5a, 0xff, + 0x35, 0x0b, 0x4a, 0x03, 0xea, 0x9e, 0x44, 0x23, 0xdf, 0x63, 0xa7, 0xb3, 0xc7, 0x08, 0xd7, 0xde, + 0xc6, 0x7c, 0x92, 0xff, 0x41, 0x5e, 0x0f, 0x37, 0xc5, 0x8e, 0x55, 0xda, 0x90, 0xb4, 0x01, 0xf2, + 0x3e, 0x75, 0xa9, 0x20, 0xbd, 0x62, 0x24, 0x13, 0x6c, 0xa4, 0x13, 0x6c, 0x74, 0xf1, 0xdc, 0x8a, + 0x11, 0xb2, 0x0c, 0xf2, 0x3e, 0xf2, 0x89, 0xf2, 0x24, 0xce, 0x12, 0x7f, 0xcb, 0x0a, 0xd8, 0x63, + 0x9e, 0x8f, 0x48, 0xc4, 0x94, 0x42, 0x5d, 0x6a, 0xe4, 0xad, 0xd4, 0x94, 0x0d, 0x90, 0xe3, 0x5a, + 0xee, 0xd5, 0xa5, 0x46, 0xa9, 0xfd, 0xdc, 0x48, 0x9e, 0xf8, 0xca, 0xf4, 0x1b, 0xaf, 0x10, 0xea, + 0xe5, 0xb9, 0x90, 0x16, 0x07, 0xee, 0x12, 0xe5, 0x18, 0x3c, 0x5d, 0x61, 0x6b, 0xa1, 0x81, 0x06, + 0x4a, 0x14, 0x7d, 0x13, 0x21, 0x6c, 0xa3, 0x54, 0x84, 0xbc, 0x05, 0x52, 0x57, 0xdf, 0xe1, 0xcd, + 0x09, 0x49, 0x04, 0x4b, 0xa9, 0xa9, 0xff, 0x2e, 0x81, 0xb7, 0x06, 0xd4, 0xfd, 0x22, 0x70, 0x20, + 0x43, 0xc7, 0xf1, 0x23, 0x93, 0x3f, 0x06, 0x45, 0x18, 0xb1, 0x09, 0x09, 0x3d, 0x36, 0x4f, 0x14, + 0xe8, 0x29, 0x7f, 0xfc, 0xd6, 0xac, 0x88, 0x29, 0x14, 0x42, 0x9c, 0xb0, 0xd0, 0xc3, 0xae, 0xb5, + 0x84, 0xca, 0x5d, 0x50, 0x48, 0x9e, 0x69, 0x5c, 0xa4, 0xd4, 0x56, 0x8d, 0x87, 0xd7, 0x99, 0x91, + 0xd4, 0xe9, 0x15, 0xf9, 0x9d, 0x7f, 0xbe, 0xbb, 0x38, 0x92, 0x2c, 0x71, 0xb0, 0xf3, 0x92, 0xdf, + 0x79, 0x99, 0xf2, 0x87, 0xbb, 0x8b, 0xa3, 0x17, 0xeb, 0xbb, 0x60, 0xa3, 0x59, 0xbd, 0x0a, 0xf6, + 0x37, 0x5c, 0x29, 0x2d, 0xed, 0xff, 0xb2, 0x20, 0x37, 0xa0, 0xae, 0xfc, 0x93, 0x04, 0xaa, 0xdb, + 0x77, 0xc5, 0x47, 0xdb, 0xba, 0xdc, 0x35, 0xfe, 0xb5, 0x4f, 0x5e, 0xe7, 0x54, 0xda, 0x99, 0x9e, + 0x91, 0xbf, 0x02, 0x6f, 0x2c, 0x86, 0xfe, 0x70, 0x47, 0xae, 0x14, 0x54, 0xfb, 0xe0, 0x11, 0xa0, + 0x95, 0xfc, 0x13, 0x50, 0x5e, 0xd3, 0xf4, 0xfd, 0x1d, 0xc7, 0x57, 0x81, 0x35, 0xf3, 0x91, 0xc0, + 0xb4, 0x56, 0xed, 0xc9, 0xb7, 0x5c, 0xc1, 0xde, 0xe9, 0xe5, 0x8d, 0x2a, 0x5d, 0xdd, 0xa8, 0xd2, + 0xdf, 0x37, 0xaa, 0xf4, 0xe3, 0xad, 0x9a, 0xb9, 0xba, 0x55, 0x33, 0x7f, 0xde, 0xaa, 0x99, 0x2f, + 0x3b, 0x2b, 0xbb, 0xe9, 0x73, 0x9e, 0xbb, 0x79, 0xcc, 0x9f, 0x94, 0x4d, 0xa6, 0x66, 0x5c, 0xaa, + 0x69, 0x93, 0x10, 0x99, 0xb3, 0x8d, 0x9d, 0x1f, 0xef, 0xac, 0x51, 0x21, 0x7e, 0x7d, 0x1f, 0xfe, + 0x1f, 0x00, 0x00, 0xff, 0xff, 0x5d, 0xeb, 0x96, 0xd7, 0x3a, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -417,7 +415,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) RegisterInterchainAccount(ctx context.Context, in *MsgRegisterInterchainAccount, opts ...grpc.CallOption) (*MsgRegisterInterchainAccountResponse, error) { out := new(MsgRegisterInterchainAccountResponse) - err := c.cc.Invoke(ctx, "/neutron.interchaintxs.v1.Msg/RegisterInterchainAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchaintxs.v1.Msg/RegisterInterchainAccount", in, out, opts...) if err != nil { return nil, err } @@ -426,7 +424,7 @@ func (c *msgClient) RegisterInterchainAccount(ctx context.Context, in *MsgRegist func (c *msgClient) SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc.CallOption) (*MsgSubmitTxResponse, error) { out := new(MsgSubmitTxResponse) - err := c.cc.Invoke(ctx, "/neutron.interchaintxs.v1.Msg/SubmitTx", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchaintxs.v1.Msg/SubmitTx", in, out, opts...) if err != nil { return nil, err } @@ -435,7 +433,7 @@ func (c *msgClient) SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc. func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.interchaintxs.v1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.interchaintxs.v1.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -477,7 +475,7 @@ func _Msg_RegisterInterchainAccount_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchaintxs.v1.Msg/RegisterInterchainAccount", + FullMethod: "/nolus.interchaintxs.v1.Msg/RegisterInterchainAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RegisterInterchainAccount(ctx, req.(*MsgRegisterInterchainAccount)) @@ -495,7 +493,7 @@ func _Msg_SubmitTx_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchaintxs.v1.Msg/SubmitTx", + FullMethod: "/nolus.interchaintxs.v1.Msg/SubmitTx", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitTx(ctx, req.(*MsgSubmitTx)) @@ -513,7 +511,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.interchaintxs.v1.Msg/UpdateParams", + FullMethod: "/nolus.interchaintxs.v1.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -522,7 +520,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.interchaintxs.v1.Msg", + ServiceName: "nolus.interchaintxs.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -539,7 +537,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/interchaintxs/v1/tx.proto", + Metadata: "nolus/interchaintxs/v1/tx.proto", } func (m *MsgRegisterInterchainAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/transfer/types/query.pb.go b/x/transfer/types/query.pb.go index 49957658..16aa429d 100644 --- a/x/transfer/types/query.pb.go +++ b/x/transfer/types/query.pb.go @@ -1,13 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/transfer/v1/query.proto +// source: nolus/transfer/v1/query.proto package types import ( context "context" fmt "fmt" - math "math" - grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" types "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" @@ -15,6 +13,7 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -28,33 +27,34 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -func init() { proto.RegisterFile("neutron/transfer/v1/query.proto", fileDescriptor_560cfedb574fdf6b) } - -var fileDescriptor_560cfedb574fdf6b = []byte{ - // 368 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x3f, 0x4b, 0x03, 0x31, - 0x18, 0xc6, 0x7b, 0x42, 0x0b, 0xc6, 0x45, 0x32, 0x96, 0x12, 0xa1, 0x74, 0xd0, 0xaa, 0x89, 0xd7, - 0x56, 0x3f, 0x80, 0x38, 0x38, 0x38, 0xa8, 0x38, 0xb9, 0x48, 0xee, 0x8c, 0x77, 0x07, 0x6d, 0x92, - 0x26, 0xb9, 0x62, 0x91, 0x2e, 0x7e, 0x02, 0xa1, 0x5f, 0xc1, 0x41, 0xc4, 0x0f, 0xe2, 0x58, 0x70, - 0x71, 0x94, 0xd6, 0x0f, 0x22, 0x97, 0xbb, 0xb3, 0x0a, 0xfe, 0xe9, 0x6d, 0x49, 0x78, 0x9e, 0xe7, - 0xfd, 0xe5, 0x7d, 0x13, 0xb0, 0xc6, 0x59, 0x6c, 0x94, 0xe0, 0xc4, 0x28, 0xca, 0xf5, 0x15, 0x53, - 0x64, 0xe0, 0x92, 0x7e, 0xcc, 0xd4, 0x10, 0x4b, 0x25, 0x8c, 0x80, 0xab, 0x99, 0x00, 0xe7, 0x82, - 0x6a, 0x2d, 0x10, 0x22, 0xe8, 0x32, 0x42, 0x65, 0x44, 0x28, 0xe7, 0xc2, 0x50, 0x13, 0x09, 0xae, - 0x53, 0x7d, 0x75, 0x3d, 0xf2, 0x7c, 0x42, 0xa5, 0xec, 0x46, 0x7e, 0x7a, 0xfe, 0x5b, 0x72, 0xeb, - 0xbe, 0x0c, 0xca, 0x27, 0xc9, 0x1e, 0x3e, 0x39, 0x00, 0x1c, 0x30, 0x2e, 0x7a, 0x67, 0x8a, 0xfa, - 0x0c, 0x76, 0x70, 0xe4, 0xf9, 0xf8, 0x6b, 0xc6, 0x67, 0x71, 0x3c, 0x70, 0xb1, 0xf5, 0xcc, 0xe5, - 0xa7, 0xac, 0x1f, 0x33, 0x6d, 0xaa, 0xbb, 0x05, 0x5d, 0x5a, 0x0a, 0xae, 0x59, 0xdd, 0xbd, 0x7d, - 0x79, 0x1f, 0x2f, 0x6d, 0xc2, 0x0d, 0x92, 0x81, 0x7f, 0x07, 0xbe, 0x4c, 0x1c, 0x17, 0x26, 0xb1, - 0x68, 0x72, 0x13, 0x52, 0x1d, 0x8e, 0xe0, 0x83, 0x03, 0x56, 0xe6, 0x49, 0x1a, 0x16, 0xab, 0xac, - 0x73, 0xe0, 0xbd, 0xa2, 0xb6, 0x8c, 0xb8, 0x69, 0x89, 0x1b, 0xb0, 0xfe, 0x3f, 0x31, 0x1c, 0x3b, - 0xa0, 0x72, 0x4c, 0x15, 0xed, 0x69, 0xb8, 0xb3, 0x40, 0xb9, 0x54, 0x9a, 0x03, 0xba, 0x05, 0x1c, - 0x19, 0x5b, 0xc3, 0xb2, 0x21, 0x58, 0xfb, 0x99, 0x4d, 0xa6, 0x28, 0x8f, 0x0e, 0x58, 0xb6, 0x37, - 0x3b, 0xa4, 0x3a, 0x84, 0xed, 0x45, 0xfb, 0x90, 0xa8, 0x73, 0xb6, 0x4e, 0x31, 0x53, 0x86, 0xd7, - 0xb2, 0x78, 0x5b, 0xb0, 0xf9, 0x57, 0xeb, 0x92, 0x21, 0x27, 0xc3, 0xb6, 0x2d, 0x1c, 0xed, 0x1f, - 0x3d, 0x4f, 0x91, 0x33, 0x99, 0x22, 0xe7, 0x6d, 0x8a, 0x9c, 0xbb, 0x19, 0x2a, 0x4d, 0x66, 0xa8, - 0xf4, 0x3a, 0x43, 0xa5, 0xf3, 0x56, 0x10, 0x99, 0x30, 0xf6, 0xb0, 0x2f, 0x7a, 0x24, 0xfb, 0x25, - 0xdb, 0x42, 0x05, 0xf9, 0x9a, 0x0c, 0x3a, 0xe4, 0x7a, 0x9e, 0x6f, 0x86, 0x92, 0x69, 0xaf, 0x62, - 0xdf, 0x7e, 0xfb, 0x23, 0x00, 0x00, 0xff, 0xff, 0xf4, 0x46, 0x5b, 0xdc, 0x78, 0x03, 0x00, 0x00, +func init() { proto.RegisterFile("nolus/transfer/v1/query.proto", fileDescriptor_2e0cb6fb2f98ef40) } + +var fileDescriptor_2e0cb6fb2f98ef40 = []byte{ + // 375 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xbd, 0x4e, 0xc3, 0x30, + 0x14, 0x85, 0x1b, 0xa4, 0x56, 0x22, 0x48, 0x0c, 0x1e, 0xab, 0x92, 0xa1, 0xea, 0x00, 0x85, 0xc6, + 0xa4, 0x3f, 0x3c, 0x00, 0x62, 0x60, 0x82, 0x82, 0x98, 0x58, 0x90, 0x63, 0x4c, 0x13, 0x29, 0xb5, + 0x5d, 0xdb, 0xa9, 0xa8, 0x50, 0x17, 0x9e, 0x00, 0xa9, 0xaf, 0xc0, 0x80, 0x10, 0x0f, 0xc2, 0x58, + 0x89, 0x85, 0x11, 0xb5, 0x3c, 0x08, 0xb2, 0x93, 0x50, 0x90, 0xf8, 0x69, 0xc6, 0xc4, 0xe7, 0xdc, + 0xf3, 0xf9, 0xfa, 0x5e, 0x7b, 0x83, 0xb2, 0x28, 0x96, 0x50, 0x09, 0x44, 0xe5, 0x15, 0x11, 0x70, + 0xe8, 0xc1, 0x41, 0x4c, 0xc4, 0xc8, 0xe5, 0x82, 0x29, 0x06, 0xd6, 0xcd, 0xb1, 0x9b, 0x1d, 0x97, + 0x2b, 0x3d, 0xc6, 0x7a, 0x11, 0x81, 0x88, 0x87, 0x10, 0x51, 0xca, 0x14, 0x52, 0x21, 0xa3, 0x32, + 0x51, 0x97, 0x37, 0x43, 0x1f, 0x43, 0xc4, 0x79, 0x14, 0xe2, 0xe4, 0xff, 0x6f, 0x75, 0x9b, 0xf7, + 0x45, 0xbb, 0x78, 0xa2, 0xbf, 0xc1, 0x93, 0x65, 0xdb, 0x07, 0x84, 0xb2, 0xfe, 0x99, 0x40, 0x98, + 0x80, 0xb6, 0x1b, 0xfa, 0xd8, 0xfd, 0x5a, 0xe3, 0x33, 0xdc, 0x1d, 0x7a, 0xae, 0xf1, 0x2c, 0xe4, + 0xa7, 0x64, 0x10, 0x13, 0xa9, 0xca, 0x9d, 0x9c, 0x2e, 0xc9, 0x19, 0x95, 0xa4, 0xea, 0xdd, 0xbe, + 0xbc, 0x4f, 0x56, 0xb6, 0xc1, 0x16, 0x4c, 0xc1, 0xbf, 0x03, 0x5f, 0x6a, 0xc7, 0x85, 0xd2, 0x16, + 0x09, 0x6f, 0x02, 0x24, 0x83, 0x31, 0x78, 0xb0, 0xec, 0xb5, 0x45, 0x25, 0x09, 0xf2, 0x25, 0xcb, + 0x0c, 0x78, 0x2f, 0xaf, 0x2d, 0x25, 0xae, 0x1b, 0xe2, 0x1a, 0xa8, 0xfe, 0x4f, 0x0c, 0x26, 0x96, + 0x5d, 0xea, 0x22, 0x81, 0xfa, 0x12, 0xec, 0x2e, 0x11, 0x97, 0x48, 0x33, 0x40, 0x2f, 0x87, 0x23, + 0x65, 0xab, 0x19, 0x36, 0x07, 0x54, 0x7e, 0x66, 0xe3, 0x09, 0xca, 0xa3, 0x65, 0xaf, 0x9a, 0x9b, + 0x1d, 0x22, 0x19, 0x80, 0xd6, 0xb2, 0x7d, 0xd0, 0xea, 0x8c, 0xad, 0x9d, 0xcf, 0x94, 0xe2, 0x35, + 0x0d, 0xde, 0x0e, 0xa8, 0xff, 0xd5, 0x3a, 0xfd, 0xc8, 0xfa, 0xb1, 0x4d, 0x0b, 0xc7, 0xfb, 0xc7, + 0xcf, 0x33, 0xc7, 0x9a, 0xce, 0x1c, 0xeb, 0x6d, 0xe6, 0x58, 0x77, 0x73, 0xa7, 0x30, 0x9d, 0x3b, + 0x85, 0xd7, 0xb9, 0x53, 0x38, 0xef, 0xf4, 0x42, 0x15, 0xc4, 0xbe, 0x8b, 0x59, 0x1f, 0x1e, 0xe9, + 0x1d, 0x69, 0x74, 0xf5, 0x60, 0x63, 0x16, 0x41, 0xb3, 0x32, 0x0d, 0xcc, 0x04, 0x81, 0xd7, 0x8b, + 0x08, 0x35, 0xe2, 0x44, 0xfa, 0x25, 0x33, 0xfe, 0xad, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfa, + 0xb8, 0x07, 0x09, 0x77, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -89,7 +89,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) DenomTrace(ctx context.Context, in *types.QueryDenomTraceRequest, opts ...grpc.CallOption) (*types.QueryDenomTraceResponse, error) { out := new(types.QueryDenomTraceResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Query/DenomTrace", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Query/DenomTrace", in, out, opts...) if err != nil { return nil, err } @@ -98,7 +98,7 @@ func (c *queryClient) DenomTrace(ctx context.Context, in *types.QueryDenomTraceR func (c *queryClient) DenomTraces(ctx context.Context, in *types.QueryDenomTracesRequest, opts ...grpc.CallOption) (*types.QueryDenomTracesResponse, error) { out := new(types.QueryDenomTracesResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Query/DenomTraces", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Query/DenomTraces", in, out, opts...) if err != nil { return nil, err } @@ -107,7 +107,7 @@ func (c *queryClient) DenomTraces(ctx context.Context, in *types.QueryDenomTrace func (c *queryClient) Params(ctx context.Context, in *types.QueryParamsRequest, opts ...grpc.CallOption) (*types.QueryParamsResponse, error) { out := new(types.QueryParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -116,7 +116,7 @@ func (c *queryClient) Params(ctx context.Context, in *types.QueryParamsRequest, func (c *queryClient) DenomHash(ctx context.Context, in *types.QueryDenomHashRequest, opts ...grpc.CallOption) (*types.QueryDenomHashResponse, error) { out := new(types.QueryDenomHashResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Query/DenomHash", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Query/DenomHash", in, out, opts...) if err != nil { return nil, err } @@ -166,7 +166,7 @@ func _Query_DenomTrace_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Query/DenomTrace", + FullMethod: "/nolus.transfer.Query/DenomTrace", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomTrace(ctx, req.(*types.QueryDenomTraceRequest)) @@ -184,7 +184,7 @@ func _Query_DenomTraces_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Query/DenomTraces", + FullMethod: "/nolus.transfer.Query/DenomTraces", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomTraces(ctx, req.(*types.QueryDenomTracesRequest)) @@ -202,7 +202,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Query/Params", + FullMethod: "/nolus.transfer.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*types.QueryParamsRequest)) @@ -220,7 +220,7 @@ func _Query_DenomHash_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Query/DenomHash", + FullMethod: "/nolus.transfer.Query/DenomHash", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomHash(ctx, req.(*types.QueryDenomHashRequest)) @@ -229,7 +229,7 @@ func _Query_DenomHash_Handler(srv interface{}, ctx context.Context, dec func(int } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.transfer.Query", + ServiceName: "nolus.transfer.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -250,5 +250,5 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/transfer/v1/query.proto", + Metadata: "nolus/transfer/v1/query.proto", } diff --git a/x/transfer/types/query.pb.gw.go b/x/transfer/types/query.pb.gw.go index 05f06a00..c58f54c6 100644 --- a/x/transfer/types/query.pb.gw.go +++ b/x/transfer/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: neutron/transfer/v1/query.proto +// source: nolus/transfer/v1/query.proto /* Package types is a reverse proxy. diff --git a/x/transfer/types/tx.pb.go b/x/transfer/types/tx.pb.go index dd49c840..51e1bacf 100644 --- a/x/transfer/types/tx.pb.go +++ b/x/transfer/types/tx.pb.go @@ -1,15 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: neutron/transfer/v1/tx.proto +// source: nolus/transfer/v1/tx.proto package types import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - + types2 "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/gogoproto/gogoproto" @@ -20,8 +17,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - - types2 "github.com/Nolus-Protocol/nolus-core/x/feerefunder/types" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. @@ -60,7 +58,7 @@ func (m *MsgTransfer) Reset() { *m = MsgTransfer{} } func (m *MsgTransfer) String() string { return proto.CompactTextString(m) } func (*MsgTransfer) ProtoMessage() {} func (*MsgTransfer) Descriptor() ([]byte, []int) { - return fileDescriptor_c44193c4a9c18e30, []int{0} + return fileDescriptor_c861438ef31d6c49, []int{0} } func (m *MsgTransfer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +92,7 @@ var xxx_messageInfo_MsgTransfer proto.InternalMessageInfo type MsgTransferResponse struct { // channel's sequence_id for outgoing ibc packet. Unique per a channel. SequenceId uint64 `protobuf:"varint,1,opt,name=sequence_id,json=sequenceId,proto3" json:"sequence_id,omitempty"` - // channel src channel on neutron side transaction was submitted from + // channel src channel on nolus side transaction was submitted from Channel string `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"` } @@ -102,7 +100,7 @@ func (m *MsgTransferResponse) Reset() { *m = MsgTransferResponse{} } func (m *MsgTransferResponse) String() string { return proto.CompactTextString(m) } func (*MsgTransferResponse) ProtoMessage() {} func (*MsgTransferResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c44193c4a9c18e30, []int{1} + return fileDescriptor_c861438ef31d6c49, []int{1} } func (m *MsgTransferResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -159,7 +157,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_c44193c4a9c18e30, []int{2} + return fileDescriptor_c861438ef31d6c49, []int{2} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -197,7 +195,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c44193c4a9c18e30, []int{3} + return fileDescriptor_c861438ef31d6c49, []int{3} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -227,59 +225,59 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgTransfer)(nil), "neutron.transfer.MsgTransfer") - proto.RegisterType((*MsgTransferResponse)(nil), "neutron.transfer.MsgTransferResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "neutron.transfer.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "neutron.transfer.MsgUpdateParamsResponse") + proto.RegisterType((*MsgTransfer)(nil), "nolus.transfer.MsgTransfer") + proto.RegisterType((*MsgTransferResponse)(nil), "nolus.transfer.MsgTransferResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "nolus.transfer.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "nolus.transfer.MsgUpdateParamsResponse") } -func init() { proto.RegisterFile("neutron/transfer/v1/tx.proto", fileDescriptor_c44193c4a9c18e30) } +func init() { proto.RegisterFile("nolus/transfer/v1/tx.proto", fileDescriptor_c861438ef31d6c49) } -var fileDescriptor_c44193c4a9c18e30 = []byte{ +var fileDescriptor_c861438ef31d6c49 = []byte{ // 686 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x4f, 0x6f, 0xd3, 0x4a, - 0x10, 0x8f, 0x5f, 0xd2, 0xb4, 0xdd, 0xbc, 0xfe, 0x79, 0xdb, 0xf7, 0x5a, 0x37, 0x6a, 0xed, 0x3e, - 0x0b, 0xa4, 0x52, 0xc4, 0x9a, 0x04, 0x10, 0x52, 0x4f, 0x28, 0x95, 0x10, 0x95, 0xa8, 0x14, 0x59, - 0xe5, 0x82, 0x90, 0x8a, 0xe3, 0x4c, 0x1c, 0x8b, 0x78, 0xd7, 0xec, 0x6e, 0xa2, 0xf6, 0x82, 0x10, - 0xa7, 0x1e, 0xf9, 0x08, 0xfd, 0x08, 0xfd, 0x00, 0x7c, 0x80, 0x1e, 0x7b, 0xe4, 0x14, 0xa1, 0xf6, - 0x50, 0xce, 0xbd, 0x72, 0x41, 0x5e, 0xaf, 0xd3, 0xa4, 0x42, 0x70, 0xca, 0xcc, 0xfc, 0x7e, 0x33, - 0xe3, 0xf9, 0xcd, 0x6c, 0xd0, 0x1a, 0x85, 0xbe, 0xe4, 0x8c, 0xba, 0x92, 0xfb, 0x54, 0x74, 0x80, - 0xbb, 0x83, 0x9a, 0x2b, 0x0f, 0x49, 0xc2, 0x99, 0x64, 0x78, 0x51, 0xa3, 0x24, 0x47, 0xab, 0x56, - 0xc0, 0x44, 0xcc, 0x84, 0xdb, 0xf2, 0x05, 0xb8, 0x83, 0x5a, 0x0b, 0xa4, 0x5f, 0x73, 0x03, 0x16, - 0xd1, 0x2c, 0xa3, 0xba, 0xa2, 0xf1, 0x58, 0x84, 0x69, 0xa5, 0x58, 0x84, 0x1a, 0xf8, 0x37, 0x64, - 0x21, 0x53, 0xa6, 0x9b, 0x5a, 0x3a, 0x7a, 0x3f, 0x6a, 0x05, 0xae, 0x9f, 0x24, 0xbd, 0x28, 0xf0, - 0x65, 0xc4, 0xa8, 0x98, 0xfc, 0x0e, 0x6d, 0x6b, 0xb2, 0x9d, 0x92, 0x03, 0xc6, 0xc1, 0x0d, 0x7a, - 0x11, 0x50, 0x99, 0x52, 0x32, 0x4b, 0x13, 0xd6, 0xf3, 0x61, 0x3a, 0x00, 0x1c, 0x3a, 0x7d, 0xda, - 0x06, 0x9e, 0xda, 0x19, 0xec, 0xfc, 0x28, 0xa2, 0xca, 0x9e, 0x08, 0xf7, 0x75, 0x55, 0xfc, 0x14, - 0x55, 0x04, 0xeb, 0xf3, 0x00, 0x0e, 0x12, 0xc6, 0xa5, 0x69, 0x6c, 0x18, 0x9b, 0xb3, 0x8d, 0xe5, - 0xeb, 0xa1, 0x8d, 0x8f, 0xfc, 0xb8, 0xb7, 0xed, 0x8c, 0x81, 0x8e, 0x87, 0x32, 0xaf, 0xc9, 0xb8, - 0xc4, 0xcf, 0xd0, 0xbc, 0xc6, 0x82, 0xae, 0x4f, 0x29, 0xf4, 0xcc, 0xbf, 0x54, 0xee, 0xea, 0xf5, - 0xd0, 0xfe, 0x6f, 0x22, 0x57, 0xe3, 0x8e, 0x37, 0x97, 0x05, 0x76, 0x32, 0x1f, 0x3f, 0x41, 0x53, - 0x92, 0xbd, 0x03, 0x6a, 0x16, 0x37, 0x8c, 0xcd, 0x4a, 0x7d, 0x95, 0x64, 0xb2, 0x91, 0x54, 0x56, - 0xa2, 0x65, 0x25, 0x3b, 0x2c, 0xa2, 0x8d, 0xd2, 0xd9, 0xd0, 0x2e, 0x78, 0x19, 0x1b, 0x2f, 0xa3, - 0xb2, 0x80, 0x74, 0x2a, 0xb3, 0x94, 0x36, 0xf4, 0xb4, 0x87, 0xab, 0x68, 0x86, 0x43, 0x00, 0xd1, - 0x00, 0xb8, 0x39, 0xa5, 0x90, 0x91, 0x8f, 0xdf, 0xa2, 0x79, 0x19, 0xc5, 0xc0, 0xfa, 0xf2, 0xa0, - 0x0b, 0x51, 0xd8, 0x95, 0x66, 0x59, 0xf5, 0xac, 0x92, 0xa8, 0x15, 0x90, 0x54, 0x4e, 0xa2, 0x45, - 0x1c, 0xd4, 0xc8, 0x0b, 0xc5, 0x68, 0xac, 0xa7, 0x4d, 0x6f, 0x86, 0x99, 0xcc, 0x77, 0xbc, 0x39, - 0x1d, 0xc8, 0xd8, 0x78, 0x17, 0xfd, 0x93, 0x33, 0xd2, 0x5f, 0x21, 0xfd, 0x38, 0x31, 0xa7, 0x37, - 0x8c, 0xcd, 0x52, 0x63, 0xed, 0x7a, 0x68, 0x9b, 0x93, 0x45, 0x46, 0x14, 0xc7, 0x5b, 0xd4, 0xb1, - 0xfd, 0x3c, 0x84, 0x31, 0x2a, 0xc5, 0x10, 0x33, 0x73, 0x46, 0x0d, 0xa1, 0x6c, 0xfc, 0x10, 0x15, - 0x3b, 0x00, 0xe6, 0xac, 0xfa, 0x6a, 0x93, 0xe4, 0x27, 0x39, 0xb6, 0x63, 0xf2, 0x1c, 0x40, 0x0b, - 0x95, 0x52, 0xb7, 0x97, 0x8e, 0x4f, 0xec, 0xc2, 0xf7, 0x13, 0xbb, 0xf0, 0xe9, 0xea, 0x74, 0x4b, - 0x6b, 0xe4, 0x34, 0xd1, 0xd2, 0xd8, 0xf2, 0x3d, 0x10, 0x09, 0xa3, 0x02, 0xb0, 0x8d, 0x2a, 0x02, - 0xde, 0xf7, 0x81, 0x06, 0x70, 0x10, 0xb5, 0xd5, 0x11, 0x94, 0x3c, 0x94, 0x87, 0x76, 0xdb, 0xd8, - 0x44, 0xd3, 0x13, 0x5b, 0xf6, 0x72, 0xd7, 0xf9, 0x80, 0x16, 0xf6, 0x44, 0xf8, 0x2a, 0x69, 0xfb, - 0x12, 0x9a, 0x3e, 0xf7, 0x63, 0xa1, 0x16, 0x14, 0x85, 0x14, 0x78, 0x76, 0x4d, 0x9e, 0xf6, 0x70, - 0x03, 0x95, 0x13, 0xc5, 0x50, 0x35, 0x2a, 0xf5, 0x3b, 0x4a, 0xfc, 0xf1, 0xc3, 0x1f, 0x3d, 0xb1, - 0x74, 0x0d, 0x59, 0x35, 0x3d, 0x92, 0xce, 0xdc, 0x5e, 0x38, 0x1e, 0x4d, 0xa4, 0x8a, 0x3a, 0xab, - 0x68, 0xe5, 0x56, 0xff, 0x7c, 0xaa, 0xfa, 0x17, 0x03, 0x15, 0xf7, 0x44, 0x88, 0x9b, 0x68, 0x66, - 0x74, 0xee, 0xeb, 0xe4, 0xf6, 0x6b, 0x26, 0x63, 0x82, 0x54, 0xef, 0xfe, 0x16, 0x1e, 0xe9, 0xf5, - 0x06, 0xfd, 0x3d, 0x31, 0xf1, 0xff, 0xbf, 0x4c, 0x1b, 0xa7, 0x54, 0xef, 0xfd, 0x91, 0x92, 0x57, - 0xaf, 0x4e, 0x7d, 0xbc, 0x3a, 0xdd, 0x32, 0x1a, 0x2f, 0xcf, 0x2e, 0x2c, 0xe3, 0xfc, 0xc2, 0x32, - 0xbe, 0x5d, 0x58, 0xc6, 0xe7, 0x4b, 0xab, 0x70, 0x7e, 0x69, 0x15, 0xbe, 0x5e, 0x5a, 0x85, 0xd7, - 0xf5, 0x30, 0x92, 0xdd, 0x7e, 0x8b, 0x04, 0x2c, 0x76, 0x75, 0xd5, 0x07, 0x8c, 0x87, 0xb9, 0xed, - 0x0e, 0x1e, 0xbb, 0x87, 0x37, 0xff, 0x21, 0xf2, 0x28, 0x01, 0xd1, 0x2a, 0xab, 0xe7, 0xff, 0xe8, - 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x33, 0x1a, 0x12, 0x42, 0xec, 0x04, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0xcf, 0x4f, 0x13, 0x5f, + 0x10, 0xef, 0x7e, 0x5b, 0x0a, 0xbc, 0x7e, 0x01, 0x7d, 0x28, 0x2c, 0x8b, 0x76, 0xc9, 0x6a, 0x22, + 0xc1, 0xf0, 0x36, 0xc5, 0x10, 0x13, 0x4e, 0xa6, 0x24, 0x46, 0x12, 0xd1, 0x66, 0x83, 0x89, 0xf1, + 0x82, 0xdb, 0xed, 0x74, 0xbb, 0xb1, 0xbb, 0x6f, 0xdd, 0xf7, 0xda, 0xc0, 0xc5, 0x18, 0x4f, 0x1c, + 0xfd, 0x13, 0xf8, 0x13, 0x38, 0xf8, 0x47, 0x70, 0xe4, 0xe8, 0xa9, 0x31, 0x70, 0xc0, 0x33, 0x37, + 0x6f, 0xe6, 0xfd, 0xd8, 0xd2, 0x12, 0xa3, 0xa7, 0xce, 0xcc, 0xe7, 0x33, 0x33, 0x9d, 0xcf, 0xcc, + 0x5b, 0x64, 0x25, 0xb4, 0xdb, 0x63, 0x2e, 0xcf, 0xfc, 0x84, 0xb5, 0x21, 0x73, 0xfb, 0x35, 0x97, + 0x1f, 0x90, 0x34, 0xa3, 0x9c, 0xe2, 0x59, 0x89, 0x91, 0x1c, 0xb3, 0xaa, 0x01, 0x65, 0x31, 0x65, + 0x6e, 0xd3, 0x67, 0xe0, 0xf6, 0x6b, 0x4d, 0xe0, 0x7e, 0xcd, 0x0d, 0x68, 0x94, 0x28, 0xbe, 0xb5, + 0xa8, 0xf1, 0x98, 0x85, 0xa2, 0x4e, 0xcc, 0x42, 0x0d, 0xdc, 0x09, 0x69, 0x48, 0xa5, 0xe9, 0x0a, + 0x4b, 0x47, 0x1f, 0x47, 0xcd, 0xc0, 0xf5, 0xd3, 0xb4, 0x1b, 0x05, 0x3e, 0x8f, 0x68, 0x72, 0xe3, + 0x5f, 0x68, 0x5b, 0x93, 0x6d, 0x41, 0x0e, 0x68, 0x06, 0x6e, 0xd0, 0x8d, 0x20, 0xe1, 0x82, 0xa2, + 0x2c, 0x4d, 0x58, 0x56, 0x83, 0xb4, 0x01, 0x32, 0x68, 0xf7, 0x92, 0x16, 0x64, 0xc2, 0x56, 0xa0, + 0xf3, 0xab, 0x88, 0x2a, 0xbb, 0x2c, 0xdc, 0xd3, 0x35, 0xf1, 0x53, 0x54, 0x61, 0xb4, 0x97, 0x05, + 0xb0, 0x9f, 0xd2, 0x8c, 0x9b, 0xc6, 0x8a, 0xb1, 0x3a, 0x5d, 0x5f, 0xb8, 0x1a, 0xd8, 0xf8, 0xd0, + 0x8f, 0xbb, 0x5b, 0xce, 0x08, 0xe8, 0x78, 0x48, 0x79, 0x0d, 0x9a, 0x71, 0xfc, 0x0c, 0xcd, 0x6a, + 0x2c, 0xe8, 0xf8, 0x49, 0x02, 0x5d, 0xf3, 0x3f, 0x99, 0xbb, 0x74, 0x35, 0xb0, 0xef, 0x8e, 0xe5, + 0x6a, 0xdc, 0xf1, 0x66, 0x54, 0x60, 0x5b, 0xf9, 0x78, 0x13, 0x4d, 0x70, 0xfa, 0x01, 0x12, 0xb3, + 0xb8, 0x62, 0xac, 0x56, 0x36, 0x96, 0x88, 0x12, 0x8d, 0x08, 0x51, 0x89, 0x16, 0x95, 0x6c, 0xd3, + 0x28, 0xa9, 0x97, 0x4e, 0x07, 0x76, 0xc1, 0x53, 0x6c, 0xbc, 0x80, 0xca, 0x0c, 0xc4, 0x54, 0x66, + 0x49, 0x34, 0xf4, 0xb4, 0x87, 0x2d, 0x34, 0x95, 0x41, 0x00, 0x51, 0x1f, 0x32, 0x73, 0x42, 0x22, + 0x43, 0x1f, 0xbf, 0x47, 0xb3, 0x3c, 0x8a, 0x81, 0xf6, 0xf8, 0x7e, 0x07, 0xa2, 0xb0, 0xc3, 0xcd, + 0xb2, 0xec, 0x69, 0x91, 0xa8, 0x19, 0x10, 0x21, 0x26, 0xd1, 0x12, 0xf6, 0x6b, 0xe4, 0x85, 0x64, + 0xd4, 0xef, 0x8b, 0xa6, 0xd7, 0xc3, 0x8c, 0xe7, 0x3b, 0xde, 0x8c, 0x0e, 0x28, 0x36, 0xde, 0x41, + 0xb7, 0x73, 0x86, 0xf8, 0x65, 0xdc, 0x8f, 0x53, 0x73, 0x72, 0xc5, 0x58, 0x2d, 0xd5, 0xef, 0x5d, + 0x0d, 0x6c, 0x73, 0xbc, 0xc8, 0x90, 0xe2, 0x78, 0xb7, 0x74, 0x6c, 0x2f, 0x0f, 0x61, 0x8c, 0x4a, + 0x31, 0xc4, 0xd4, 0x9c, 0x92, 0x43, 0x48, 0x1b, 0x13, 0x54, 0x6c, 0x03, 0x98, 0xd3, 0xf2, 0x5f, + 0x2f, 0x10, 0x75, 0x8e, 0x23, 0x1b, 0x26, 0xcf, 0x01, 0xb4, 0x4c, 0x82, 0xb8, 0x35, 0x7f, 0x74, + 0x6c, 0x17, 0x7e, 0x1e, 0xdb, 0x85, 0x2f, 0x97, 0x27, 0x6b, 0x5a, 0x21, 0xa7, 0x81, 0xe6, 0x47, + 0x56, 0xef, 0x01, 0x4b, 0x69, 0xc2, 0x00, 0xdb, 0xa8, 0xc2, 0xe0, 0x63, 0x0f, 0x92, 0x00, 0xf6, + 0xa3, 0x96, 0x3c, 0x81, 0x92, 0x87, 0xf2, 0xd0, 0x4e, 0x0b, 0x9b, 0x68, 0x72, 0x6c, 0xc7, 0x5e, + 0xee, 0x3a, 0x9f, 0xd0, 0xdc, 0x2e, 0x0b, 0xdf, 0xa4, 0x2d, 0x9f, 0x43, 0xc3, 0xcf, 0xfc, 0x98, + 0xc9, 0xf5, 0x44, 0x61, 0x02, 0x99, 0xba, 0x25, 0x4f, 0x7b, 0xb8, 0x8e, 0xca, 0xa9, 0x64, 0xc8, + 0x1a, 0x95, 0x8d, 0x87, 0x52, 0xfa, 0xd1, 0xa3, 0x1f, 0x3e, 0x2f, 0xb1, 0x04, 0x55, 0x4d, 0x8f, + 0xa4, 0x33, 0xb7, 0xe6, 0x8e, 0x86, 0x13, 0xc9, 0xa2, 0xce, 0x12, 0x5a, 0xbc, 0xd1, 0x3f, 0x9f, + 0x6a, 0xe3, 0x9b, 0x81, 0x8a, 0xbb, 0x2c, 0xc4, 0x2f, 0xd1, 0xd4, 0xf0, 0xd8, 0x97, 0xc9, 0xf8, + 0x3b, 0x26, 0x23, 0x72, 0x58, 0x0f, 0xfe, 0x02, 0x0e, 0xb5, 0x7a, 0x8b, 0xfe, 0x1f, 0x9b, 0xd6, + 0xfe, 0x43, 0xd2, 0x28, 0xc1, 0x7a, 0xf4, 0x0f, 0x42, 0x5e, 0xd9, 0x9a, 0xf8, 0x7c, 0x79, 0xb2, + 0x66, 0xd4, 0x5f, 0x9f, 0x9e, 0x57, 0x8d, 0xb3, 0xf3, 0xaa, 0xf1, 0xe3, 0xbc, 0x6a, 0x7c, 0xbd, + 0xa8, 0x16, 0xce, 0x2e, 0xaa, 0x85, 0xef, 0x17, 0xd5, 0xc2, 0xbb, 0xcd, 0x30, 0xe2, 0x9d, 0x5e, + 0x93, 0x04, 0x34, 0x76, 0x5f, 0x89, 0x9a, 0xeb, 0x0d, 0xf1, 0xa2, 0x03, 0xda, 0x75, 0x65, 0x8b, + 0x75, 0xf9, 0x4d, 0x38, 0xb8, 0xfe, 0x74, 0xf0, 0xc3, 0x14, 0x58, 0xb3, 0x2c, 0xdf, 0xfd, 0x93, + 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x02, 0xba, 0x2c, 0xa4, 0xdf, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -310,7 +308,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Transfer(ctx context.Context, in *MsgTransfer, opts ...grpc.CallOption) (*MsgTransferResponse, error) { out := new(MsgTransferResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Msg/Transfer", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Msg/Transfer", in, out, opts...) if err != nil { return nil, err } @@ -319,7 +317,7 @@ func (c *msgClient) Transfer(ctx context.Context, in *MsgTransfer, opts ...grpc. func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/neutron.transfer.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/nolus.transfer.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -359,7 +357,7 @@ func _Msg_Transfer_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Msg/Transfer", + FullMethod: "/nolus.transfer.Msg/Transfer", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Transfer(ctx, req.(*MsgTransfer)) @@ -377,7 +375,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/neutron.transfer.Msg/UpdateParams", + FullMethod: "/nolus.transfer.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -386,7 +384,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "neutron.transfer.Msg", + ServiceName: "nolus.transfer.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -399,7 +397,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "neutron/transfer/v1/tx.proto", + Metadata: "nolus/transfer/v1/tx.proto", } func (m *MsgTransfer) Marshal() (dAtA []byte, err error) {