diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..1d3ed4c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.yml diff --git a/build/bcnad b/build/bcnad new file mode 100755 index 00000000..87463b9b Binary files /dev/null and b/build/bcnad differ diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 09d46368..09e64044 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -120,16 +120,6 @@ paths: in: query required: false type: boolean - - name: pagination.reverse - 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 tags: - Query /BitCannaGlobal/bcna/bcna/bitcannaid/{id}: @@ -336,16 +326,6 @@ paths: in: query required: false type: boolean - - name: pagination.reverse - 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 tags: - Query /BitCannaGlobal/bcna/bcna/supplychain/{id}: diff --git a/proto/bcna/bitcannaid.proto b/proto/bcna/bcna/bitcannaid.proto similarity index 100% rename from proto/bcna/bitcannaid.proto rename to proto/bcna/bcna/bitcannaid.proto diff --git a/proto/bcna/genesis.proto b/proto/bcna/bcna/genesis.proto similarity index 85% rename from proto/bcna/genesis.proto rename to proto/bcna/bcna/genesis.proto index 0f5b64eb..d4acaaf6 100644 --- a/proto/bcna/genesis.proto +++ b/proto/bcna/bcna/genesis.proto @@ -2,9 +2,9 @@ syntax = "proto3"; package bitcannaglobal.bcna.bcna; import "gogoproto/gogo.proto"; -import "bcna/params.proto"; -import "bcna/bitcannaid.proto"; -import "bcna/supplychain.proto"; +import "bcna/bcna/params.proto"; +import "bcna/bcna/bitcannaid.proto"; +import "bcna/bcna/supplychain.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "github.com/BitCannaGlobal/bcna/x/bcna/types"; diff --git a/proto/bcna/params.proto b/proto/bcna/bcna/params.proto similarity index 100% rename from proto/bcna/params.proto rename to proto/bcna/bcna/params.proto diff --git a/proto/bcna/query.proto b/proto/bcna/bcna/query.proto similarity index 96% rename from proto/bcna/query.proto rename to proto/bcna/bcna/query.proto index f891af8a..daef922c 100644 --- a/proto/bcna/query.proto +++ b/proto/bcna/bcna/query.proto @@ -4,9 +4,9 @@ package bitcannaglobal.bcna.bcna; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "bcna/params.proto"; -import "bcna/bitcannaid.proto"; -import "bcna/supplychain.proto"; +import "bcna/bcna/params.proto"; +import "bcna/bcna/bitcannaid.proto"; +import "bcna/bcna/supplychain.proto"; // this line is used by starport scaffolding # 1 option go_package = "github.com/BitCannaGlobal/bcna/x/bcna/types"; diff --git a/proto/bcna/supplychain.proto b/proto/bcna/bcna/supplychain.proto similarity index 100% rename from proto/bcna/supplychain.proto rename to proto/bcna/bcna/supplychain.proto diff --git a/proto/bcna/tx.proto b/proto/bcna/bcna/tx.proto similarity index 96% rename from proto/bcna/tx.proto rename to proto/bcna/bcna/tx.proto index 54eef9fa..cc7fd158 100644 --- a/proto/bcna/tx.proto +++ b/proto/bcna/bcna/tx.proto @@ -1,8 +1,8 @@ syntax = "proto3"; package bitcannaglobal.bcna.bcna; -import "bcna/bitcannaid.proto"; -import "bcna/supplychain.proto"; +import "bcna/bcna/bitcannaid.proto"; +import "bcna/bcna/supplychain.proto"; // this line is used by starport scaffolding # proto/tx/import option go_package = "github.com/BitCannaGlobal/bcna/x/bcna/types"; diff --git a/x/bcna/client/cli/query_bitcannaid.go b/x/bcna/client/cli/query_bitcannaid.go index 43a7a18e..5c30af13 100644 --- a/x/bcna/client/cli/query_bitcannaid.go +++ b/x/bcna/client/cli/query_bitcannaid.go @@ -14,8 +14,12 @@ func CmdListBitcannaid() *cobra.Command { cmd := &cobra.Command{ Use: "list-bitcannaid", Short: "list all bitcannaid", + Args: cobra.NoArgs, RunE: func(cmd *cobra.Command, args []string) error { - clientCtx := client.GetClientContextFromCmd(cmd) + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } pageReq, err := client.ReadPageRequest(cmd.Flags()) if err != nil { @@ -49,7 +53,10 @@ func CmdShowBitcannaid() *cobra.Command { Short: "shows a bitcannaid", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { - clientCtx := client.GetClientContextFromCmd(cmd) + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } queryClient := types.NewQueryClient(clientCtx) diff --git a/x/bcna/client/cli/query_supplychain.go b/x/bcna/client/cli/query_supplychain.go index 75136fa5..40237833 100644 --- a/x/bcna/client/cli/query_supplychain.go +++ b/x/bcna/client/cli/query_supplychain.go @@ -13,9 +13,13 @@ import ( func CmdListSupplychain() *cobra.Command { cmd := &cobra.Command{ Use: "list-supplychain", + Args: cobra.NoArgs, Short: "list all supplychain", RunE: func(cmd *cobra.Command, args []string) error { - clientCtx := client.GetClientContextFromCmd(cmd) + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } pageReq, err := client.ReadPageRequest(cmd.Flags()) if err != nil { @@ -49,7 +53,10 @@ func CmdShowSupplychain() *cobra.Command { Short: "shows a supplychain", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { - clientCtx := client.GetClientContextFromCmd(cmd) + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } queryClient := types.NewQueryClient(clientCtx) diff --git a/x/bcna/keeper/grpc_query.go b/x/bcna/keeper/query.go similarity index 100% rename from x/bcna/keeper/grpc_query.go rename to x/bcna/keeper/query.go diff --git a/x/bcna/keeper/grpc_query_bitcannaid.go b/x/bcna/keeper/query_bitcannaid.go similarity index 100% rename from x/bcna/keeper/grpc_query_bitcannaid.go rename to x/bcna/keeper/query_bitcannaid.go diff --git a/x/bcna/keeper/grpc_query_bitcannaid_test.go b/x/bcna/keeper/query_bitcannaid_test.go similarity index 100% rename from x/bcna/keeper/grpc_query_bitcannaid_test.go rename to x/bcna/keeper/query_bitcannaid_test.go diff --git a/x/bcna/keeper/grpc_query_params.go b/x/bcna/keeper/query_params.go similarity index 100% rename from x/bcna/keeper/grpc_query_params.go rename to x/bcna/keeper/query_params.go diff --git a/x/bcna/keeper/grpc_query_params_test.go b/x/bcna/keeper/query_params_test.go similarity index 100% rename from x/bcna/keeper/grpc_query_params_test.go rename to x/bcna/keeper/query_params_test.go diff --git a/x/bcna/keeper/grpc_query_supplychain.go b/x/bcna/keeper/query_supplychain.go similarity index 100% rename from x/bcna/keeper/grpc_query_supplychain.go rename to x/bcna/keeper/query_supplychain.go diff --git a/x/bcna/keeper/grpc_query_supplychain_test.go b/x/bcna/keeper/query_supplychain_test.go similarity index 100% rename from x/bcna/keeper/grpc_query_supplychain_test.go rename to x/bcna/keeper/query_supplychain_test.go diff --git a/x/bcna/types/bitcannaid.pb.go b/x/bcna/types/bitcannaid.pb.go index 9f8c0e7d..ff5c21d6 100644 --- a/x/bcna/types/bitcannaid.pb.go +++ b/x/bcna/types/bitcannaid.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/bitcannaid.proto +// source: bcna/bcna/bitcannaid.proto package types @@ -33,7 +33,7 @@ func (m *Bitcannaid) Reset() { *m = Bitcannaid{} } func (m *Bitcannaid) String() string { return proto.CompactTextString(m) } func (*Bitcannaid) ProtoMessage() {} func (*Bitcannaid) Descriptor() ([]byte, []int) { - return fileDescriptor_4b4053733ed2336d, []int{0} + return fileDescriptor_230c1d9be0912c82, []int{0} } func (m *Bitcannaid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,23 +94,23 @@ func init() { proto.RegisterType((*Bitcannaid)(nil), "bitcannaglobal.bcna.bcna.Bitcannaid") } -func init() { proto.RegisterFile("bcna/bitcannaid.proto", fileDescriptor_4b4053733ed2336d) } +func init() { proto.RegisterFile("bcna/bcna/bitcannaid.proto", fileDescriptor_230c1d9be0912c82) } -var fileDescriptor_4b4053733ed2336d = []byte{ - // 199 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4d, 0x4a, 0xce, 0x4b, - 0xd4, 0x4f, 0xca, 0x2c, 0x49, 0x4e, 0xcc, 0xcb, 0x4b, 0xcc, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x92, 0x80, 0x89, 0xa4, 0xe7, 0xe4, 0x27, 0x25, 0xe6, 0xe8, 0x81, 0x54, 0x81, 0x09, - 0xa5, 0x0c, 0x2e, 0x2e, 0x27, 0xb8, 0x6a, 0x21, 0x3e, 0x2e, 0xa6, 0xcc, 0x14, 0x09, 0x46, 0x05, - 0x46, 0x0d, 0x96, 0x20, 0xa6, 0xcc, 0x14, 0x21, 0x31, 0x2e, 0x36, 0x90, 0xaa, 0xcc, 0x14, 0x09, - 0x26, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x28, 0x4f, 0x48, 0x82, 0x8b, 0x3d, 0x31, 0x25, 0xa5, 0x28, - 0xb5, 0xb8, 0x58, 0x82, 0x19, 0x2c, 0x01, 0xe3, 0x82, 0x64, 0x92, 0x8b, 0x52, 0x13, 0x4b, 0xf2, - 0x8b, 0x24, 0x58, 0x20, 0x32, 0x50, 0xae, 0x93, 0xeb, 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, 0x69, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x3b, - 0x65, 0x96, 0x38, 0x83, 0x1c, 0xe3, 0x0e, 0x76, 0xa8, 0x3e, 0xd8, 0x3b, 0x15, 0x10, 0xaa, 0xa4, - 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x23, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x27, - 0x38, 0xc9, 0x73, 0xea, 0x00, 0x00, 0x00, +var fileDescriptor_230c1d9be0912c82 = []byte{ + // 198 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0x4a, 0xce, 0x4b, + 0xd4, 0x87, 0x10, 0x99, 0x25, 0xc9, 0x89, 0x79, 0x79, 0x89, 0x99, 0x29, 0x7a, 0x05, 0x45, 0xf9, + 0x25, 0xf9, 0x42, 0x12, 0x30, 0x91, 0xf4, 0x9c, 0xfc, 0xa4, 0xc4, 0x1c, 0x3d, 0x90, 0x2a, 0x30, + 0xa1, 0x94, 0xc1, 0xc5, 0xe5, 0x04, 0x57, 0x2d, 0xc4, 0xc7, 0xc5, 0x94, 0x99, 0x22, 0xc1, 0xa8, + 0xc0, 0xa8, 0xc1, 0x12, 0xc4, 0x94, 0x99, 0x22, 0x24, 0xc6, 0xc5, 0x06, 0x52, 0x95, 0x99, 0x22, + 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe5, 0x09, 0x49, 0x70, 0xb1, 0x27, 0xa6, 0xa4, 0x14, + 0xa5, 0x16, 0x17, 0x4b, 0x30, 0x83, 0x25, 0x60, 0x5c, 0x90, 0x4c, 0x72, 0x51, 0x6a, 0x62, 0x49, + 0x7e, 0x91, 0x04, 0x0b, 0x44, 0x06, 0xca, 0x75, 0x72, 0x3d, 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, 0xed, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, + 0xa7, 0xcc, 0x12, 0x67, 0x90, 0x63, 0xdc, 0xc1, 0x0e, 0x85, 0x78, 0xa7, 0x02, 0x42, 0x95, 0x54, + 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x7d, 0x64, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x59, + 0xf1, 0x8a, 0xef, 0x00, 0x00, 0x00, } func (m *Bitcannaid) Marshal() (dAtA []byte, err error) { diff --git a/x/bcna/types/genesis.pb.go b/x/bcna/types/genesis.pb.go index 953ef1c1..09d1944e 100644 --- a/x/bcna/types/genesis.pb.go +++ b/x/bcna/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/genesis.proto +// source: bcna/bcna/genesis.proto package types @@ -36,7 +36,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_a0474e07bc9bd608, []int{0} + return fileDescriptor_11c0911a6ff2df10, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -104,30 +104,30 @@ func init() { proto.RegisterType((*GenesisState)(nil), "bitcannaglobal.bcna.bcna.GenesisState") } -func init() { proto.RegisterFile("bcna/genesis.proto", fileDescriptor_a0474e07bc9bd608) } +func init() { proto.RegisterFile("bcna/bcna/genesis.proto", fileDescriptor_11c0911a6ff2df10) } -var fileDescriptor_a0474e07bc9bd608 = []byte{ - // 308 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xb1, 0x4a, 0xc3, 0x40, - 0x1c, 0xc6, 0x73, 0x6d, 0xed, 0x70, 0x15, 0xab, 0x87, 0x4a, 0xe8, 0x70, 0x06, 0x51, 0x08, 0x0a, - 0x09, 0xd4, 0xdd, 0x21, 0x45, 0xba, 0x38, 0x48, 0x8a, 0x8b, 0xdb, 0x25, 0x86, 0xf4, 0x20, 0xbd, - 0x0b, 0xcd, 0x05, 0xec, 0x5b, 0xf8, 0x58, 0xdd, 0xec, 0xe8, 0x24, 0x92, 0xbc, 0x88, 0xe4, 0x7f, - 0xd1, 0x94, 0x48, 0x96, 0x24, 0xfc, 0xf8, 0xee, 0xf7, 0x7d, 0xe1, 0x30, 0x09, 0x42, 0xc1, 0xdc, - 0x38, 0x12, 0x51, 0xc6, 0x33, 0x27, 0x5d, 0x4b, 0x25, 0x89, 0x19, 0x70, 0x15, 0x32, 0x21, 0x58, - 0x9c, 0xc8, 0x80, 0x25, 0x4e, 0x15, 0x81, 0xc7, 0xe4, 0x34, 0x96, 0xb1, 0x84, 0x90, 0x5b, 0x7d, - 0xe9, 0xfc, 0xe4, 0x04, 0x1c, 0x29, 0x5b, 0xb3, 0x55, 0xad, 0x98, 0x9c, 0x01, 0xfa, 0xf5, 0xf0, - 0xd7, 0x1a, 0x9f, 0x03, 0xce, 0xf2, 0x34, 0x4d, 0x36, 0xe1, 0x92, 0x71, 0xa1, 0xf9, 0xe5, 0x47, - 0x0f, 0x1f, 0xce, 0xf5, 0x86, 0x85, 0x62, 0x2a, 0x22, 0xf7, 0x78, 0xa8, 0x7d, 0x26, 0xb2, 0x90, - 0x3d, 0x9a, 0x5a, 0x4e, 0xd7, 0x26, 0xe7, 0x09, 0x72, 0xde, 0x60, 0xfb, 0x75, 0x61, 0xf8, 0xf5, - 0x29, 0xe2, 0xe3, 0xa3, 0xa6, 0xfc, 0x91, 0x67, 0xca, 0xec, 0x59, 0x7d, 0x7b, 0x34, 0xbd, 0xea, - 0xf6, 0x78, 0x7f, 0xf9, 0xda, 0xd5, 0x32, 0x10, 0x1b, 0x8f, 0x1b, 0x32, 0x93, 0xb9, 0x50, 0x66, - 0xdf, 0x42, 0xf6, 0xc0, 0x6f, 0x63, 0xf2, 0x8c, 0xc7, 0x7b, 0xff, 0x08, 0xf5, 0x03, 0xa8, 0xbf, - 0xee, 0xae, 0x5f, 0x34, 0x07, 0xea, 0xfe, 0xb6, 0x83, 0xdc, 0xe0, 0xe3, 0x3d, 0xa4, 0x17, 0x1c, - 0xc0, 0x82, 0x7f, 0xdc, 0x7b, 0xd8, 0x16, 0x14, 0xed, 0x0a, 0x8a, 0xbe, 0x0b, 0x8a, 0xde, 0x4b, - 0x6a, 0xec, 0x4a, 0x6a, 0x7c, 0x96, 0xd4, 0x78, 0xb9, 0x8d, 0xb9, 0x5a, 0xe6, 0x81, 0x13, 0xca, - 0x95, 0xeb, 0x71, 0x35, 0xab, 0xd6, 0xcc, 0x61, 0x8d, 0x0b, 0xb7, 0xf3, 0xa6, 0x5f, 0x6a, 0x93, - 0x46, 0x59, 0x30, 0x84, 0xfb, 0xb9, 0xfb, 0x09, 0x00, 0x00, 0xff, 0xff, 0x5a, 0x0e, 0x3d, 0x66, - 0x27, 0x02, 0x00, 0x00, +var fileDescriptor_11c0911a6ff2df10 = []byte{ + // 309 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0x4a, 0xce, 0x4b, + 0xd4, 0x07, 0x13, 0xe9, 0xa9, 0x79, 0xa9, 0xc5, 0x99, 0xc5, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, + 0x42, 0x12, 0x49, 0x99, 0x25, 0xc9, 0x89, 0x79, 0x79, 0x89, 0xe9, 0x39, 0xf9, 0x49, 0x89, 0x39, + 0x7a, 0x20, 0x25, 0x60, 0x42, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, + 0xa8, 0x97, 0x12, 0x43, 0x18, 0x54, 0x90, 0x58, 0x94, 0x98, 0x0b, 0x35, 0x47, 0x4a, 0x0a, 0x21, + 0x0e, 0x33, 0x31, 0x33, 0x05, 0x2a, 0x27, 0x8d, 0x90, 0x2b, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0x4c, + 0xce, 0x48, 0xcc, 0xcc, 0x83, 0x48, 0x2a, 0x9d, 0x67, 0xe2, 0xe2, 0x71, 0x87, 0x38, 0x29, 0xb8, + 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x8e, 0x8b, 0x0d, 0x62, 0xb2, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, + 0x91, 0x82, 0x1e, 0x2e, 0x27, 0xea, 0x05, 0x80, 0xd5, 0x39, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, + 0x04, 0xd5, 0x25, 0x14, 0xc4, 0xc5, 0x87, 0x70, 0x81, 0x4f, 0x66, 0x71, 0x89, 0x04, 0x93, 0x02, + 0xb3, 0x06, 0xb7, 0x91, 0x0a, 0x6e, 0x73, 0x9c, 0xe0, 0xea, 0xa1, 0x66, 0xa1, 0x99, 0x20, 0xa4, + 0xc1, 0xc5, 0x8f, 0x10, 0x71, 0xce, 0x2f, 0xcd, 0x2b, 0x91, 0x60, 0x56, 0x60, 0xd4, 0x60, 0x09, + 0x42, 0x17, 0x16, 0x0a, 0xe5, 0xe2, 0x47, 0xf2, 0x23, 0xd8, 0x7a, 0x16, 0xb0, 0xf5, 0xaa, 0xb8, + 0xad, 0x0f, 0x46, 0x68, 0x80, 0xda, 0x8f, 0x6e, 0x86, 0x90, 0x16, 0x97, 0x00, 0x92, 0x10, 0xc4, + 0x05, 0xac, 0x60, 0x17, 0x60, 0x88, 0x3b, 0xb9, 0x9e, 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, 0x76, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0xbe, 0x53, + 0x66, 0x89, 0x33, 0xc8, 0x35, 0xee, 0x60, 0xd7, 0x40, 0x62, 0xa7, 0x02, 0x42, 0x95, 0x54, 0x16, + 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xe3, 0xc7, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x16, 0xf7, 0x6d, + 0x3e, 0x3b, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/bcna/types/params.pb.go b/x/bcna/types/params.pb.go index 0b0afb07..30fae0e7 100644 --- a/x/bcna/types/params.pb.go +++ b/x/bcna/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/params.proto +// source: bcna/bcna/params.proto package types @@ -30,7 +30,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_33fe6ea42a5fee55, []int{0} + return fileDescriptor_ee01f85cc6f297e5, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -63,20 +63,20 @@ func init() { proto.RegisterType((*Params)(nil), "bitcannaglobal.bcna.bcna.Params") } -func init() { proto.RegisterFile("bcna/params.proto", fileDescriptor_33fe6ea42a5fee55) } +func init() { proto.RegisterFile("bcna/bcna/params.proto", fileDescriptor_ee01f85cc6f297e5) } -var fileDescriptor_33fe6ea42a5fee55 = []byte{ - // 155 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0x4a, 0xce, 0x4b, - 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x48, - 0xca, 0x2c, 0x49, 0x4e, 0xcc, 0xcb, 0x4b, 0x4c, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x03, 0xa9, - 0x00, 0x13, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x45, 0xfa, 0x20, 0x16, 0x44, 0xbd, 0x12, - 0x1f, 0x17, 0x5b, 0x00, 0x58, 0xbf, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0xae, 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, 0x9d, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, - 0x97, 0x9c, 0x9f, 0xab, 0xef, 0x94, 0x59, 0xe2, 0x0c, 0xb2, 0xc4, 0x1d, 0x6c, 0x89, 0x3e, 0xd8, - 0x19, 0x15, 0x10, 0xaa, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, 0xba, 0x31, 0x20, 0x00, - 0x00, 0xff, 0xff, 0xfb, 0xe9, 0x74, 0xd6, 0xa2, 0x00, 0x00, 0x00, +var fileDescriptor_ee01f85cc6f297e5 = []byte{ + // 156 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0x4a, 0xce, 0x4b, + 0xd4, 0x07, 0x13, 0x05, 0x89, 0x45, 0x89, 0xb9, 0xc5, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, + 0x12, 0x49, 0x99, 0x25, 0xc9, 0x89, 0x79, 0x79, 0x89, 0xe9, 0x39, 0xf9, 0x49, 0x89, 0x39, 0x7a, + 0x20, 0x15, 0x60, 0x42, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, 0xa8, + 0x57, 0xe2, 0xe3, 0x62, 0x0b, 0x00, 0xeb, 0xb7, 0x62, 0x99, 0xb1, 0x40, 0x9e, 0xc1, 0xc9, 0xf5, + 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, 0xb4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, + 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x9d, 0x32, 0x4b, 0x9c, 0x41, 0x96, 0xb8, 0x83, 0x2d, 0x81, + 0x38, 0xa3, 0x02, 0x42, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x4d, 0x37, 0x06, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x8c, 0x4b, 0x69, 0xde, 0xa7, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/bcna/types/query.pb.go b/x/bcna/types/query.pb.go index f6678b7f..55b0ec8b 100644 --- a/x/bcna/types/query.pb.go +++ b/x/bcna/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/query.proto +// source: bcna/bcna/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_be73ff6631d32de0, []int{0} + return fileDescriptor_54c2980e3b72beb2, []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_be73ff6631d32de0, []int{1} + return fileDescriptor_54c2980e3b72beb2, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *QueryGetBitcannaidRequest) Reset() { *m = QueryGetBitcannaidReq func (m *QueryGetBitcannaidRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetBitcannaidRequest) ProtoMessage() {} func (*QueryGetBitcannaidRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{2} + return fileDescriptor_54c2980e3b72beb2, []int{2} } func (m *QueryGetBitcannaidRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +165,7 @@ func (m *QueryGetBitcannaidResponse) Reset() { *m = QueryGetBitcannaidRe func (m *QueryGetBitcannaidResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetBitcannaidResponse) ProtoMessage() {} func (*QueryGetBitcannaidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{3} + return fileDescriptor_54c2980e3b72beb2, []int{3} } func (m *QueryGetBitcannaidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ func (m *QueryAllBitcannaidRequest) Reset() { *m = QueryAllBitcannaidReq func (m *QueryAllBitcannaidRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBitcannaidRequest) ProtoMessage() {} func (*QueryAllBitcannaidRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{4} + return fileDescriptor_54c2980e3b72beb2, []int{4} } func (m *QueryAllBitcannaidRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +254,7 @@ func (m *QueryAllBitcannaidResponse) Reset() { *m = QueryAllBitcannaidRe func (m *QueryAllBitcannaidResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBitcannaidResponse) ProtoMessage() {} func (*QueryAllBitcannaidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{5} + return fileDescriptor_54c2980e3b72beb2, []int{5} } func (m *QueryAllBitcannaidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -305,7 +305,7 @@ func (m *QueryGetSupplychainRequest) Reset() { *m = QueryGetSupplychainR func (m *QueryGetSupplychainRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetSupplychainRequest) ProtoMessage() {} func (*QueryGetSupplychainRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{6} + return fileDescriptor_54c2980e3b72beb2, []int{6} } func (m *QueryGetSupplychainRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -349,7 +349,7 @@ func (m *QueryGetSupplychainResponse) Reset() { *m = QueryGetSupplychain func (m *QueryGetSupplychainResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetSupplychainResponse) ProtoMessage() {} func (*QueryGetSupplychainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{7} + return fileDescriptor_54c2980e3b72beb2, []int{7} } func (m *QueryGetSupplychainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -393,7 +393,7 @@ func (m *QueryAllSupplychainRequest) Reset() { *m = QueryAllSupplychainR func (m *QueryAllSupplychainRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllSupplychainRequest) ProtoMessage() {} func (*QueryAllSupplychainRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{8} + return fileDescriptor_54c2980e3b72beb2, []int{8} } func (m *QueryAllSupplychainRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -438,7 +438,7 @@ func (m *QueryAllSupplychainResponse) Reset() { *m = QueryAllSupplychain func (m *QueryAllSupplychainResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllSupplychainResponse) ProtoMessage() {} func (*QueryAllSupplychainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_be73ff6631d32de0, []int{9} + return fileDescriptor_54c2980e3b72beb2, []int{9} } func (m *QueryAllSupplychainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,49 +494,49 @@ func init() { proto.RegisterType((*QueryAllSupplychainResponse)(nil), "bitcannaglobal.bcna.bcna.QueryAllSupplychainResponse") } -func init() { proto.RegisterFile("bcna/query.proto", fileDescriptor_be73ff6631d32de0) } +func init() { proto.RegisterFile("bcna/bcna/query.proto", fileDescriptor_54c2980e3b72beb2) } -var fileDescriptor_be73ff6631d32de0 = []byte{ +var fileDescriptor_54c2980e3b72beb2 = []byte{ // 625 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xc7, 0xb3, 0x69, 0xc9, 0x61, 0x2b, 0x2a, 0x58, 0x0a, 0x2a, 0x06, 0x99, 0x68, 0xd5, 0x2f, - 0x9a, 0xd4, 0x56, 0x52, 0xb8, 0x22, 0x35, 0x08, 0x22, 0x21, 0x21, 0x95, 0x20, 0x2e, 0xdc, 0xd6, - 0x8e, 0xe5, 0xac, 0xe4, 0x78, 0xdd, 0xd8, 0x41, 0x44, 0x88, 0x0b, 0x2f, 0x00, 0x12, 0x2f, 0x81, - 0x10, 0x42, 0xe2, 0xc0, 0x3b, 0xf4, 0x58, 0xc4, 0x85, 0x13, 0x42, 0x09, 0x0f, 0x82, 0xbc, 0x3b, - 0xc5, 0x4e, 0x63, 0x2b, 0xee, 0xc7, 0x25, 0x89, 0x26, 0xf3, 0x9f, 0xf9, 0xcd, 0xcc, 0xee, 0x2c, - 0xbe, 0x62, 0xd9, 0x3e, 0x33, 0x0f, 0x86, 0xce, 0x60, 0x64, 0x04, 0x03, 0x11, 0x09, 0xb2, 0x6a, - 0xf1, 0xc8, 0x66, 0xbe, 0xcf, 0x5c, 0x4f, 0x58, 0xcc, 0x33, 0x62, 0x07, 0xf9, 0xa1, 0xad, 0xb8, - 0xc2, 0x15, 0xd2, 0xc9, 0x8c, 0x7f, 0x29, 0x7f, 0xed, 0xb6, 0x2b, 0x84, 0xeb, 0x39, 0x26, 0x0b, - 0xb8, 0xc9, 0x7c, 0x5f, 0x44, 0x2c, 0xe2, 0xc2, 0x0f, 0xe1, 0xdf, 0x6d, 0x5b, 0x84, 0x7d, 0x11, - 0x9a, 0x16, 0x0b, 0x1d, 0x95, 0xc6, 0x7c, 0xd5, 0xb0, 0x9c, 0x88, 0x35, 0xcc, 0x80, 0xb9, 0xdc, - 0x97, 0xce, 0xe0, 0x7b, 0x55, 0xb2, 0x04, 0x6c, 0xc0, 0xfa, 0xc7, 0xf2, 0xeb, 0xd2, 0x74, 0x4c, - 0xc4, 0xbb, 0x60, 0xbe, 0x21, 0xcd, 0xe1, 0x30, 0x08, 0xbc, 0x91, 0xdd, 0x63, 0x1c, 0x22, 0xd0, - 0x15, 0x4c, 0x9e, 0xc5, 0x39, 0xf6, 0x65, 0x8c, 0x8e, 0x73, 0x30, 0x74, 0xc2, 0x88, 0xbe, 0xc0, - 0xd7, 0xa6, 0xac, 0x61, 0x20, 0xfc, 0xd0, 0x21, 0x0f, 0x70, 0x45, 0xe5, 0x5a, 0x45, 0x55, 0xb4, - 0xb5, 0xd4, 0xac, 0x1a, 0x79, 0x95, 0x1b, 0x4a, 0xd9, 0x5a, 0x3c, 0xfc, 0x7d, 0xa7, 0xd4, 0x01, - 0x15, 0xad, 0xe1, 0x9b, 0x32, 0x6c, 0xdb, 0x89, 0x5a, 0xff, 0x01, 0x21, 0x27, 0x59, 0xc6, 0x65, - 0xde, 0x95, 0x81, 0x17, 0x3b, 0x65, 0xde, 0xa5, 0x3d, 0xac, 0x65, 0x39, 0x03, 0xca, 0x13, 0x8c, - 0x13, 0x2b, 0xe0, 0xac, 0xe5, 0xe3, 0x24, 0xbe, 0x80, 0x94, 0x52, 0x53, 0x1b, 0xb0, 0xf6, 0x3c, - 0x6f, 0x16, 0xeb, 0x31, 0xc6, 0x49, 0xdb, 0x21, 0xd1, 0x86, 0xa1, 0x66, 0x64, 0xc4, 0x33, 0x32, - 0xd4, 0x51, 0x80, 0x19, 0x19, 0xfb, 0xcc, 0x75, 0x40, 0xdb, 0x49, 0x29, 0xe9, 0x37, 0x04, 0xf5, - 0x9c, 0xc8, 0x92, 0x53, 0xcf, 0xc2, 0xd9, 0xeb, 0x21, 0xed, 0x29, 0xe4, 0xb2, 0x44, 0xde, 0x9c, - 0x8b, 0xac, 0x40, 0xa6, 0x98, 0xeb, 0xc9, 0x08, 0x9e, 0x27, 0x27, 0x27, 0x6f, 0x60, 0x1e, 0xbe, - 0x95, 0xe9, 0x0d, 0x15, 0x3e, 0xc5, 0x4b, 0x29, 0x33, 0x74, 0x72, 0x3d, 0xbf, 0xc4, 0x94, 0x33, - 0xd4, 0x98, 0xd6, 0xd3, 0x6e, 0xd2, 0xce, 0x0c, 0xb6, 0x8b, 0x9a, 0xda, 0x77, 0x04, 0x45, 0x9d, - 0x4c, 0x93, 0x57, 0xd4, 0xc2, 0x79, 0x8a, 0xba, 0xb0, 0xc9, 0x35, 0x7f, 0x54, 0xf0, 0x25, 0xc9, - 0x4d, 0xde, 0x23, 0x5c, 0x51, 0x97, 0x91, 0xd4, 0xf3, 0xb9, 0x66, 0x77, 0x80, 0xb6, 0x53, 0xd0, - 0x5b, 0x65, 0xa7, 0x5b, 0xef, 0x7e, 0xfe, 0xfd, 0x58, 0xa6, 0xa4, 0x6a, 0xb6, 0x78, 0xf4, 0x30, - 0x96, 0xb5, 0xa5, 0xcc, 0x54, 0xfb, 0x28, 0xd9, 0x53, 0xe4, 0x33, 0x4a, 0x9f, 0x75, 0xb2, 0x3b, - 0x27, 0x4f, 0xd6, 0xb2, 0xd0, 0xee, 0x9d, 0x4e, 0x04, 0x8c, 0x0d, 0xc9, 0x58, 0x23, 0x77, 0xf3, - 0x19, 0x93, 0xc5, 0x69, 0xbe, 0xe1, 0xdd, 0xb7, 0xe4, 0x13, 0xc2, 0x97, 0x93, 0x48, 0x7b, 0x9e, - 0x37, 0x97, 0x37, 0x6b, 0x8b, 0xcc, 0xe5, 0xcd, 0x5c, 0x0a, 0xb4, 0x2e, 0x79, 0x37, 0xc8, 0x5a, - 0x11, 0x5e, 0xf2, 0x15, 0x4d, 0x1d, 0x46, 0x52, 0xa0, 0x47, 0xb3, 0x37, 0x47, 0xbb, 0x7f, 0x4a, - 0x15, 0xa0, 0x36, 0x25, 0x6a, 0x9d, 0x6c, 0xe7, 0xa3, 0xa6, 0x1e, 0x1f, 0xd5, 0xdb, 0x2f, 0x08, - 0x2f, 0xa7, 0x62, 0xc5, 0xcd, 0x2d, 0xd0, 0xa7, 0x33, 0x30, 0x67, 0x5f, 0x5e, 0xba, 0x23, 0x99, - 0x37, 0xc9, 0x7a, 0x21, 0xe6, 0xd6, 0xa3, 0xc3, 0xb1, 0x8e, 0x8e, 0xc6, 0x3a, 0xfa, 0x33, 0xd6, - 0xd1, 0x87, 0x89, 0x5e, 0x3a, 0x9a, 0xe8, 0xa5, 0x5f, 0x13, 0xbd, 0xf4, 0xb2, 0xe6, 0xf2, 0xa8, - 0x37, 0xb4, 0x0c, 0x5b, 0xf4, 0x33, 0x43, 0xbd, 0x56, 0x5f, 0xd1, 0x28, 0x70, 0x42, 0xab, 0x22, - 0x1f, 0xde, 0xdd, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xce, 0x62, 0x98, 0x0f, 0x48, 0x08, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcf, 0x6b, 0x13, 0x41, + 0x14, 0xc7, 0x33, 0x69, 0xcd, 0x61, 0x8a, 0x3d, 0x8c, 0x55, 0xea, 0x56, 0xd6, 0x30, 0xf4, 0x97, + 0x4d, 0xba, 0x4b, 0x52, 0xbd, 0x0a, 0x8d, 0x68, 0x40, 0x10, 0x6a, 0xc4, 0x8b, 0xb7, 0xd9, 0xcd, + 0xb2, 0x19, 0xd8, 0xec, 0x6c, 0xb3, 0x13, 0x31, 0x88, 0x17, 0xff, 0x01, 0x05, 0xff, 0x09, 0x11, + 0x11, 0x3c, 0xf8, 0x3f, 0xf4, 0x58, 0xf1, 0xe2, 0x49, 0x24, 0xf1, 0x0f, 0x91, 0x9d, 0x99, 0x3a, + 0x9b, 0x64, 0x97, 0x6c, 0x6b, 0x2f, 0x9b, 0x30, 0xf3, 0xbe, 0xef, 0x7d, 0xde, 0x7b, 0x33, 0x6f, + 0xe0, 0x75, 0xc7, 0x0d, 0x89, 0x2d, 0x3e, 0xc7, 0x43, 0x6f, 0x30, 0xb2, 0xa2, 0x01, 0xe3, 0x0c, + 0xad, 0x3b, 0x94, 0xbb, 0x24, 0x0c, 0x89, 0x1f, 0x30, 0x87, 0x04, 0x56, 0x62, 0x20, 0x3e, 0xc6, + 0x9a, 0xcf, 0x7c, 0x26, 0x8c, 0xec, 0xe4, 0x9f, 0xb4, 0x37, 0x6e, 0xf9, 0x8c, 0xf9, 0x81, 0x67, + 0x93, 0x88, 0xda, 0x24, 0x0c, 0x19, 0x27, 0x9c, 0xb2, 0x30, 0x56, 0xbb, 0x7b, 0x2e, 0x8b, 0xfb, + 0x2c, 0xb6, 0x1d, 0x12, 0x7b, 0x32, 0x8c, 0xfd, 0xb2, 0xe1, 0x78, 0x9c, 0x34, 0xec, 0x88, 0xf8, + 0x34, 0x14, 0xc6, 0xca, 0xf6, 0x86, 0x06, 0x8a, 0xc8, 0x80, 0xf4, 0xcf, 0x7c, 0x18, 0x7a, 0xfd, + 0x8c, 0x8d, 0x76, 0xd5, 0xde, 0x86, 0xde, 0x8b, 0x87, 0x51, 0x14, 0x8c, 0xdc, 0x1e, 0xa1, 0xca, + 0x21, 0x5e, 0x83, 0xe8, 0x69, 0x12, 0xf2, 0x48, 0x78, 0xeb, 0x78, 0xc7, 0x43, 0x2f, 0xe6, 0xf8, + 0x39, 0xbc, 0x36, 0xb5, 0x1a, 0x47, 0x2c, 0x8c, 0x3d, 0x74, 0x1f, 0x56, 0x64, 0xd4, 0x75, 0x50, + 0x05, 0xbb, 0x2b, 0xcd, 0xaa, 0x95, 0x57, 0x08, 0x4b, 0x2a, 0x5b, 0xcb, 0x27, 0xbf, 0x6e, 0x97, + 0x3a, 0x4a, 0x85, 0x6b, 0xf0, 0xa6, 0x70, 0xdb, 0xf6, 0x78, 0xeb, 0x1f, 0xa5, 0x8a, 0x89, 0x56, + 0x61, 0x99, 0x76, 0x85, 0xe3, 0xe5, 0x4e, 0x99, 0x76, 0x71, 0x0f, 0x1a, 0x59, 0xc6, 0x0a, 0xe5, + 0x31, 0x84, 0x7a, 0x55, 0xe1, 0x6c, 0xe6, 0xe3, 0x68, 0x5b, 0x85, 0x94, 0x52, 0x63, 0x57, 0x61, + 0x1d, 0x06, 0xc1, 0x3c, 0xd6, 0x23, 0x08, 0x75, 0x17, 0x54, 0xa0, 0x6d, 0x4b, 0xb6, 0xcc, 0x4a, + 0x5a, 0x66, 0xc9, 0x93, 0xa1, 0x5a, 0x66, 0x1d, 0x11, 0xdf, 0x53, 0xda, 0x4e, 0x4a, 0x89, 0xbf, + 0x02, 0x95, 0xcf, 0x4c, 0x94, 0x9c, 0x7c, 0x96, 0x2e, 0x9e, 0x0f, 0x6a, 0x4f, 0x21, 0x97, 0x05, + 0xf2, 0xce, 0x42, 0x64, 0x09, 0x32, 0xc5, 0x5c, 0xd7, 0x2d, 0x78, 0xa6, 0x4f, 0x4e, 0x5e, 0xc3, + 0x02, 0xb8, 0x91, 0x69, 0xad, 0x32, 0x7c, 0x02, 0x57, 0x52, 0xcb, 0xaa, 0x92, 0x5b, 0xf9, 0x29, + 0xa6, 0x8c, 0x55, 0x8e, 0x69, 0x3d, 0xee, 0xea, 0x72, 0x66, 0xb0, 0x5d, 0x56, 0xd7, 0xbe, 0x01, + 0x95, 0xd4, 0x6c, 0x98, 0xbc, 0xa4, 0x96, 0xfe, 0x27, 0xa9, 0x4b, 0xeb, 0x5c, 0xf3, 0x7b, 0x05, + 0x5e, 0x11, 0xdc, 0xe8, 0x1d, 0x80, 0x15, 0x79, 0x19, 0x51, 0x3d, 0x9f, 0x6b, 0x7e, 0x06, 0x18, + 0xfb, 0x05, 0xad, 0x65, 0x74, 0xbc, 0xfb, 0xf6, 0xc7, 0x9f, 0x0f, 0x65, 0x8c, 0xaa, 0x76, 0x8b, + 0xf2, 0x07, 0x89, 0xac, 0x2d, 0x64, 0xf6, 0xec, 0xc4, 0x42, 0x9f, 0x40, 0xfa, 0xac, 0xa3, 0x83, + 0x05, 0x71, 0xb2, 0x86, 0x85, 0x71, 0xf7, 0x7c, 0x22, 0xc5, 0xd8, 0x10, 0x8c, 0x35, 0x74, 0x27, + 0x9f, 0x51, 0x4f, 0x4f, 0xfb, 0x35, 0xed, 0xbe, 0x41, 0x1f, 0x01, 0xbc, 0xaa, 0x3d, 0x1d, 0x06, + 0xc1, 0x42, 0xde, 0xac, 0x29, 0xb2, 0x90, 0x37, 0x73, 0x28, 0xe0, 0xba, 0xe0, 0xdd, 0x46, 0x9b, + 0x45, 0x78, 0xd1, 0x17, 0x30, 0x75, 0x18, 0x51, 0x81, 0x1a, 0xcd, 0xdf, 0x1c, 0xe3, 0xde, 0x39, + 0x55, 0x0a, 0xb5, 0x29, 0x50, 0xeb, 0x68, 0x2f, 0x1f, 0x35, 0xf5, 0xf8, 0xc8, 0xda, 0x7e, 0x06, + 0x70, 0x35, 0xe5, 0x2b, 0x29, 0x6e, 0x81, 0x3a, 0x5d, 0x80, 0x39, 0xfb, 0xf2, 0xe2, 0x7d, 0xc1, + 0xbc, 0x83, 0xb6, 0x0a, 0x31, 0xb7, 0x1e, 0x9e, 0x8c, 0x4d, 0x70, 0x3a, 0x36, 0xc1, 0xef, 0xb1, + 0x09, 0xde, 0x4f, 0xcc, 0xd2, 0xe9, 0xc4, 0x2c, 0xfd, 0x9c, 0x98, 0xa5, 0x17, 0x35, 0x9f, 0xf2, + 0xde, 0xd0, 0xb1, 0x5c, 0xd6, 0xcf, 0x74, 0xf5, 0x4a, 0xfe, 0xf0, 0x51, 0xe4, 0xc5, 0x4e, 0x45, + 0x3c, 0xbc, 0x07, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xe0, 0xff, 0xd4, 0xed, 0x5c, 0x08, 0x00, 0x00, } @@ -771,7 +771,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "bcna/query.proto", + Metadata: "bcna/bcna/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/bcna/types/query.pb.gw.go b/x/bcna/types/query.pb.gw.go index 0ed4a917..0227a7d7 100644 --- a/x/bcna/types/query.pb.gw.go +++ b/x/bcna/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: bcna/query.proto +// source: bcna/bcna/query.proto /* Package types is a reverse proxy. diff --git a/x/bcna/types/supplychain.pb.go b/x/bcna/types/supplychain.pb.go index 230b263a..b4256830 100644 --- a/x/bcna/types/supplychain.pb.go +++ b/x/bcna/types/supplychain.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/supplychain.proto +// source: bcna/bcna/supplychain.proto package types @@ -35,7 +35,7 @@ func (m *Supplychain) Reset() { *m = Supplychain{} } func (m *Supplychain) String() string { return proto.CompactTextString(m) } func (*Supplychain) ProtoMessage() {} func (*Supplychain) Descriptor() ([]byte, []int) { - return fileDescriptor_b6988f475c438d71, []int{0} + return fileDescriptor_cddd6e811dc9a09c, []int{0} } func (m *Supplychain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,25 +110,25 @@ func init() { proto.RegisterType((*Supplychain)(nil), "bitcannaglobal.bcna.bcna.Supplychain") } -func init() { proto.RegisterFile("bcna/supplychain.proto", fileDescriptor_b6988f475c438d71) } +func init() { proto.RegisterFile("bcna/bcna/supplychain.proto", fileDescriptor_cddd6e811dc9a09c) } -var fileDescriptor_b6988f475c438d71 = []byte{ - // 237 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0x4a, 0xce, 0x4b, - 0xd4, 0x2f, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0x4c, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x92, 0x48, 0xca, 0x2c, 0x49, 0x4e, 0xcc, 0xcb, 0x4b, 0x4c, 0xcf, 0xc9, 0x4f, - 0x4a, 0xcc, 0xd1, 0x03, 0x29, 0x03, 0x13, 0x4a, 0xcb, 0x19, 0xb9, 0xb8, 0x83, 0x11, 0xea, 0x85, - 0xf8, 0xb8, 0x98, 0x32, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, - 0x24, 0xb8, 0xd8, 0x0b, 0x8a, 0xf2, 0x53, 0x4a, 0x93, 0x4b, 0x24, 0x98, 0x14, 0x18, 0x35, 0x38, - 0x83, 0x60, 0x5c, 0x21, 0x21, 0x2e, 0x96, 0xcc, 0xbc, 0xb4, 0x7c, 0x09, 0x66, 0xb0, 0x30, 0x98, - 0x2d, 0x24, 0xc7, 0xc5, 0x05, 0xb1, 0x1c, 0x2c, 0xc3, 0x02, 0x96, 0x41, 0x12, 0x11, 0x52, 0xe0, - 0xe2, 0x86, 0xf0, 0x52, 0x2b, 0x4a, 0x8a, 0x12, 0x25, 0x58, 0xc1, 0x0a, 0x90, 0x85, 0x40, 0xf6, - 0x25, 0x17, 0xa5, 0x26, 0x96, 0xe4, 0x17, 0x49, 0xb0, 0x41, 0xec, 0x83, 0x72, 0x9d, 0x5c, 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, 0x3b, 0x3d, 0xb3, 0x24, 0xa3, 0x34, - 0x49, 0x2f, 0x39, 0x3f, 0x57, 0xdf, 0x29, 0xb3, 0xc4, 0x19, 0xe4, 0x51, 0x77, 0xb0, 0x47, 0xf5, - 0xc1, 0xe1, 0x51, 0x01, 0xa1, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x21, 0x62, 0x0c, - 0x08, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x6d, 0x15, 0xc9, 0x2b, 0x01, 0x00, 0x00, +var fileDescriptor_cddd6e811dc9a09c = []byte{ + // 238 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0x4a, 0xce, 0x4b, + 0xd4, 0x07, 0x13, 0xc5, 0xa5, 0x05, 0x05, 0x39, 0x95, 0xc9, 0x19, 0x89, 0x99, 0x79, 0x7a, 0x05, + 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x12, 0x49, 0x99, 0x25, 0xc9, 0x89, 0x79, 0x79, 0x89, 0xe9, 0x39, + 0xf9, 0x49, 0x89, 0x39, 0x7a, 0x20, 0x65, 0x60, 0x42, 0x69, 0x39, 0x23, 0x17, 0x77, 0x30, 0x42, + 0xbd, 0x10, 0x1f, 0x17, 0x53, 0x66, 0x8a, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x53, 0x66, + 0x8a, 0x90, 0x04, 0x17, 0x7b, 0x41, 0x51, 0x7e, 0x4a, 0x69, 0x72, 0x89, 0x04, 0x93, 0x02, 0xa3, + 0x06, 0x67, 0x10, 0x8c, 0x2b, 0x24, 0xc4, 0xc5, 0x92, 0x99, 0x97, 0x96, 0x2f, 0xc1, 0x0c, 0x16, + 0x06, 0xb3, 0x85, 0xe4, 0xb8, 0xb8, 0x20, 0x96, 0x83, 0x65, 0x58, 0xc0, 0x32, 0x48, 0x22, 0x42, + 0x0a, 0x5c, 0xdc, 0x10, 0x5e, 0x6a, 0x45, 0x49, 0x51, 0xa2, 0x04, 0x2b, 0x58, 0x01, 0xb2, 0x10, + 0xc8, 0xbe, 0xe4, 0xa2, 0xd4, 0xc4, 0x92, 0xfc, 0x22, 0x09, 0x36, 0x88, 0x7d, 0x50, 0xae, 0x93, + 0xeb, 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, 0x69, 0xa7, 0x67, 0x96, 0x64, + 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x3b, 0x65, 0x96, 0x38, 0x83, 0x3c, 0xea, 0x0e, 0xf6, + 0x28, 0x24, 0x3c, 0x2a, 0x20, 0x54, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0x44, 0x8c, + 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xef, 0x88, 0xdb, 0x8b, 0x30, 0x01, 0x00, 0x00, } func (m *Supplychain) Marshal() (dAtA []byte, err error) { diff --git a/x/bcna/types/tx.pb.go b/x/bcna/types/tx.pb.go index c3f89c31..5ff1dc41 100644 --- a/x/bcna/types/tx.pb.go +++ b/x/bcna/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: bcna/tx.proto +// source: bcna/bcna/tx.proto package types @@ -37,7 +37,7 @@ func (m *MsgCreateBitcannaid) Reset() { *m = MsgCreateBitcannaid{} } func (m *MsgCreateBitcannaid) String() string { return proto.CompactTextString(m) } func (*MsgCreateBitcannaid) ProtoMessage() {} func (*MsgCreateBitcannaid) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{0} + return fileDescriptor_b6fed32b8bb1da5f, []int{0} } func (m *MsgCreateBitcannaid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -95,7 +95,7 @@ func (m *MsgCreateBitcannaidResponse) Reset() { *m = MsgCreateBitcannaid func (m *MsgCreateBitcannaidResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateBitcannaidResponse) ProtoMessage() {} func (*MsgCreateBitcannaidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{1} + return fileDescriptor_b6fed32b8bb1da5f, []int{1} } func (m *MsgCreateBitcannaidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -142,7 +142,7 @@ func (m *MsgUpdateBitcannaid) Reset() { *m = MsgUpdateBitcannaid{} } func (m *MsgUpdateBitcannaid) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBitcannaid) ProtoMessage() {} func (*MsgUpdateBitcannaid) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{2} + return fileDescriptor_b6fed32b8bb1da5f, []int{2} } func (m *MsgUpdateBitcannaid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -206,7 +206,7 @@ func (m *MsgUpdateBitcannaidResponse) Reset() { *m = MsgUpdateBitcannaid func (m *MsgUpdateBitcannaidResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBitcannaidResponse) ProtoMessage() {} func (*MsgUpdateBitcannaidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{3} + return fileDescriptor_b6fed32b8bb1da5f, []int{3} } func (m *MsgUpdateBitcannaidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -244,7 +244,7 @@ func (m *MsgDeleteBitcannaid) Reset() { *m = MsgDeleteBitcannaid{} } func (m *MsgDeleteBitcannaid) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBitcannaid) ProtoMessage() {} func (*MsgDeleteBitcannaid) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{4} + return fileDescriptor_b6fed32b8bb1da5f, []int{4} } func (m *MsgDeleteBitcannaid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -294,7 +294,7 @@ func (m *MsgDeleteBitcannaidResponse) Reset() { *m = MsgDeleteBitcannaid func (m *MsgDeleteBitcannaidResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBitcannaidResponse) ProtoMessage() {} func (*MsgDeleteBitcannaidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{5} + return fileDescriptor_b6fed32b8bb1da5f, []int{5} } func (m *MsgDeleteBitcannaidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *MsgCreateSupplychain) Reset() { *m = MsgCreateSupplychain{} } func (m *MsgCreateSupplychain) String() string { return proto.CompactTextString(m) } func (*MsgCreateSupplychain) ProtoMessage() {} func (*MsgCreateSupplychain) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{6} + return fileDescriptor_b6fed32b8bb1da5f, []int{6} } func (m *MsgCreateSupplychain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -407,7 +407,7 @@ func (m *MsgCreateSupplychainResponse) Reset() { *m = MsgCreateSupplycha func (m *MsgCreateSupplychainResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateSupplychainResponse) ProtoMessage() {} func (*MsgCreateSupplychainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{7} + return fileDescriptor_b6fed32b8bb1da5f, []int{7} } func (m *MsgCreateSupplychainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -456,7 +456,7 @@ func (m *MsgUpdateSupplychain) Reset() { *m = MsgUpdateSupplychain{} } func (m *MsgUpdateSupplychain) String() string { return proto.CompactTextString(m) } func (*MsgUpdateSupplychain) ProtoMessage() {} func (*MsgUpdateSupplychain) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{8} + return fileDescriptor_b6fed32b8bb1da5f, []int{8} } func (m *MsgUpdateSupplychain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -534,7 +534,7 @@ func (m *MsgUpdateSupplychainResponse) Reset() { *m = MsgUpdateSupplycha func (m *MsgUpdateSupplychainResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateSupplychainResponse) ProtoMessage() {} func (*MsgUpdateSupplychainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{9} + return fileDescriptor_b6fed32b8bb1da5f, []int{9} } func (m *MsgUpdateSupplychainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -572,7 +572,7 @@ func (m *MsgDeleteSupplychain) Reset() { *m = MsgDeleteSupplychain{} } func (m *MsgDeleteSupplychain) String() string { return proto.CompactTextString(m) } func (*MsgDeleteSupplychain) ProtoMessage() {} func (*MsgDeleteSupplychain) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{10} + return fileDescriptor_b6fed32b8bb1da5f, []int{10} } func (m *MsgDeleteSupplychain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -622,7 +622,7 @@ func (m *MsgDeleteSupplychainResponse) Reset() { *m = MsgDeleteSupplycha func (m *MsgDeleteSupplychainResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteSupplychainResponse) ProtoMessage() {} func (*MsgDeleteSupplychainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12d2bc8ae8552a21, []int{11} + return fileDescriptor_b6fed32b8bb1da5f, []int{11} } func (m *MsgDeleteSupplychainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -666,42 +666,42 @@ func init() { proto.RegisterType((*MsgDeleteSupplychainResponse)(nil), "bitcannaglobal.bcna.bcna.MsgDeleteSupplychainResponse") } -func init() { proto.RegisterFile("bcna/tx.proto", fileDescriptor_12d2bc8ae8552a21) } +func init() { proto.RegisterFile("bcna/bcna/tx.proto", fileDescriptor_b6fed32b8bb1da5f) } -var fileDescriptor_12d2bc8ae8552a21 = []byte{ +var fileDescriptor_b6fed32b8bb1da5f = []byte{ // 511 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x8e, 0xf3, 0x57, 0x31, 0x08, 0x54, 0x16, 0xa8, 0xac, 0x00, 0x56, 0xe5, 0x13, 0x12, 0xea, - 0x46, 0x02, 0xc1, 0x15, 0x94, 0x82, 0x38, 0xf5, 0x12, 0xc4, 0x85, 0xdb, 0xda, 0x5e, 0xd2, 0x95, - 0x82, 0x6d, 0xbc, 0x1b, 0xc9, 0x15, 0x2f, 0xc1, 0x23, 0xf0, 0x08, 0x3c, 0x06, 0xc7, 0x1e, 0x39, - 0xa2, 0xe4, 0xc6, 0x53, 0x20, 0xcf, 0xda, 0xc6, 0xf5, 0x66, 0x13, 0xb7, 0x97, 0x36, 0x33, 0x3b, - 0x3b, 0xdf, 0xf7, 0xcd, 0xec, 0x27, 0xc3, 0x9d, 0x20, 0x8c, 0xd9, 0x54, 0xe5, 0x34, 0xcd, 0x12, - 0x95, 0x10, 0x37, 0x10, 0x2a, 0x64, 0x71, 0xcc, 0x16, 0xcb, 0x24, 0x60, 0x4b, 0x5a, 0x9c, 0xe2, - 0x9f, 0xc9, 0x43, 0x2c, 0xac, 0x8e, 0x45, 0xa4, 0x2f, 0x4c, 0x8e, 0x30, 0x2d, 0x57, 0x69, 0xba, - 0xbc, 0x08, 0xcf, 0x99, 0x88, 0x75, 0xde, 0x67, 0x70, 0xff, 0x4c, 0x2e, 0x4e, 0x33, 0xce, 0x14, - 0x9f, 0xd5, 0x97, 0x88, 0x0b, 0x07, 0x61, 0x91, 0x4b, 0x32, 0xd7, 0x39, 0x76, 0x9e, 0xde, 0x9a, - 0x57, 0x21, 0x39, 0x82, 0x71, 0xd1, 0x4a, 0x44, 0x6e, 0x1f, 0x0f, 0xca, 0xa8, 0xb8, 0xc1, 0xa2, - 0x28, 0xe3, 0x52, 0xba, 0x03, 0x7d, 0xa3, 0x0c, 0xfd, 0x13, 0x78, 0xb4, 0x05, 0x62, 0xce, 0x65, - 0x9a, 0xc4, 0x92, 0x93, 0xbb, 0xd0, 0x17, 0x11, 0xa2, 0x0c, 0xe7, 0x7d, 0x11, 0xf9, 0x5f, 0x91, - 0xd1, 0xc7, 0x34, 0xea, 0xca, 0x48, 0x37, 0xe8, 0x57, 0x0d, 0x1a, 0x0c, 0x07, 0x36, 0x86, 0xc3, - 0xab, 0x0c, 0x9f, 0x20, 0xc3, 0x36, 0x64, 0xc5, 0xd0, 0x7f, 0x8d, 0x8c, 0xde, 0xf2, 0x25, 0xbf, - 0x19, 0xa3, 0xb2, 0x7f, 0xbb, 0x41, 0xdd, 0xff, 0x87, 0x03, 0x0f, 0xea, 0x09, 0x7d, 0xf8, 0xbf, - 0xa2, 0x1d, 0x08, 0x2e, 0x1c, 0xa4, 0x59, 0x12, 0xad, 0x42, 0x55, 0xae, 0xa1, 0x0a, 0x09, 0x81, - 0xa1, 0x88, 0x3f, 0x27, 0xa5, 0x76, 0xfc, 0x4d, 0x3c, 0x00, 0xbd, 0x79, 0x3c, 0xd1, 0xe2, 0x1b, - 0x19, 0x72, 0x0c, 0xb7, 0x75, 0xc4, 0x73, 0x95, 0x31, 0x77, 0x84, 0x05, 0xcd, 0x94, 0x4f, 0xe1, - 0xf1, 0x36, 0x86, 0xd6, 0x25, 0xfe, 0xd4, 0x92, 0xf4, 0x48, 0xbb, 0x49, 0x6a, 0xaf, 0xb1, 0x21, - 0x71, 0xb0, 0x5d, 0xe2, 0xd0, 0x2a, 0x71, 0xb4, 0x4f, 0xe2, 0xd8, 0x94, 0xe8, 0xa1, 0x44, 0x83, - 0x71, 0xbd, 0xa5, 0x37, 0xa8, 0x48, 0x2f, 0xf1, 0x46, 0x8a, 0x4a, 0x04, 0xa3, 0x43, 0x85, 0xf0, - 0xfc, 0xef, 0x08, 0x06, 0x67, 0x72, 0x41, 0x72, 0x38, 0x34, 0x0c, 0x79, 0x42, 0x6d, 0x8e, 0xa7, - 0x5b, 0xcc, 0x35, 0x79, 0x79, 0xad, 0xf2, 0x7a, 0x8d, 0x39, 0x1c, 0x1a, 0xc6, 0xdb, 0x8d, 0xdc, - 0x2e, 0xdf, 0x83, 0x6c, 0xf3, 0x58, 0x81, 0x6c, 0x18, 0x6c, 0x37, 0x72, 0xbb, 0x7c, 0x0f, 0xb2, - 0xcd, 0x7d, 0xe4, 0x1b, 0xdc, 0x33, 0x9d, 0x47, 0x3b, 0xcc, 0xaf, 0x51, 0x3f, 0x79, 0x75, 0xbd, - 0xfa, 0x26, 0xb8, 0xe9, 0x11, 0xda, 0x61, 0x84, 0xdd, 0xc1, 0xad, 0x2f, 0xba, 0x00, 0x37, 0x9f, - 0x33, 0xed, 0x30, 0xc5, 0xee, 0xe0, 0xd6, 0xc7, 0x3e, 0x7b, 0xf7, 0x6b, 0xed, 0x39, 0x97, 0x6b, - 0xcf, 0xf9, 0xb3, 0xf6, 0x9c, 0xef, 0x1b, 0xaf, 0x77, 0xb9, 0xf1, 0x7a, 0xbf, 0x37, 0x5e, 0xef, - 0xd3, 0xb3, 0x85, 0x50, 0xe7, 0xab, 0x80, 0x86, 0xc9, 0x97, 0xe9, 0x4c, 0xa8, 0xd3, 0xa2, 0xf7, - 0x7b, 0xec, 0x3d, 0xc5, 0x8f, 0x58, 0xae, 0xff, 0xa9, 0x8b, 0x94, 0xcb, 0x60, 0x8c, 0x9f, 0xb1, - 0x17, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x44, 0x0d, 0x1c, 0x20, 0x07, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xcd, 0x8e, 0xd3, 0x30, + 0x10, 0x6e, 0xfa, 0xb7, 0x62, 0x90, 0xd0, 0x62, 0x10, 0x8a, 0xb2, 0x10, 0xad, 0x72, 0x42, 0x42, + 0xeb, 0x95, 0x40, 0x70, 0x05, 0x75, 0x41, 0x9c, 0xf6, 0x52, 0xc4, 0x85, 0x9b, 0x93, 0x98, 0xae, + 0xa5, 0x12, 0x87, 0xd8, 0x95, 0xb2, 0xe2, 0x25, 0x78, 0x04, 0x1e, 0x81, 0xc7, 0xe0, 0xb8, 0x47, + 0x8e, 0xa8, 0xbd, 0xf1, 0x14, 0x28, 0x76, 0x92, 0x86, 0x38, 0x6e, 0xb3, 0xbd, 0x44, 0xb1, 0x67, + 0x3c, 0xdf, 0xf7, 0xcd, 0xf8, 0x93, 0x01, 0x85, 0x51, 0x42, 0xce, 0xd5, 0x47, 0xe6, 0x38, 0xcd, + 0xb8, 0xe4, 0xc8, 0x0d, 0x99, 0x8c, 0x48, 0x92, 0x90, 0xc5, 0x92, 0x87, 0x64, 0x89, 0x8b, 0xa8, + 0xfa, 0x78, 0xde, 0x36, 0xbb, 0xca, 0x61, 0xb1, 0x3e, 0xe5, 0x9d, 0x6c, 0x63, 0x62, 0x95, 0xa6, + 0xcb, 0xeb, 0xe8, 0x8a, 0xb0, 0x44, 0x07, 0x03, 0x02, 0x0f, 0x2e, 0xc5, 0xe2, 0x22, 0xa3, 0x44, + 0xd2, 0x59, 0x7d, 0x12, 0xb9, 0x70, 0x14, 0x15, 0x7b, 0x3c, 0x73, 0x9d, 0x53, 0xe7, 0xe9, 0x9d, + 0x79, 0xb5, 0x44, 0x8f, 0x60, 0x5a, 0x94, 0x62, 0xb1, 0x3b, 0x54, 0x81, 0x72, 0x55, 0x9c, 0x20, + 0x71, 0x9c, 0x51, 0x21, 0xdc, 0x91, 0x3e, 0x51, 0x2e, 0x83, 0x33, 0x38, 0xe9, 0x80, 0x98, 0x53, + 0x91, 0xf2, 0x44, 0x50, 0x74, 0x0f, 0x86, 0x2c, 0x56, 0x28, 0xe3, 0xf9, 0x90, 0xc5, 0xc1, 0x57, + 0xc5, 0xe8, 0x63, 0x1a, 0xf7, 0x65, 0xa4, 0x0b, 0x0c, 0xab, 0x02, 0x0d, 0x86, 0x23, 0x1b, 0xc3, + 0xf1, 0xff, 0x0c, 0x9f, 0x28, 0x86, 0x6d, 0xc8, 0x8a, 0x61, 0xf0, 0x5a, 0x31, 0x7a, 0x4b, 0x97, + 0xf4, 0x30, 0x46, 0x65, 0xfd, 0x76, 0x81, 0xba, 0xfe, 0x0f, 0x07, 0x1e, 0xd6, 0x1d, 0xfa, 0xb0, + 0x1d, 0xd1, 0x0e, 0x04, 0x17, 0x8e, 0xd2, 0x8c, 0xc7, 0xab, 0x48, 0x96, 0x63, 0xa8, 0x96, 0x08, + 0xc1, 0x98, 0x25, 0x9f, 0x79, 0xa9, 0x5d, 0xfd, 0x23, 0x1f, 0x40, 0x4f, 0x5e, 0x45, 0xb4, 0xf8, + 0xc6, 0x0e, 0x3a, 0x85, 0xbb, 0x7a, 0x45, 0x73, 0x99, 0x11, 0x77, 0xa2, 0x12, 0x9a, 0x5b, 0x01, + 0x86, 0xc7, 0x5d, 0x0c, 0xad, 0x43, 0xfc, 0xa9, 0x25, 0xe9, 0x96, 0xf6, 0x93, 0xd4, 0x1e, 0x63, + 0x43, 0xe2, 0xa8, 0x5b, 0xe2, 0xd8, 0x2a, 0x71, 0xb2, 0x4f, 0xe2, 0xd4, 0x94, 0xe8, 0x2b, 0x89, + 0x06, 0xe3, 0x7a, 0x4a, 0x6f, 0x94, 0x22, 0x3d, 0xc4, 0x83, 0x14, 0x95, 0x08, 0x46, 0x85, 0x0a, + 0xe1, 0xf9, 0xdf, 0x09, 0x8c, 0x2e, 0xc5, 0x02, 0xe5, 0x70, 0x6c, 0x18, 0xf2, 0x0c, 0xdb, 0xbc, + 0x8f, 0x3b, 0xcc, 0xe5, 0xbd, 0xbc, 0x55, 0x7a, 0x3d, 0xc6, 0x1c, 0x8e, 0x0d, 0xe3, 0xed, 0x46, + 0x6e, 0xa7, 0xef, 0x41, 0xb6, 0x79, 0xac, 0x40, 0x36, 0x0c, 0xb6, 0x1b, 0xb9, 0x9d, 0xbe, 0x07, + 0xd9, 0xe6, 0x3e, 0xf4, 0x0d, 0xee, 0x9b, 0xce, 0xc3, 0x3d, 0xfa, 0xd7, 0xc8, 0xf7, 0x5e, 0xdd, + 0x2e, 0xbf, 0x09, 0x6e, 0x7a, 0x04, 0xf7, 0x68, 0x61, 0x7f, 0x70, 0xeb, 0x8d, 0x2e, 0xc0, 0xcd, + 0xeb, 0x8c, 0x7b, 0x74, 0xb1, 0x3f, 0xb8, 0xf5, 0xb2, 0xcf, 0xde, 0xfd, 0x5a, 0xfb, 0xce, 0xcd, + 0xda, 0x77, 0xfe, 0xac, 0x7d, 0xe7, 0xfb, 0xc6, 0x1f, 0xdc, 0x6c, 0xfc, 0xc1, 0xef, 0x8d, 0x3f, + 0xf8, 0xf4, 0x6c, 0xc1, 0xe4, 0xd5, 0x2a, 0xc4, 0x11, 0xff, 0x72, 0x3e, 0x63, 0xf2, 0xa2, 0xa8, + 0xfd, 0x5e, 0xd5, 0xd6, 0x8f, 0x58, 0x5e, 0xbe, 0x8a, 0xd7, 0x29, 0x15, 0xe1, 0x54, 0x3d, 0x63, + 0x2f, 0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0x20, 0xbe, 0x9d, 0x8f, 0x2f, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -961,7 +961,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "bcna/tx.proto", + Metadata: "bcna/bcna/tx.proto", } func (m *MsgCreateBitcannaid) Marshal() (dAtA []byte, err error) {