diff --git a/Dockerfile b/Dockerfile index 9c529bb..f5dbd25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# docker build . -t cosmoscontracts/bluechip:latest -# docker run --rm -it cosmoscontracts/bluechip:latest /bin/sh +# docker build . -t Smartdev0328 /bluechip:latest +# docker run --rm -it Smartdev0328/bluechip:latest /bin/sh FROM golang:1.18-alpine3.15 AS go-builder # this comes from standard alpine nightly file diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 58f66b7..354c9aa 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -6810,6 +6810,9 @@ paths: description: >- reverse is set to true if results are to be returned in the descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean @@ -7260,6 +7263,9 @@ paths: description: >- reverse is set to true if results are to be returned in the descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean @@ -7276,6 +7282,7 @@ paths: type: object properties: evidence: + description: evidence returns the requested evidence. type: object properties: '@type': @@ -7336,114 +7343,6 @@ paths: used with implementation specific semantics. additionalProperties: {} - description: >- - `Any` contains an arbitrary serialized protocol buffer message - along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in - the form - - of utility functions or additional generated methods of the - Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default - use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the last - '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield - type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom - JSON - - representation, that representation will be embedded adding a - field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } description: >- QueryEvidenceResponse is the response type for the Query/Evidence RPC method. @@ -11624,6 +11523,9 @@ paths: description: >- reverse is set to true if results are to be returned in the descending order. + + + Since: cosmos-sdk 0.43 in: query required: false type: boolean @@ -11640,6 +11542,9 @@ paths: type: object properties: val_signing_info: + title: >- + val_signing_info is the signing info of requested val cons + address type: object properties: address: @@ -11689,9 +11594,6 @@ paths: monitoring their liveness activity. - title: >- - val_signing_info is the signing info of requested val cons - address title: >- QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC @@ -31660,6 +31562,128 @@ paths: format: uint64 tags: - Query + /cosmos/mint/v1beta1/annual_provisions: + get: + summary: AnnualProvisions current minting annual provisions value. + operationId: Smartdev0328BluechipMintAnnualProvisions + responses: + '200': + description: A successful response. + schema: + type: object + properties: + annual_provisions: + type: string + format: byte + description: >- + annual_provisions is the current minting annual provisions + value. + description: |- + QueryAnnualProvisionsResponse is the response type for the + Query/AnnualProvisions RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + '@type': + type: string + additionalProperties: {} + tags: + - Query + /cosmos/mint/v1beta1/inflation: + get: + summary: Inflation returns the current minting inflation value. + operationId: Smartdev0328BluechipMintInflation + responses: + '200': + description: A successful response. + schema: + type: object + properties: + inflation: + type: string + format: byte + description: inflation is the current minting inflation value. + description: >- + QueryInflationResponse is the response type for the + Query/Inflation RPC + + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + '@type': + type: string + additionalProperties: {} + tags: + - Query + /cosmos/mint/v1beta1/params: + get: + summary: Params returns the total set of minting parameters. + operationId: Smartdev0328BluechipMintParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + mint_denom: + type: string + title: type of coin to mint + blocks_per_year: + type: string + format: uint64 + title: expected blocks per year + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + '@type': + type: string + additionalProperties: {} + tags: + - Query /smartdev0328/bluechip/pageinflation/mint_denom: get: summary: Queries a MintDenom by index. @@ -38904,6 +38928,7 @@ definitions: type: object properties: evidence: + description: evidence returns the requested evidence. type: object properties: '@type': @@ -38959,107 +38984,6 @@ definitions: used with implementation specific semantics. additionalProperties: {} - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } description: >- QueryEvidenceResponse is the response type for the Query/Evidence RPC method. @@ -40785,6 +40709,7 @@ definitions: type: object properties: val_signing_info: + title: val_signing_info is the signing info of requested val cons address type: object properties: address: @@ -40831,7 +40756,6 @@ definitions: their liveness activity. - title: val_signing_info is the signing info of requested val cons address title: >- QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC @@ -52261,6 +52185,52 @@ definitions: description: |- Version defines the versioning scheme used to negotiate the IBC verison in the connection handshake. + smartdev0328.bluechip.mint.Params: + type: object + properties: + mint_denom: + type: string + title: type of coin to mint + blocks_per_year: + type: string + format: uint64 + title: expected blocks per year + description: Params holds parameters for the mint module. + smartdev0328.bluechip.mint.QueryAnnualProvisionsResponse: + type: object + properties: + annual_provisions: + type: string + format: byte + description: annual_provisions is the current minting annual provisions value. + description: |- + QueryAnnualProvisionsResponse is the response type for the + Query/AnnualProvisions RPC method. + smartdev0328.bluechip.mint.QueryInflationResponse: + type: object + properties: + inflation: + type: string + format: byte + description: inflation is the current minting inflation value. + description: |- + QueryInflationResponse is the response type for the Query/Inflation RPC + method. + smartdev0328.bluechip.mint.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + mint_denom: + type: string + title: type of coin to mint + blocks_per_year: + type: string + format: uint64 + title: expected blocks per year + description: QueryParamsResponse is the response type for the Query/Params RPC method. smartdev0328.bluechip.pageinflation.MintDenom: type: object properties: diff --git a/go.mod b/go.mod index 6d73bd4..d2dec3e 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/cosmos/cosmos-sdk v0.45.6 github.com/cosmos/ibc-go/v3 v3.0.0 github.com/gogo/protobuf v1.3.3 - github.com/golang/protobuf v1.5.2 + github.com/golang/protobuf v1.5.3 github.com/gorilla/mux v1.8.0 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/ignite-hq/cli v0.22.1 @@ -17,8 +17,8 @@ require ( github.com/stretchr/testify v1.8.0 github.com/tendermint/tendermint v0.34.20 github.com/tendermint/tm-db v0.6.7 - google.golang.org/genproto v0.0.0-20230221151758-ace64dc21148 - google.golang.org/grpc v1.53.0 + google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d + google.golang.org/grpc v1.58.0 gopkg.in/yaml.v2 v2.4.0 ) @@ -77,11 +77,10 @@ require ( github.com/goccy/go-yaml v1.9.4 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/gogo/gateway v1.1.0 // indirect - github.com/golang/glog v1.0.0 // indirect + github.com/golang/glog v1.1.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/btree v1.1.2 // indirect - github.com/google/go-cmp v0.5.9 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/orderedcode v0.0.1 // indirect github.com/gookit/color v1.5.0 // indirect @@ -108,6 +107,7 @@ require ( github.com/jpillora/sizestr v1.0.0 // indirect github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect github.com/klauspost/compress v1.15.9 // indirect + github.com/kr/pretty v0.3.1 // indirect github.com/lib/pq v1.10.6 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect github.com/magiconair/properties v1.8.6 // indirect @@ -161,15 +161,18 @@ require ( github.com/zondax/hid v0.9.0 // indirect go.etcd.io/bbolt v1.3.6 // indirect go.opencensus.io v0.23.0 // indirect - golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect - golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect - golang.org/x/net v0.7.0 // indirect + golang.org/x/crypto v0.13.0 // indirect + golang.org/x/mod v0.8.0 // indirect + golang.org/x/net v0.15.0 // indirect golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect - golang.org/x/sys v0.5.0 // indirect - golang.org/x/term v0.5.0 // indirect - golang.org/x/text v0.7.0 // indirect + golang.org/x/sys v0.12.0 // indirect + golang.org/x/term v0.12.0 // indirect + golang.org/x/text v0.13.0 // indirect golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect - google.golang.org/protobuf v1.28.1 // indirect + google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect + google.golang.org/protobuf v1.31.0 // indirect + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/go.sum b/go.sum index 86caca8..f3bed61 100644 --- a/go.sum +++ b/go.sum @@ -693,8 +693,8 @@ github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2V github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188/go.mod h1:vXjM/+wXQnTPR4KqTKDgJukSZ6amVRtWMPEjE6sQoK8= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -729,8 +729,9 @@ github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3-0.20201103224600-674baa8c7fc3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= @@ -768,7 +769,6 @@ github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-containerregistry v0.5.1/go.mod h1:Ct15B4yir3PLOP5jsy0GNeYVaIZs/MK/Jz5any1wFW0= github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= @@ -1048,8 +1048,9 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -1223,7 +1224,6 @@ github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OS github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8= github.com/ncw/swift v1.0.47/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= github.com/neilotoole/errgroup v0.1.5/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C2S41udRnToE= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nishanths/exhaustive v0.7.11/go.mod h1:gX+MP7DWMKJmNa1HfMozK+u04hQd3na9i0hyqf3/dOI= github.com/nishanths/predeclared v0.0.0-20190419143655-18a43bb90ffc/go.mod h1:62PewwiQTlm/7Rj+cxVYqZvDIUc+JjZq6GHAC1fsObQ= @@ -1461,8 +1461,9 @@ github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6So github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg= github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.8.2 h1:KCooALfAYGs415Cwu5ABvv9n9509fSiG5SQJn/AQo4U= @@ -1804,8 +1805,8 @@ golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20220313003712-b769efc7c000/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 h1:Y/gsMcFOcR+6S6f3YeMKl5g+dZMEWqcz5Czj/GWYbkM= -golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1852,8 +1853,9 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1930,8 +1932,8 @@ golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2111,16 +2113,16 @@ golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 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.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20220411215600-e5f449aeb171/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20220526004731-065cf7ba2467/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.5.0 h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2130,8 +2132,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -2409,8 +2411,12 @@ google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20230221151758-ace64dc21148 h1:muK+gVBJBfFb4SejshDBlN2/UgxCCOKH9Y34ljqEGOc= -google.golang.org/genproto v0.0.0-20230221151758-ace64dc21148/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 h1:L6iMMGrtzgHsWofoFcihmDEMYeDR9KN/ThbPWGrh++g= +google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q= +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= google.golang.org/grpc v1.33.2 h1:EQyQC3sa8M+p6Ulc8yy9SWSS2GVwyRc83gAbG8lrl4o= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= @@ -2429,8 +2435,8 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.27.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= +google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -2438,8 +2444,9 @@ gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b h1:QRR6H1YWRnHb4Y/HeNFCTJLFVxaq6wH4YuVdsUOr75U= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= diff --git a/proto/buf.yaml b/proto/buf.yaml index c907cfc..722ede1 100644 --- a/proto/buf.yaml +++ b/proto/buf.yaml @@ -1,5 +1,5 @@ version: v1 -name: buf.build/CosmosContracts/bluechip +name: buf.build/Smartdev0328/bluechip deps: - buf.build/gogo/protobuf - buf.build/googleapis/googleapis diff --git a/proto/bluechip/mint/genesis.proto b/proto/mint/genesis.proto similarity index 73% rename from proto/bluechip/mint/genesis.proto rename to proto/mint/genesis.proto index 68c3f0a..26fe66b 100644 --- a/proto/bluechip/mint/genesis.proto +++ b/proto/mint/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package bluechip.mint; +package smartdev0328.bluechip.mint; import "gogoproto/gogo.proto"; -import "bluechip/mint/mint.proto"; +import "mint/mint.proto"; -option go_package = "github.com/CosmosContracts/bluechip/x/mint/types"; +option go_package = "github.com/Smartdev0328/bluechip/x/mint/types"; // GenesisState defines the mint module's genesis state. message GenesisState { diff --git a/proto/bluechip/mint/mint.proto b/proto/mint/mint.proto similarity index 91% rename from proto/bluechip/mint/mint.proto rename to proto/mint/mint.proto index 542dc66..6deec48 100644 --- a/proto/bluechip/mint/mint.proto +++ b/proto/mint/mint.proto @@ -1,10 +1,11 @@ syntax = "proto3"; -package bluechip.mint; +package smartdev0328.bluechip.mint; + import "gogoproto/gogo.proto"; -option go_package = "github.com/CosmosContracts/bluechip/x/mint/types"; +option go_package = "github.com/Smartdev0328/bluechip/x/mint/types"; // Minter represents the minting state. message Minter { diff --git a/proto/bluechip/mint/query.proto b/proto/mint/query.proto similarity index 93% rename from proto/bluechip/mint/query.proto rename to proto/mint/query.proto index 79aae07..e9d4d57 100644 --- a/proto/bluechip/mint/query.proto +++ b/proto/mint/query.proto @@ -1,11 +1,12 @@ syntax = "proto3"; -package bluechip.mint; +package smartdev0328.bluechip.mint; + import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "bluechip/mint/mint.proto"; +import "mint/mint.proto"; -option go_package = "github.com/CosmosContracts/bluechip/x/mint/types"; +option go_package = "github.com/Smartdev0328/bluechip/x/mint/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index ae0964f..875820a 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bluechip/mint/genesis.proto +// source: mint/genesis.proto package types @@ -35,7 +35,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_272c34fd3a1e3171, []int{0} + return fileDescriptor_50813f2cd53c1776, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -79,27 +79,27 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "bluechip.mint.GenesisState") + proto.RegisterType((*GenesisState)(nil), "smartdev0328.bluechip.mint.GenesisState") } -func init() { proto.RegisterFile("bluechip/mint/genesis.proto", fileDescriptor_272c34fd3a1e3171) } +func init() { proto.RegisterFile("mint/genesis.proto", fileDescriptor_50813f2cd53c1776) } -var fileDescriptor_272c34fd3a1e3171 = []byte{ - // 213 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xca, 0x29, 0x4d, - 0x4d, 0xce, 0xc8, 0x2c, 0xd0, 0xcf, 0xcd, 0xcc, 0x2b, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, - 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x85, 0x49, 0xea, 0x81, 0x24, 0xa5, 0x44, - 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x32, 0xfa, 0x20, 0x16, 0x44, 0x91, 0x94, 0x04, 0xaa, 0x09, 0x20, - 0x02, 0x22, 0xa3, 0x54, 0xc1, 0xc5, 0xe3, 0x0e, 0x31, 0x2f, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, - 0x98, 0x8b, 0x0d, 0x24, 0x9b, 0x5a, 0x24, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xaa, 0x87, - 0x62, 0xbe, 0x9e, 0x2f, 0x58, 0xd2, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x52, 0x90, - 0xa6, 0x82, 0xc4, 0xa2, 0xc4, 0xdc, 0x62, 0x09, 0x26, 0xac, 0x9a, 0x02, 0xc0, 0x92, 0x30, 0x4d, - 0x10, 0xa5, 0x4e, 0xee, 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, 0xa5, 0x9b, - 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, 0x9c, 0x9b, 0x58, 0x54, 0x92, - 0x92, 0x5a, 0x66, 0x60, 0x6c, 0x64, 0xa1, 0x0f, 0xf7, 0x45, 0x05, 0xc4, 0x1f, 0x25, 0x95, 0x05, - 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x9f, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xea, 0xd8, 0x3f, - 0xe1, 0x27, 0x01, 0x00, 0x00, +var fileDescriptor_50813f2cd53c1776 = []byte{ + // 218 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xca, 0xcd, 0xcc, 0x2b, + 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, + 0x2a, 0xce, 0x4d, 0x2c, 0x2a, 0x49, 0x49, 0x2d, 0x33, 0x30, 0x36, 0xb2, 0xd0, 0x4b, 0xca, 0x29, + 0x4d, 0x4d, 0xce, 0xc8, 0x2c, 0xd0, 0x03, 0xa9, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, + 0xd3, 0x07, 0xb1, 0x20, 0x3a, 0xa4, 0xf8, 0xc1, 0xa6, 0x80, 0x08, 0x88, 0x80, 0xd2, 0x24, 0x46, + 0x2e, 0x1e, 0x77, 0x88, 0xa1, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0x0e, 0x5c, 0x6c, 0x20, 0xe9, + 0xd4, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x25, 0x3d, 0xdc, 0x96, 0xe8, 0xf9, 0x82, + 0x55, 0x3a, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0xd5, 0x07, 0x32, 0xa1, 0x20, 0xb1, 0x28, + 0x31, 0xb7, 0x58, 0x82, 0x89, 0xb0, 0x09, 0x01, 0x60, 0x95, 0x30, 0x13, 0x20, 0xfa, 0x9c, 0xdc, + 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, + 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, + 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x18, 0xc9, 0x54, 0x7d, 0x98, 0xa9, 0xfa, 0x15, 0x60, + 0xdf, 0xe9, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x3d, 0x69, 0x0c, 0x08, 0x00, 0x00, + 0xff, 0xff, 0xa9, 0x95, 0x2a, 0x68, 0x3d, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 2d6f83e..4aba8eb 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bluechip/mint/mint.proto +// source: mint/mint.proto package types @@ -39,7 +39,7 @@ func (m *Minter) Reset() { *m = Minter{} } func (m *Minter) String() string { return proto.CompactTextString(m) } func (*Minter) ProtoMessage() {} func (*Minter) Descriptor() ([]byte, []int) { - return fileDescriptor_2df98cab221e9cb7, []int{0} + return fileDescriptor_e1b9fbb701b2a577, []int{0} } func (m *Minter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -93,7 +93,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_2df98cab221e9cb7, []int{1} + return fileDescriptor_e1b9fbb701b2a577, []int{1} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -137,41 +137,41 @@ func (m *Params) GetBlocksPerYear() uint64 { } func init() { - proto.RegisterType((*Minter)(nil), "bluechip.mint.Minter") - proto.RegisterType((*Params)(nil), "bluechip.mint.Params") + proto.RegisterType((*Minter)(nil), "smartdev0328.bluechip.mint.Minter") + proto.RegisterType((*Params)(nil), "smartdev0328.bluechip.mint.Params") } -func init() { proto.RegisterFile("bluechip/mint/mint.proto", fileDescriptor_2df98cab221e9cb7) } +func init() { proto.RegisterFile("mint/mint.proto", fileDescriptor_e1b9fbb701b2a577) } -var fileDescriptor_2df98cab221e9cb7 = []byte{ - // 419 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x8f, 0xd3, 0x30, - 0x18, 0xc6, 0x13, 0xae, 0x57, 0xa9, 0x16, 0xd5, 0x71, 0x56, 0x85, 0xa2, 0x13, 0x24, 0xa7, 0x0c, - 0xe8, 0x96, 0x4b, 0x10, 0xb7, 0xa0, 0x1b, 0xa3, 0x13, 0xff, 0x04, 0x52, 0x14, 0x26, 0x58, 0x22, +var fileDescriptor_e1b9fbb701b2a577 = []byte{ + // 422 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3d, 0x8f, 0xd3, 0x30, + 0x1c, 0xc6, 0x13, 0xae, 0x57, 0xa9, 0x16, 0xa7, 0x72, 0x56, 0x85, 0xa2, 0x0a, 0x92, 0x53, 0x06, + 0x74, 0xcb, 0x25, 0x88, 0x5b, 0xd0, 0x8d, 0xd1, 0x89, 0x37, 0x81, 0x14, 0xe5, 0x26, 0x58, 0x22, 0x27, 0x35, 0xa9, 0xd5, 0xc4, 0x36, 0xb6, 0x73, 0x90, 0x6f, 0xc1, 0xc8, 0xc0, 0xc0, 0xc7, 0xb9, - 0xb1, 0x23, 0x62, 0x88, 0x50, 0xfb, 0x0d, 0xfa, 0x09, 0x90, 0x6d, 0x68, 0xe1, 0x3a, 0x75, 0x49, - 0xfc, 0xfc, 0xfc, 0xe8, 0x7d, 0x6c, 0xbf, 0x2f, 0xf0, 0x8a, 0xba, 0xc5, 0xe5, 0x8c, 0xf0, 0xb8, - 0x21, 0x54, 0x99, 0x4f, 0xc4, 0x05, 0x53, 0x0c, 0x8e, 0xff, 0xee, 0x44, 0x1a, 0x9e, 0x4c, 0x2a, - 0x56, 0x31, 0xb3, 0x13, 0xeb, 0x95, 0x35, 0x85, 0xdf, 0x0e, 0xc0, 0xf0, 0x0d, 0xa1, 0x0a, 0x0b, - 0xf8, 0x1a, 0x8c, 0x08, 0xfd, 0x50, 0x23, 0x45, 0x18, 0xf5, 0xdc, 0x53, 0xf7, 0x6c, 0x94, 0x44, - 0x37, 0x7d, 0xe0, 0xfc, 0xec, 0x83, 0x47, 0x15, 0x51, 0xb3, 0xb6, 0x88, 0x4a, 0xd6, 0xc4, 0x25, - 0x93, 0x0d, 0x93, 0x7f, 0x7e, 0xe7, 0x72, 0x3a, 0x8f, 0x55, 0xc7, 0xb1, 0x8c, 0xae, 0x70, 0x99, - 0x6d, 0x0b, 0xc0, 0x09, 0x38, 0xe4, 0x33, 0x24, 0xb1, 0x77, 0xe7, 0xd4, 0x3d, 0x1b, 0x64, 0x56, - 0xc0, 0x17, 0xe0, 0x58, 0x2a, 0x24, 0x54, 0x6e, 0x64, 0x5e, 0xd4, 0xac, 0x9c, 0x7b, 0x07, 0xda, - 0x91, 0x3c, 0x58, 0xf7, 0x81, 0xd7, 0xa1, 0xa6, 0xbe, 0x0c, 0x77, 0x2c, 0x61, 0x76, 0x64, 0x58, - 0xaa, 0x51, 0xa2, 0x09, 0xfc, 0x04, 0x8e, 0x11, 0xa5, 0x2d, 0xaa, 0x73, 0x2e, 0xd8, 0x35, 0x91, - 0x84, 0x51, 0xe9, 0x0d, 0xcc, 0xa9, 0x5f, 0xed, 0x77, 0xea, 0x6d, 0xee, 0x4e, 0xc1, 0x30, 0xbb, - 0x67, 0x59, 0xba, 0x41, 0x70, 0x0e, 0xc6, 0x0a, 0x89, 0x0a, 0xab, 0x5c, 0xb6, 0x9c, 0xd7, 0x9d, - 0x77, 0x68, 0x42, 0x9f, 0xed, 0x11, 0xfa, 0x92, 0xaa, 0x75, 0x1f, 0x4c, 0x6c, 0xe8, 0x7f, 0xc5, - 0xc2, 0xec, 0xae, 0xd5, 0x6f, 0xad, 0xfc, 0x08, 0x86, 0x29, 0x12, 0xa8, 0x91, 0xf0, 0x21, 0x00, - 0xba, 0x8d, 0xf9, 0x14, 0x53, 0xd6, 0xd8, 0xf6, 0x64, 0x23, 0x4d, 0xae, 0x34, 0x80, 0x09, 0x38, - 0x32, 0x2f, 0x25, 0x73, 0x8e, 0x45, 0xde, 0x61, 0x24, 0xec, 0xc3, 0x27, 0x27, 0xeb, 0x3e, 0xb8, - 0x6f, 0x93, 0x6e, 0x19, 0xc2, 0x6c, 0x6c, 0x49, 0x8a, 0xc5, 0x3b, 0x8c, 0xc4, 0xe5, 0xe0, 0xeb, - 0xf7, 0xc0, 0x49, 0x9e, 0xdf, 0x2c, 0x7d, 0x77, 0xb1, 0xf4, 0xdd, 0x5f, 0x4b, 0xdf, 0xfd, 0xb2, - 0xf2, 0x9d, 0xc5, 0xca, 0x77, 0x7e, 0xac, 0x7c, 0xe7, 0xfd, 0xf9, 0x3f, 0x57, 0x93, 0x0d, 0x12, - 0x6a, 0x8a, 0xaf, 0x1f, 0x5f, 0x3c, 0x79, 0x1a, 0x6f, 0x46, 0xf0, 0xb3, 0x1d, 0x42, 0x73, 0xcb, - 0x62, 0x68, 0x26, 0xec, 0xe2, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x5a, 0xb6, 0x72, 0xa2, - 0x02, 0x00, 0x00, + 0xf1, 0x46, 0xc4, 0x10, 0xa1, 0xf6, 0x1b, 0xf4, 0x13, 0x20, 0xdb, 0x40, 0x0b, 0x9d, 0xba, 0x24, + 0x79, 0x7e, 0x7a, 0xf2, 0x7f, 0xfc, 0xf2, 0x80, 0x71, 0x43, 0xa8, 0x8a, 0xf5, 0x23, 0xe2, 0x82, + 0x29, 0x06, 0xa7, 0xb2, 0x41, 0x42, 0xcd, 0xf0, 0xf5, 0xe3, 0xf3, 0x27, 0x4f, 0xa3, 0xa2, 0x6e, + 0x71, 0x39, 0x27, 0x3c, 0xd2, 0x8e, 0xe9, 0xa4, 0x62, 0x15, 0x33, 0xb6, 0x58, 0x7f, 0xd9, 0x3f, + 0xc2, 0xaf, 0x07, 0x60, 0xf8, 0x86, 0x50, 0x85, 0x05, 0x7c, 0x0d, 0x46, 0x84, 0xbe, 0xaf, 0x91, + 0x22, 0x8c, 0x7a, 0xee, 0x89, 0x7b, 0x3a, 0x4a, 0xa2, 0x9b, 0x3e, 0x70, 0x7e, 0xf4, 0xc1, 0xa3, + 0x8a, 0xa8, 0x79, 0x5b, 0x44, 0x25, 0x6b, 0xe2, 0x92, 0xc9, 0x86, 0xc9, 0xdf, 0xaf, 0x33, 0x39, + 0x5b, 0xc4, 0xaa, 0xe3, 0x58, 0x46, 0x97, 0xb8, 0xcc, 0x36, 0x03, 0xe0, 0x04, 0x1c, 0xf2, 0x39, + 0x92, 0xd8, 0xbb, 0x73, 0xe2, 0x9e, 0x0e, 0x32, 0x2b, 0xe0, 0x0b, 0x70, 0x2c, 0x15, 0x12, 0x2a, + 0x37, 0x32, 0x2f, 0x6a, 0x56, 0x2e, 0xbc, 0x03, 0xed, 0x48, 0x1e, 0xac, 0xfb, 0xc0, 0xeb, 0x50, + 0x53, 0x5f, 0x84, 0x3b, 0x96, 0x30, 0x1b, 0x1b, 0x96, 0x6a, 0x94, 0x68, 0x02, 0x3f, 0x82, 0x63, + 0x44, 0x69, 0x8b, 0xea, 0x9c, 0x0b, 0x76, 0x4d, 0x24, 0x61, 0x54, 0x7a, 0x03, 0xb3, 0xea, 0x57, + 0xfb, 0xad, 0x7a, 0x93, 0xbb, 0x33, 0x30, 0xcc, 0xee, 0x59, 0x96, 0xfe, 0x45, 0x70, 0x01, 0x8e, + 0x14, 0x12, 0x15, 0x56, 0xb9, 0x6c, 0x39, 0xaf, 0x3b, 0xef, 0xd0, 0x84, 0x3e, 0xdb, 0x23, 0xf4, + 0x25, 0x55, 0xeb, 0x3e, 0x98, 0xd8, 0xd0, 0x7f, 0x86, 0x85, 0xd9, 0x5d, 0xab, 0xaf, 0xac, 0xfc, + 0x00, 0x86, 0x29, 0x12, 0xa8, 0x91, 0xf0, 0x21, 0x00, 0xfa, 0x1a, 0xf3, 0x19, 0xa6, 0xac, 0xb1, + 0xd7, 0x93, 0x8d, 0x34, 0xb9, 0xd4, 0x00, 0x26, 0x60, 0x6c, 0x4e, 0x4a, 0xe6, 0x1c, 0x8b, 0xbc, + 0xc3, 0x48, 0xd8, 0x83, 0x4f, 0xa6, 0xeb, 0x3e, 0xb8, 0x6f, 0x93, 0xfe, 0x33, 0x84, 0xd9, 0x91, + 0x25, 0x29, 0x16, 0x6f, 0x31, 0x12, 0x17, 0x83, 0x2f, 0xdf, 0x02, 0x27, 0x79, 0x7e, 0xb3, 0xf4, + 0xdd, 0xdb, 0xa5, 0xef, 0xfe, 0x5c, 0xfa, 0xee, 0xe7, 0x95, 0xef, 0xdc, 0xae, 0x7c, 0xe7, 0xfb, + 0xca, 0x77, 0xde, 0x9d, 0x6d, 0x6d, 0xed, 0x6a, 0xab, 0x68, 0xf1, 0x9f, 0xa2, 0xc5, 0x9f, 0x4c, + 0x19, 0xed, 0x2e, 0x8b, 0xa1, 0x69, 0xd8, 0xf9, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x1a, + 0xca, 0xc9, 0xa6, 0x02, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index 7c38f28..155911a 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bluechip/mint/query.proto +// source: mint/query.proto package types @@ -38,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_5f2c4dce9e864200, []int{0} + return fileDescriptor_3082aecef156f565, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,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_5f2c4dce9e864200, []int{1} + return fileDescriptor_3082aecef156f565, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *QueryInflationRequest) Reset() { *m = QueryInflationRequest{} } func (m *QueryInflationRequest) String() string { return proto.CompactTextString(m) } func (*QueryInflationRequest) ProtoMessage() {} func (*QueryInflationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5f2c4dce9e864200, []int{2} + return fileDescriptor_3082aecef156f565, []int{2} } func (m *QueryInflationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -161,7 +161,7 @@ func (m *QueryInflationResponse) Reset() { *m = QueryInflationResponse{} func (m *QueryInflationResponse) String() string { return proto.CompactTextString(m) } func (*QueryInflationResponse) ProtoMessage() {} func (*QueryInflationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5f2c4dce9e864200, []int{3} + return fileDescriptor_3082aecef156f565, []int{3} } func (m *QueryInflationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -199,7 +199,7 @@ func (m *QueryAnnualProvisionsRequest) Reset() { *m = QueryAnnualProvisi func (m *QueryAnnualProvisionsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAnnualProvisionsRequest) ProtoMessage() {} func (*QueryAnnualProvisionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5f2c4dce9e864200, []int{4} + return fileDescriptor_3082aecef156f565, []int{4} } func (m *QueryAnnualProvisionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -239,7 +239,7 @@ func (m *QueryAnnualProvisionsResponse) Reset() { *m = QueryAnnualProvis func (m *QueryAnnualProvisionsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAnnualProvisionsResponse) ProtoMessage() {} func (*QueryAnnualProvisionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5f2c4dce9e864200, []int{5} + return fileDescriptor_3082aecef156f565, []int{5} } func (m *QueryAnnualProvisionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -269,47 +269,48 @@ func (m *QueryAnnualProvisionsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAnnualProvisionsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "bluechip.mint.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "bluechip.mint.QueryParamsResponse") - proto.RegisterType((*QueryInflationRequest)(nil), "bluechip.mint.QueryInflationRequest") - proto.RegisterType((*QueryInflationResponse)(nil), "bluechip.mint.QueryInflationResponse") - proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "bluechip.mint.QueryAnnualProvisionsRequest") - proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "bluechip.mint.QueryAnnualProvisionsResponse") -} - -func init() { proto.RegisterFile("bluechip/mint/query.proto", fileDescriptor_5f2c4dce9e864200) } - -var fileDescriptor_5f2c4dce9e864200 = []byte{ - // 460 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4d, 0x8b, 0xd3, 0x40, - 0x1c, 0xc6, 0x13, 0x5f, 0x0a, 0x3b, 0x2a, 0xac, 0xe3, 0xae, 0xae, 0x71, 0x77, 0x76, 0x8d, 0x5a, - 0x16, 0x74, 0x67, 0xdc, 0xf6, 0xe2, 0xd5, 0x22, 0x88, 0xe2, 0xa1, 0xf6, 0xa8, 0x07, 0x99, 0xa4, - 0xd3, 0x34, 0x98, 0xcc, 0xa4, 0x99, 0x49, 0xb1, 0xe0, 0x41, 0xfc, 0x04, 0x82, 0x67, 0xc1, 0x8f, - 0xd3, 0x63, 0xc1, 0x8b, 0x78, 0x28, 0xd2, 0xfa, 0x41, 0x24, 0x93, 0x17, 0x6d, 0x9a, 0xaa, 0x78, - 0x49, 0xc2, 0x3c, 0x7f, 0x9e, 0xdf, 0xc3, 0xff, 0xc9, 0x80, 0xeb, 0x4e, 0x90, 0x30, 0x77, 0xe8, - 0x47, 0x24, 0xf4, 0xb9, 0x22, 0xa3, 0x84, 0xc5, 0x13, 0x1c, 0xc5, 0x42, 0x09, 0x78, 0xa9, 0x90, - 0x70, 0x2a, 0x59, 0x3b, 0x9e, 0xf0, 0x84, 0x56, 0x48, 0xfa, 0x95, 0x0d, 0x59, 0xfb, 0x9e, 0x10, - 0x5e, 0xc0, 0x08, 0x8d, 0x7c, 0x42, 0x39, 0x17, 0x8a, 0x2a, 0x5f, 0x70, 0x99, 0xab, 0x7b, 0xab, - 0xee, 0xe9, 0x23, 0x53, 0xec, 0x1d, 0x00, 0x9f, 0xa7, 0xac, 0x2e, 0x8d, 0x69, 0x28, 0x7b, 0x6c, - 0x94, 0x30, 0xa9, 0xec, 0xa7, 0xe0, 0xca, 0xca, 0xa9, 0x8c, 0x04, 0x97, 0x0c, 0xb6, 0x41, 0x23, - 0xd2, 0x27, 0x7b, 0xe6, 0x91, 0x79, 0x7c, 0xa1, 0xb5, 0x8b, 0x57, 0xa2, 0xe1, 0x6c, 0xbc, 0x73, - 0x6e, 0x3a, 0x3f, 0x34, 0x7a, 0xf9, 0xa8, 0x7d, 0x0d, 0xec, 0x6a, 0xaf, 0x27, 0x7c, 0x10, 0xe8, - 0x50, 0x05, 0x64, 0x00, 0xae, 0x56, 0x85, 0x9c, 0xf3, 0x0c, 0x6c, 0xf9, 0xc5, 0xa1, 0x46, 0x5d, - 0xec, 0xe0, 0xd4, 0xf3, 0xdb, 0xfc, 0xb0, 0xe9, 0xf9, 0x6a, 0x98, 0x38, 0xd8, 0x15, 0x21, 0x71, - 0x85, 0x0c, 0x85, 0xcc, 0x5f, 0x27, 0xb2, 0xff, 0x9a, 0xa8, 0x49, 0xc4, 0x24, 0x7e, 0xc4, 0xdc, - 0xde, 0x2f, 0x03, 0x1b, 0x81, 0x7d, 0xcd, 0x79, 0xc8, 0x79, 0x42, 0x83, 0x6e, 0x2c, 0xc6, 0xbe, - 0x4c, 0x77, 0x53, 0xe4, 0x78, 0x0b, 0x0e, 0x36, 0xe8, 0x79, 0x9c, 0x97, 0xe0, 0x32, 0xd5, 0xda, - 0xab, 0xa8, 0x14, 0xff, 0x33, 0xd6, 0x36, 0xad, 0x40, 0x5a, 0x9f, 0xcf, 0x82, 0xf3, 0x1a, 0x0f, - 0x15, 0x68, 0x64, 0x0b, 0x84, 0x37, 0x2b, 0x7b, 0x5d, 0x6f, 0xc8, 0xb2, 0xff, 0x34, 0x92, 0xe5, - 0xb6, 0x6f, 0xbd, 0xff, 0xf2, 0xe3, 0xe3, 0x99, 0x03, 0x78, 0xa3, 0x88, 0xa4, 0xcb, 0x1f, 0x9f, - 0x3a, 0x4c, 0xd1, 0x53, 0x92, 0xd5, 0x03, 0xdf, 0x99, 0x60, 0xab, 0x6c, 0x00, 0xde, 0xae, 0xb3, - 0xad, 0x36, 0x67, 0xdd, 0xf9, 0xcb, 0x54, 0xce, 0x6f, 0x6a, 0xfe, 0x11, 0x44, 0xb5, 0xfc, 0xb2, - 0x20, 0xf8, 0xc9, 0x04, 0xdb, 0xd5, 0xe5, 0xc3, 0xbb, 0x75, 0x8c, 0x0d, 0x15, 0x5a, 0xf7, 0xfe, - 0x6d, 0x38, 0xcf, 0x85, 0x75, 0xae, 0x63, 0xd8, 0xac, 0xcd, 0xb5, 0x56, 0x75, 0xe7, 0xf1, 0x74, - 0x81, 0xcc, 0xd9, 0x02, 0x99, 0xdf, 0x17, 0xc8, 0xfc, 0xb0, 0x44, 0xc6, 0x6c, 0x89, 0x8c, 0xaf, - 0x4b, 0x64, 0xbc, 0x38, 0xf9, 0xad, 0x76, 0x19, 0xd2, 0x58, 0xf5, 0xd9, 0xf8, 0x7e, 0xbb, 0xf5, - 0x80, 0x94, 0xf7, 0xed, 0x4d, 0x66, 0xae, 0xff, 0x00, 0xa7, 0xa1, 0xef, 0x5c, 0xfb, 0x67, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x5c, 0xa8, 0xe4, 0x24, 0xed, 0x03, 0x00, 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "smartdev0328.bluechip.mint.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "smartdev0328.bluechip.mint.QueryParamsResponse") + proto.RegisterType((*QueryInflationRequest)(nil), "smartdev0328.bluechip.mint.QueryInflationRequest") + proto.RegisterType((*QueryInflationResponse)(nil), "smartdev0328.bluechip.mint.QueryInflationResponse") + proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "smartdev0328.bluechip.mint.QueryAnnualProvisionsRequest") + proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "smartdev0328.bluechip.mint.QueryAnnualProvisionsResponse") +} + +func init() { proto.RegisterFile("mint/query.proto", fileDescriptor_3082aecef156f565) } + +var fileDescriptor_3082aecef156f565 = []byte{ + // 467 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xc8, 0xcd, 0xcc, 0x2b, + 0xd1, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x2a, 0xce, + 0x4d, 0x2c, 0x2a, 0x49, 0x49, 0x2d, 0x33, 0x30, 0x36, 0xb2, 0xd0, 0x4b, 0xca, 0x29, 0x4d, 0x4d, + 0xce, 0xc8, 0x2c, 0xd0, 0x03, 0xa9, 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd3, 0x07, + 0xb1, 0x20, 0x3a, 0xa4, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, 0xf5, + 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, 0xfc, 0x60, 0x1b, + 0x40, 0x04, 0x44, 0x40, 0x49, 0x84, 0x4b, 0x28, 0x10, 0x64, 0x5f, 0x40, 0x62, 0x51, 0x62, 0x6e, + 0x71, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x52, 0x38, 0x97, 0x30, 0x8a, 0x68, 0x71, 0x41, + 0x7e, 0x5e, 0x71, 0xaa, 0x90, 0x03, 0x17, 0x5b, 0x01, 0x58, 0x44, 0x82, 0x51, 0x81, 0x51, 0x83, + 0xdb, 0x48, 0x49, 0x0f, 0xb7, 0xf3, 0xf4, 0x20, 0x7a, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, + 0x82, 0xea, 0x53, 0x12, 0xe7, 0x12, 0x05, 0x1b, 0xec, 0x99, 0x97, 0x96, 0x03, 0x76, 0x18, 0xcc, + 0xc6, 0x34, 0x2e, 0x31, 0x74, 0x09, 0xa8, 0xa5, 0x3e, 0x5c, 0x9c, 0x99, 0x30, 0x41, 0xb0, 0xbd, + 0x3c, 0x4e, 0x7a, 0x20, 0x33, 0x6f, 0xdd, 0x93, 0x57, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, + 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0x86, 0x52, 0xba, 0xc5, 0x29, 0xd9, + 0xfa, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x7a, 0x2e, 0xa9, 0xc9, 0x41, 0x08, 0x03, 0x94, 0xe4, 0xb8, + 0x64, 0xc0, 0xf6, 0x38, 0xe6, 0xe5, 0x95, 0x26, 0xe6, 0x04, 0x14, 0xe5, 0x97, 0x65, 0x16, 0x83, + 0xc2, 0x07, 0xe6, 0x8e, 0x1a, 0x2e, 0x59, 0x1c, 0xf2, 0x50, 0xe7, 0x44, 0x73, 0x09, 0x26, 0x82, + 0xe5, 0xe2, 0x0b, 0xe0, 0x92, 0x64, 0x3a, 0x4b, 0x20, 0x11, 0xcd, 0x12, 0xa3, 0xf7, 0xcc, 0x5c, + 0xac, 0x60, 0xeb, 0x85, 0xfa, 0x18, 0xb9, 0xd8, 0x20, 0x21, 0x28, 0xa4, 0x87, 0x2f, 0x94, 0x31, + 0x23, 0x4f, 0x4a, 0x9f, 0x68, 0xf5, 0x10, 0x2f, 0x29, 0x29, 0x37, 0x5d, 0x7e, 0x32, 0x99, 0x49, + 0x56, 0x48, 0x1a, 0xe6, 0x5a, 0x70, 0x22, 0x29, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x87, + 0xc4, 0x9c, 0xd0, 0x2c, 0x46, 0x2e, 0x4e, 0x78, 0xe4, 0x08, 0x19, 0x12, 0xb4, 0x03, 0x3d, 0x86, + 0xa5, 0x8c, 0x48, 0xd1, 0x02, 0x75, 0x99, 0x1a, 0xd8, 0x65, 0x0a, 0x42, 0x72, 0x58, 0x5d, 0x06, + 0x8f, 0x55, 0xa1, 0xed, 0x8c, 0x5c, 0x02, 0xe8, 0x31, 0x26, 0x64, 0x41, 0xd0, 0x42, 0x1c, 0x89, + 0x40, 0xca, 0x92, 0x0c, 0x9d, 0x50, 0x17, 0xeb, 0x81, 0x5d, 0xac, 0x21, 0xa4, 0x86, 0xd5, 0xc5, + 0x18, 0x29, 0xc7, 0xc9, 0xfd, 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, 0x74, + 0x91, 0x52, 0x51, 0x30, 0x92, 0x73, 0xf4, 0x61, 0xce, 0xd1, 0xaf, 0x80, 0x18, 0x0e, 0x4e, 0x50, + 0x49, 0x6c, 0xe0, 0xfc, 0x6c, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x4e, 0x1e, 0x60, 0x44, + 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -342,7 +343,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, "/bluechip.mint.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/smartdev0328.bluechip.mint.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -351,7 +352,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, opts ...grpc.CallOption) (*QueryInflationResponse, error) { out := new(QueryInflationResponse) - err := c.cc.Invoke(ctx, "/bluechip.mint.Query/Inflation", in, out, opts...) + err := c.cc.Invoke(ctx, "/smartdev0328.bluechip.mint.Query/Inflation", in, out, opts...) if err != nil { return nil, err } @@ -360,7 +361,7 @@ func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, func (c *queryClient) AnnualProvisions(ctx context.Context, in *QueryAnnualProvisionsRequest, opts ...grpc.CallOption) (*QueryAnnualProvisionsResponse, error) { out := new(QueryAnnualProvisionsResponse) - err := c.cc.Invoke(ctx, "/bluechip.mint.Query/AnnualProvisions", in, out, opts...) + err := c.cc.Invoke(ctx, "/smartdev0328.bluechip.mint.Query/AnnualProvisions", in, out, opts...) if err != nil { return nil, err } @@ -405,7 +406,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/bluechip.mint.Query/Params", + FullMethod: "/smartdev0328.bluechip.mint.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -423,7 +424,7 @@ func _Query_Inflation_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/bluechip.mint.Query/Inflation", + FullMethod: "/smartdev0328.bluechip.mint.Query/Inflation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Inflation(ctx, req.(*QueryInflationRequest)) @@ -441,7 +442,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/bluechip.mint.Query/AnnualProvisions", + FullMethod: "/smartdev0328.bluechip.mint.Query/AnnualProvisions", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AnnualProvisions(ctx, req.(*QueryAnnualProvisionsRequest)) @@ -450,7 +451,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "bluechip.mint.Query", + ServiceName: "smartdev0328.bluechip.mint.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -467,7 +468,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "bluechip/mint/query.proto", + Metadata: "mint/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.gw.go b/x/mint/types/query.pb.gw.go index 369248f..c13ea62 100644 --- a/x/mint/types/query.pb.gw.go +++ b/x/mint/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: bluechip/mint/query.proto +// source: mint/query.proto /* Package types is a reverse proxy.