From efdc39b67ac7fd88d6e23384d5a7e852dd911a81 Mon Sep 17 00:00:00 2001 From: John Letey Date: Mon, 23 Oct 2023 13:40:45 +0200 Subject: [PATCH] fix: align with protobuf standards --- proto/buf.yaml | 4 - .../fiattokenfactory/v1}/blacklisted.proto | 5 +- .../fiattokenfactory/v1}/blacklister.proto | 3 +- .../circle/fiattokenfactory/v1/genesis.proto | 33 ++ .../fiattokenfactory/v1}/master_minter.proto | 3 +- .../v1}/minter_controller.proto | 3 +- .../fiattokenfactory/v1}/minters.proto | 3 +- .../fiattokenfactory/v1}/minting_denom.proto | 3 +- .../fiattokenfactory/v1}/owner.proto | 3 +- .../fiattokenfactory/v1}/params.proto | 3 +- .../fiattokenfactory/v1}/paused.proto | 3 +- .../fiattokenfactory/v1}/pauser.proto | 3 +- .../fiattokenfactory/v1}/query.proto | 61 ++-- .../fiattokenfactory/v1}/tx.proto | 3 +- proto/fiattokenfactory/genesis.proto | 32 -- x/fiattokenfactory/types/blacklisted.pb.go | 37 +- x/fiattokenfactory/types/blacklister.pb.go | 34 +- x/fiattokenfactory/types/genesis.pb.go | 84 ++--- x/fiattokenfactory/types/master_minter.pb.go | 35 +- .../types/minter_controller.pb.go | 36 +- x/fiattokenfactory/types/minters.pb.go | 46 +-- x/fiattokenfactory/types/minting_denom.pb.go | 34 +- x/fiattokenfactory/types/owner.pb.go | 36 +- x/fiattokenfactory/types/params.pb.go | 36 +- x/fiattokenfactory/types/paused.pb.go | 35 +- x/fiattokenfactory/types/pauser.pb.go | 36 +- x/fiattokenfactory/types/query.pb.go | 328 +++++++++--------- x/fiattokenfactory/types/query.pb.gw.go | 40 +-- x/fiattokenfactory/types/tx.pb.go | 300 ++++++++-------- 29 files changed, 656 insertions(+), 626 deletions(-) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/blacklisted.proto (69%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/blacklister.proto (81%) create mode 100644 proto/circle/fiattokenfactory/v1/genesis.proto rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/master_minter.proto (81%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/minter_controller.proto (83%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/minters.proto (89%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/minting_denom.proto (81%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/owner.proto (80%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/params.proto (87%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/paused.proto (80%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/pauser.proto (80%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/query.proto (68%) rename proto/{fiattokenfactory => circle/fiattokenfactory/v1}/tx.proto (98%) delete mode 100644 proto/fiattokenfactory/genesis.proto diff --git a/proto/buf.yaml b/proto/buf.yaml index 26497ea..0810340 100644 --- a/proto/buf.yaml +++ b/proto/buf.yaml @@ -11,7 +11,3 @@ lint: - SERVICE_SUFFIX - RPC_REQUEST_STANDARD_NAME - RPC_RESPONSE_STANDARD_NAME - # TODO: Remove the following exceptions later! - - FIELD_LOWER_SNAKE_CASE - - PACKAGE_DIRECTORY_MATCH - - PACKAGE_VERSION_SUFFIX diff --git a/proto/fiattokenfactory/blacklisted.proto b/proto/circle/fiattokenfactory/v1/blacklisted.proto similarity index 69% rename from proto/fiattokenfactory/blacklisted.proto rename to proto/circle/fiattokenfactory/v1/blacklisted.proto index 0b0e5b0..5cc346b 100644 --- a/proto/fiattokenfactory/blacklisted.proto +++ b/proto/circle/fiattokenfactory/v1/blacklisted.proto @@ -1,8 +1,9 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; message Blacklisted { - bytes addressBz = 1; + bytes address_bz = 1; } diff --git a/proto/fiattokenfactory/blacklister.proto b/proto/circle/fiattokenfactory/v1/blacklister.proto similarity index 81% rename from proto/fiattokenfactory/blacklister.proto rename to proto/circle/fiattokenfactory/v1/blacklister.proto index 634dbcc..489ed3e 100644 --- a/proto/fiattokenfactory/blacklister.proto +++ b/proto/circle/fiattokenfactory/v1/blacklister.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/circle/fiattokenfactory/v1/genesis.proto b/proto/circle/fiattokenfactory/v1/genesis.proto new file mode 100644 index 0000000..09bdb9f --- /dev/null +++ b/proto/circle/fiattokenfactory/v1/genesis.proto @@ -0,0 +1,33 @@ +syntax = "proto3"; + +package circle.fiattokenfactory.v1; + +import "circle/fiattokenfactory/v1/blacklisted.proto"; +import "circle/fiattokenfactory/v1/blacklister.proto"; +import "circle/fiattokenfactory/v1/master_minter.proto"; +import "circle/fiattokenfactory/v1/minter_controller.proto"; +import "circle/fiattokenfactory/v1/minters.proto"; +import "circle/fiattokenfactory/v1/minting_denom.proto"; +import "circle/fiattokenfactory/v1/owner.proto"; +import "circle/fiattokenfactory/v1/params.proto"; +import "circle/fiattokenfactory/v1/paused.proto"; +import "circle/fiattokenfactory/v1/pauser.proto"; +import "gogoproto/gogo.proto"; +// this line is used by starport scaffolding # genesis/proto/import + +option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; + +// GenesisState defines the fiattokenfactory module's genesis state. +message GenesisState { + Params params = 1 [(gogoproto.nullable) = false]; + repeated Blacklisted blacklisted_list = 2 [(gogoproto.nullable) = false]; + Paused paused = 3; + MasterMinter master_minter = 4; + repeated Minters minters_list = 5 [(gogoproto.nullable) = false]; + Pauser pauser = 6; + Blacklister blacklister = 7; + Owner owner = 8; + repeated MinterController minter_controller_list = 9 [(gogoproto.nullable) = false]; + MintingDenom minting_denom = 10; + // this line is used by starport scaffolding # genesis/proto/state +} diff --git a/proto/fiattokenfactory/master_minter.proto b/proto/circle/fiattokenfactory/v1/master_minter.proto similarity index 81% rename from proto/fiattokenfactory/master_minter.proto rename to proto/circle/fiattokenfactory/v1/master_minter.proto index f62124e..9d89bdb 100644 --- a/proto/fiattokenfactory/master_minter.proto +++ b/proto/circle/fiattokenfactory/v1/master_minter.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/minter_controller.proto b/proto/circle/fiattokenfactory/v1/minter_controller.proto similarity index 83% rename from proto/fiattokenfactory/minter_controller.proto rename to proto/circle/fiattokenfactory/v1/minter_controller.proto index 3805b7b..57fe61e 100644 --- a/proto/fiattokenfactory/minter_controller.proto +++ b/proto/circle/fiattokenfactory/v1/minter_controller.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/minters.proto b/proto/circle/fiattokenfactory/v1/minters.proto similarity index 89% rename from proto/fiattokenfactory/minters.proto rename to proto/circle/fiattokenfactory/v1/minters.proto index 7d274ea..3db7582 100644 --- a/proto/fiattokenfactory/minters.proto +++ b/proto/circle/fiattokenfactory/v1/minters.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/fiattokenfactory/minting_denom.proto b/proto/circle/fiattokenfactory/v1/minting_denom.proto similarity index 81% rename from proto/fiattokenfactory/minting_denom.proto rename to proto/circle/fiattokenfactory/v1/minting_denom.proto index 8289d85..b63d5f9 100644 --- a/proto/fiattokenfactory/minting_denom.proto +++ b/proto/circle/fiattokenfactory/v1/minting_denom.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/owner.proto b/proto/circle/fiattokenfactory/v1/owner.proto similarity index 80% rename from proto/fiattokenfactory/owner.proto rename to proto/circle/fiattokenfactory/v1/owner.proto index cd9246f..cbd020b 100644 --- a/proto/fiattokenfactory/owner.proto +++ b/proto/circle/fiattokenfactory/v1/owner.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/params.proto b/proto/circle/fiattokenfactory/v1/params.proto similarity index 87% rename from proto/fiattokenfactory/params.proto rename to proto/circle/fiattokenfactory/v1/params.proto index 56e985f..7814d16 100644 --- a/proto/fiattokenfactory/params.proto +++ b/proto/circle/fiattokenfactory/v1/params.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; import "gogoproto/gogo.proto"; diff --git a/proto/fiattokenfactory/paused.proto b/proto/circle/fiattokenfactory/v1/paused.proto similarity index 80% rename from proto/fiattokenfactory/paused.proto rename to proto/circle/fiattokenfactory/v1/paused.proto index 1d6b8b1..660d763 100644 --- a/proto/fiattokenfactory/paused.proto +++ b/proto/circle/fiattokenfactory/v1/paused.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/pauser.proto b/proto/circle/fiattokenfactory/v1/pauser.proto similarity index 80% rename from proto/fiattokenfactory/pauser.proto rename to proto/circle/fiattokenfactory/v1/pauser.proto index 3fa347c..50b2cf2 100644 --- a/proto/fiattokenfactory/pauser.proto +++ b/proto/circle/fiattokenfactory/v1/pauser.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; diff --git a/proto/fiattokenfactory/query.proto b/proto/circle/fiattokenfactory/v1/query.proto similarity index 68% rename from proto/fiattokenfactory/query.proto rename to proto/circle/fiattokenfactory/v1/query.proto index 2432b13..23cef64 100644 --- a/proto/fiattokenfactory/query.proto +++ b/proto/circle/fiattokenfactory/v1/query.proto @@ -1,18 +1,19 @@ syntax = "proto3"; -package noble.fiattokenfactory; -import "cosmos/base/query/v1beta1/pagination.proto"; +package circle.fiattokenfactory.v1; + // this line is used by starport scaffolding # 1 -import "fiattokenfactory/blacklisted.proto"; -import "fiattokenfactory/blacklister.proto"; -import "fiattokenfactory/master_minter.proto"; -import "fiattokenfactory/minter_controller.proto"; -import "fiattokenfactory/minters.proto"; -import "fiattokenfactory/minting_denom.proto"; -import "fiattokenfactory/owner.proto"; -import "fiattokenfactory/params.proto"; -import "fiattokenfactory/paused.proto"; -import "fiattokenfactory/pauser.proto"; +import "circle/fiattokenfactory/v1/blacklisted.proto"; +import "circle/fiattokenfactory/v1/blacklister.proto"; +import "circle/fiattokenfactory/v1/master_minter.proto"; +import "circle/fiattokenfactory/v1/minter_controller.proto"; +import "circle/fiattokenfactory/v1/minters.proto"; +import "circle/fiattokenfactory/v1/minting_denom.proto"; +import "circle/fiattokenfactory/v1/owner.proto"; +import "circle/fiattokenfactory/v1/params.proto"; +import "circle/fiattokenfactory/v1/paused.proto"; +import "circle/fiattokenfactory/v1/pauser.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; @@ -22,61 +23,61 @@ option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfact service Query { // Parameters queries the parameters of the module. rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/params"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/params"; } // Queries a Blacklisted by index. rpc Blacklisted(QueryGetBlacklistedRequest) returns (QueryGetBlacklistedResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/blacklisted/{address}"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/blacklisted/{address}"; } // Queries a list of Blacklisted items. rpc BlacklistedAll(QueryAllBlacklistedRequest) returns (QueryAllBlacklistedResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/blacklisted"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/blacklisted"; } // Queries a Paused by index. rpc Paused(QueryGetPausedRequest) returns (QueryGetPausedResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/paused"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/paused"; } // Queries a MasterMinter by index. rpc MasterMinter(QueryGetMasterMinterRequest) returns (QueryGetMasterMinterResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/master_minter"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/master_minter"; } // Queries a Minters by index. rpc Minters(QueryGetMintersRequest) returns (QueryGetMintersResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/minters/{address}"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/minters/{address}"; } // Queries a list of Minters items. rpc MintersAll(QueryAllMintersRequest) returns (QueryAllMintersResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/minters"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/minters"; } // Queries a Pauser by index. rpc Pauser(QueryGetPauserRequest) returns (QueryGetPauserResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/pauser"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/pauser"; } // Queries a Blacklister by index. rpc Blacklister(QueryGetBlacklisterRequest) returns (QueryGetBlacklisterResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/blacklister"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/blacklister"; } // Queries a Owner by index. rpc Owner(QueryGetOwnerRequest) returns (QueryGetOwnerResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/owner"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/owner"; } // Queries a MinterController by index. rpc MinterController(QueryGetMinterControllerRequest) returns (QueryGetMinterControllerResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/minter_controller/{controllerAddress}"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/minter_controller/{controller_address}"; } // Queries a list of MinterController items. rpc MinterControllerAll(QueryAllMinterControllerRequest) returns (QueryAllMinterControllerResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/minter_controller"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/minter_controller"; } // Queries a MintingDenom by index. rpc MintingDenom(QueryGetMintingDenomRequest) returns (QueryGetMintingDenomResponse) { - option (google.api.http).get = "/noble/fiattokenfactory/minting_denom"; + option (google.api.http).get = "/circle/fiattokenfactory/v1/minting_denom"; } // this line is used by starport scaffolding # 2 } @@ -115,7 +116,7 @@ message QueryGetPausedResponse { message QueryGetMasterMinterRequest {} message QueryGetMasterMinterResponse { - MasterMinter masterMinter = 1 [(gogoproto.nullable) = false]; + MasterMinter master_minter = 1 [(gogoproto.nullable) = false]; } message QueryGetMintersRequest { string address = 1; @@ -151,11 +152,11 @@ message QueryGetOwnerResponse { } message QueryGetMinterControllerRequest { - string controllerAddress = 1; + string controller_address = 1; } message QueryGetMinterControllerResponse { - MinterController minterController = 1 [(gogoproto.nullable) = false]; + MinterController minter_controller = 1 [(gogoproto.nullable) = false]; } message QueryAllMinterControllerRequest { @@ -163,13 +164,13 @@ message QueryAllMinterControllerRequest { } message QueryAllMinterControllerResponse { - repeated MinterController minterController = 1 [(gogoproto.nullable) = false]; + repeated MinterController minter_controller = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } message QueryGetMintingDenomRequest {} message QueryGetMintingDenomResponse { - MintingDenom mintingDenom = 1 [(gogoproto.nullable) = false]; + MintingDenom minting_denom = 1 [(gogoproto.nullable) = false]; } // this line is used by starport scaffolding # 3 diff --git a/proto/fiattokenfactory/tx.proto b/proto/circle/fiattokenfactory/v1/tx.proto similarity index 98% rename from proto/fiattokenfactory/tx.proto rename to proto/circle/fiattokenfactory/v1/tx.proto index c9d1d90..ec6e43c 100644 --- a/proto/fiattokenfactory/tx.proto +++ b/proto/circle/fiattokenfactory/v1/tx.proto @@ -1,5 +1,6 @@ syntax = "proto3"; -package noble.fiattokenfactory; + +package circle.fiattokenfactory.v1; // this line is used by starport scaffolding # proto/tx/import import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/fiattokenfactory/genesis.proto b/proto/fiattokenfactory/genesis.proto deleted file mode 100644 index 45fb443..0000000 --- a/proto/fiattokenfactory/genesis.proto +++ /dev/null @@ -1,32 +0,0 @@ -syntax = "proto3"; -package noble.fiattokenfactory; - -import "fiattokenfactory/blacklisted.proto"; -import "fiattokenfactory/blacklister.proto"; -import "fiattokenfactory/master_minter.proto"; -import "fiattokenfactory/minter_controller.proto"; -import "fiattokenfactory/minters.proto"; -import "fiattokenfactory/minting_denom.proto"; -import "fiattokenfactory/owner.proto"; -import "fiattokenfactory/params.proto"; -import "fiattokenfactory/paused.proto"; -import "fiattokenfactory/pauser.proto"; -import "gogoproto/gogo.proto"; -// this line is used by starport scaffolding # genesis/proto/import - -option go_package = "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"; - -// GenesisState defines the fiattokenfactory module's genesis state. -message GenesisState { - Params params = 1 [(gogoproto.nullable) = false]; - repeated Blacklisted blacklistedList = 2 [(gogoproto.nullable) = false]; - Paused paused = 3; - MasterMinter masterMinter = 4; - repeated Minters mintersList = 5 [(gogoproto.nullable) = false]; - Pauser pauser = 6; - Blacklister blacklister = 7; - Owner owner = 8; - repeated MinterController minterControllerList = 9 [(gogoproto.nullable) = false]; - MintingDenom mintingDenom = 10; - // this line is used by starport scaffolding # genesis/proto/state -} diff --git a/x/fiattokenfactory/types/blacklisted.pb.go b/x/fiattokenfactory/types/blacklisted.pb.go index 2532b62..75c6a70 100644 --- a/x/fiattokenfactory/types/blacklisted.pb.go +++ b/x/fiattokenfactory/types/blacklisted.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/blacklisted.proto +// source: circle/fiattokenfactory/v1/blacklisted.proto package types @@ -23,14 +23,14 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type Blacklisted struct { - AddressBz []byte `protobuf:"bytes,1,opt,name=addressBz,proto3" json:"addressBz,omitempty"` + AddressBz []byte `protobuf:"bytes,1,opt,name=address_bz,json=addressBz,proto3" json:"address_bz,omitempty"` } func (m *Blacklisted) Reset() { *m = Blacklisted{} } func (m *Blacklisted) String() string { return proto.CompactTextString(m) } func (*Blacklisted) ProtoMessage() {} func (*Blacklisted) Descriptor() ([]byte, []int) { - return fileDescriptor_c3e57170a8be2162, []int{0} + return fileDescriptor_75ae79ec42bab5e2, []int{0} } func (m *Blacklisted) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,27 @@ func (m *Blacklisted) GetAddressBz() []byte { } func init() { - proto.RegisterType((*Blacklisted)(nil), "noble.fiattokenfactory.Blacklisted") + proto.RegisterType((*Blacklisted)(nil), "circle.fiattokenfactory.v1.Blacklisted") } func init() { - proto.RegisterFile("fiattokenfactory/blacklisted.proto", fileDescriptor_c3e57170a8be2162) + proto.RegisterFile("circle/fiattokenfactory/v1/blacklisted.proto", fileDescriptor_75ae79ec42bab5e2) } -var fileDescriptor_c3e57170a8be2162 = []byte{ - // 169 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x4f, 0xca, 0x49, - 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, 0x49, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x57, 0xa9, 0xa4, 0xcd, 0xc5, 0xed, 0x84, 0x50, 0x2c, - 0x24, 0xc3, 0xc5, 0x99, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0xec, 0x54, 0x25, 0xc1, 0xa8, 0xc0, - 0xa8, 0xc1, 0x13, 0x84, 0x10, 0x70, 0x8a, 0x3b, 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, 0x97, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xcc, - 0xa2, 0xe4, 0x9c, 0xd4, 0xb4, 0xcc, 0x3c, 0x7d, 0xb0, 0x9d, 0xba, 0x18, 0xae, 0xab, 0xd0, 0xc7, - 0x10, 0x2a, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xbb, 0xd5, 0x18, 0x10, 0x00, 0x00, 0xff, - 0xff, 0x9b, 0x6c, 0x78, 0xec, 0xd1, 0x00, 0x00, 0x00, +var fileDescriptor_75ae79ec42bab5e2 = []byte{ + // 182 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x49, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0x4f, 0xca, 0x49, 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, + 0x49, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xa8, 0xd6, 0x43, 0x57, 0xad, + 0x57, 0x66, 0xa8, 0xa4, 0xc3, 0xc5, 0xed, 0x84, 0xd0, 0x20, 0x24, 0xcb, 0xc5, 0x95, 0x98, 0x92, + 0x52, 0x94, 0x5a, 0x5c, 0x1c, 0x9f, 0x54, 0x25, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x13, 0xc4, 0x09, + 0x15, 0x71, 0xaa, 0x72, 0x8a, 0x3b, 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, + 0x97, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x88, 0x75, 0x69, 0x99, + 0x79, 0xfa, 0x79, 0xf9, 0x49, 0x39, 0xa9, 0xba, 0x18, 0xae, 0xac, 0xc0, 0x74, 0x78, 0x49, 0x65, + 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xc1, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x7e, + 0x56, 0xb4, 0xe0, 0x00, 0x00, 0x00, } func (m *Blacklisted) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/blacklister.pb.go b/x/fiattokenfactory/types/blacklister.pb.go index 1887235..88bf8b7 100644 --- a/x/fiattokenfactory/types/blacklister.pb.go +++ b/x/fiattokenfactory/types/blacklister.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/blacklister.proto +// source: circle/fiattokenfactory/v1/blacklister.proto package types @@ -30,7 +30,7 @@ func (m *Blacklister) Reset() { *m = Blacklister{} } func (m *Blacklister) String() string { return proto.CompactTextString(m) } func (*Blacklister) ProtoMessage() {} func (*Blacklister) Descriptor() ([]byte, []int) { - return fileDescriptor_eb6b8f9253711167, []int{0} + return fileDescriptor_75550d3ae0f31209, []int{0} } func (m *Blacklister) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,26 @@ func (m *Blacklister) GetAddress() string { } func init() { - proto.RegisterType((*Blacklister)(nil), "noble.fiattokenfactory.Blacklister") + proto.RegisterType((*Blacklister)(nil), "circle.fiattokenfactory.v1.Blacklister") } func init() { - proto.RegisterFile("fiattokenfactory/blacklister.proto", fileDescriptor_eb6b8f9253711167) + proto.RegisterFile("circle/fiattokenfactory/v1/blacklister.proto", fileDescriptor_75550d3ae0f31209) } -var fileDescriptor_eb6b8f9253711167 = []byte{ - // 167 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x4f, 0xca, 0x49, - 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x57, 0xa9, 0xa4, 0xce, 0xc5, 0xed, 0x84, 0x50, 0x2c, - 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, - 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, - 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, - 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x66, 0x51, 0x72, - 0x4e, 0x6a, 0x5a, 0x66, 0x9e, 0x3e, 0xd8, 0x3e, 0x5d, 0x0c, 0x97, 0x55, 0xe8, 0x63, 0x08, 0x95, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xdd, 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x7d, - 0xcc, 0x32, 0x82, 0xcd, 0x00, 0x00, 0x00, +var fileDescriptor_75550d3ae0f31209 = []byte{ + // 176 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x49, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0x4f, 0xca, 0x49, 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, + 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xa8, 0xd6, 0x43, 0x57, 0xad, + 0x57, 0x66, 0xa8, 0xa4, 0xce, 0xc5, 0xed, 0x84, 0xd0, 0x20, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, + 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, + 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, + 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, + 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xc4, 0xa6, 0xb4, 0xcc, 0x3c, 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, + 0x54, 0x5d, 0x0c, 0x07, 0x56, 0x60, 0xba, 0xb9, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, + 0x56, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0xfe, 0x63, 0xd9, 0xdb, 0x00, 0x00, 0x00, } func (m *Blacklister) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/genesis.pb.go b/x/fiattokenfactory/types/genesis.pb.go index 762f64a..d318df5 100644 --- a/x/fiattokenfactory/types/genesis.pb.go +++ b/x/fiattokenfactory/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/genesis.proto +// source: circle/fiattokenfactory/v1/genesis.proto package types @@ -26,22 +26,22 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the fiattokenfactory module's genesis state. type GenesisState struct { Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` - BlacklistedList []Blacklisted `protobuf:"bytes,2,rep,name=blacklistedList,proto3" json:"blacklistedList"` + BlacklistedList []Blacklisted `protobuf:"bytes,2,rep,name=blacklisted_list,json=blacklistedList,proto3" json:"blacklisted_list"` Paused *Paused `protobuf:"bytes,3,opt,name=paused,proto3" json:"paused,omitempty"` - MasterMinter *MasterMinter `protobuf:"bytes,4,opt,name=masterMinter,proto3" json:"masterMinter,omitempty"` - MintersList []Minters `protobuf:"bytes,5,rep,name=mintersList,proto3" json:"mintersList"` + MasterMinter *MasterMinter `protobuf:"bytes,4,opt,name=master_minter,json=masterMinter,proto3" json:"master_minter,omitempty"` + MintersList []Minters `protobuf:"bytes,5,rep,name=minters_list,json=mintersList,proto3" json:"minters_list"` Pauser *Pauser `protobuf:"bytes,6,opt,name=pauser,proto3" json:"pauser,omitempty"` Blacklister *Blacklister `protobuf:"bytes,7,opt,name=blacklister,proto3" json:"blacklister,omitempty"` Owner *Owner `protobuf:"bytes,8,opt,name=owner,proto3" json:"owner,omitempty"` - MinterControllerList []MinterController `protobuf:"bytes,9,rep,name=minterControllerList,proto3" json:"minterControllerList"` - MintingDenom *MintingDenom `protobuf:"bytes,10,opt,name=mintingDenom,proto3" json:"mintingDenom,omitempty"` + MinterControllerList []MinterController `protobuf:"bytes,9,rep,name=minter_controller_list,json=minterControllerList,proto3" json:"minter_controller_list"` + MintingDenom *MintingDenom `protobuf:"bytes,10,opt,name=minting_denom,json=mintingDenom,proto3" json:"minting_denom,omitempty"` } 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_300d22b176be1774, []int{0} + return fileDescriptor_9bceddd93438df2a, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,42 +141,46 @@ func (m *GenesisState) GetMintingDenom() *MintingDenom { } func init() { - proto.RegisterType((*GenesisState)(nil), "noble.fiattokenfactory.GenesisState") + proto.RegisterType((*GenesisState)(nil), "circle.fiattokenfactory.v1.GenesisState") } -func init() { proto.RegisterFile("fiattokenfactory/genesis.proto", fileDescriptor_300d22b176be1774) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/genesis.proto", fileDescriptor_9bceddd93438df2a) +} -var fileDescriptor_300d22b176be1774 = []byte{ - // 461 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x13, 0xb6, 0x16, 0x70, 0x26, 0x21, 0x59, 0x13, 0xb2, 0x10, 0xf3, 0xa6, 0xb1, 0x43, - 0x2e, 0x24, 0xd2, 0x26, 0x71, 0xe2, 0x54, 0x86, 0xc6, 0x81, 0x09, 0x94, 0xdd, 0x38, 0x50, 0x25, - 0xa9, 0x1b, 0xac, 0x26, 0x76, 0x65, 0xbb, 0x82, 0x7e, 0x0b, 0x3e, 0x56, 0x4f, 0xa8, 0x47, 0x4e, - 0x08, 0xb5, 0x5f, 0x04, 0xc5, 0x36, 0x69, 0xda, 0x34, 0x6d, 0x6f, 0x51, 0xde, 0xef, 0xff, 0x5e, - 0xfe, 0xef, 0x9f, 0x07, 0xf0, 0x90, 0xc6, 0x4a, 0xf1, 0x11, 0x61, 0xc3, 0x38, 0x55, 0x5c, 0x4c, - 0xc3, 0x8c, 0x30, 0x22, 0xa9, 0x0c, 0xc6, 0x82, 0x2b, 0x0e, 0x9f, 0x33, 0x9e, 0xe4, 0x24, 0xd8, - 0xa4, 0x5e, 0x5c, 0x36, 0x74, 0x49, 0x1e, 0xa7, 0xa3, 0x9c, 0x4a, 0x45, 0x06, 0x46, 0xbb, 0x93, - 0x11, 0x96, 0xb9, 0x6a, 0x30, 0x45, 0x5c, 0x96, 0xfb, 0x05, 0x65, 0x2b, 0xca, 0x6f, 0x52, 0xba, - 0xdc, 0x4f, 0x39, 0x53, 0x82, 0xe7, 0x79, 0x45, 0xe2, 0x16, 0x52, 0xb6, 0xcf, 0xa3, 0x4c, 0x51, - 0x96, 0xf5, 0x07, 0x84, 0xf1, 0xc2, 0x52, 0x2f, 0x1b, 0x14, 0xff, 0xce, 0xaa, 0x19, 0x67, 0x8d, - 0xea, 0x38, 0x16, 0x71, 0x21, 0x77, 0x94, 0x27, 0xb2, 0xda, 0x4a, 0x4b, 0xf9, 0x7f, 0xf3, 0xd3, - 0x8c, 0x67, 0x5c, 0x3f, 0x86, 0xe5, 0x93, 0x79, 0x7b, 0xf9, 0xab, 0x03, 0x4e, 0xee, 0x4c, 0x30, - 0x0f, 0x2a, 0x56, 0x04, 0xbe, 0x05, 0x5d, 0x33, 0x14, 0xb9, 0x17, 0xae, 0xef, 0x5d, 0xe3, 0x60, - 0x7b, 0x50, 0xc1, 0x67, 0x4d, 0xf5, 0x8e, 0x67, 0x7f, 0xce, 0x9d, 0xc8, 0x6a, 0xe0, 0x03, 0x78, - 0x56, 0x8b, 0xeb, 0x23, 0x95, 0x0a, 0x3d, 0xba, 0x38, 0xf2, 0xbd, 0xeb, 0x57, 0x6d, 0x6d, 0x7a, - 0x2b, 0xdc, 0xf6, 0xda, 0xec, 0x00, 0xdf, 0x94, 0x9f, 0x54, 0x1a, 0x45, 0x47, 0xfb, 0x3e, 0xa9, - 0xa4, 0x22, 0x4b, 0xc3, 0x0f, 0xe0, 0xc4, 0x64, 0x7e, 0xaf, 0x93, 0x42, 0xc7, 0x5a, 0x7d, 0xd5, - 0xa6, 0xbe, 0xaf, 0xb1, 0xd1, 0x9a, 0x12, 0xde, 0x01, 0xcf, 0xa6, 0xad, 0x2d, 0x75, 0xb4, 0xa5, - 0xf3, 0xd6, 0x46, 0x06, 0xb5, 0x76, 0xea, 0xca, 0xca, 0x8a, 0x40, 0xdd, 0x03, 0xac, 0x08, 0x6b, - 0x45, 0xc0, 0xf7, 0xc0, 0xab, 0xfd, 0xe2, 0xe8, 0xb1, 0x16, 0x1f, 0xb0, 0x53, 0x11, 0xd5, 0x75, - 0xf0, 0x06, 0x74, 0xf4, 0xff, 0x86, 0x9e, 0xe8, 0x06, 0x67, 0x6d, 0x0d, 0x3e, 0x95, 0x50, 0x64, - 0x58, 0x98, 0x80, 0x53, 0x63, 0xe1, 0x5d, 0x75, 0x13, 0x7a, 0x0b, 0x4f, 0xf5, 0x16, 0xfc, 0xdd, - 0x5b, 0x58, 0x69, 0xec, 0x3a, 0xb6, 0xf6, 0xd2, 0x51, 0x99, 0x73, 0xb9, 0x2d, 0xaf, 0x05, 0x81, - 0x3d, 0x51, 0xd5, 0xd8, 0x68, 0x4d, 0xd9, 0xfb, 0x3a, 0x5b, 0x60, 0x77, 0xbe, 0xc0, 0xee, 0xdf, - 0x05, 0x76, 0x7f, 0x2e, 0xb1, 0x33, 0x5f, 0x62, 0xe7, 0xf7, 0x12, 0x3b, 0x5f, 0x6e, 0x33, 0xaa, - 0xbe, 0x4d, 0x92, 0x20, 0xe5, 0x45, 0x98, 0x52, 0x91, 0xe6, 0x64, 0x48, 0x59, 0xa8, 0x27, 0xbc, - 0x6e, 0x9c, 0xce, 0x8f, 0xb0, 0xf1, 0x4a, 0x4d, 0xc7, 0x44, 0x26, 0x5d, 0x7d, 0x37, 0x37, 0xff, - 0x02, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xd8, 0x5a, 0x5b, 0xe0, 0x04, 0x00, 0x00, +var fileDescriptor_9bceddd93438df2a = []byte{ + // 482 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0xc6, 0x1b, 0xb6, 0x16, 0x70, 0x8b, 0x40, 0xd6, 0x84, 0xac, 0x1d, 0xc2, 0x18, 0x12, 0xcb, + 0x61, 0x24, 0x5a, 0x39, 0x20, 0x71, 0x42, 0x65, 0x12, 0x42, 0x5a, 0x05, 0x0a, 0x17, 0xc4, 0x81, + 0x28, 0xc9, 0xdc, 0xcc, 0x5a, 0x6c, 0x57, 0xb6, 0x37, 0xd8, 0xb7, 0xe0, 0x63, 0xed, 0xb8, 0x23, + 0x27, 0x84, 0xda, 0xaf, 0xc1, 0x01, 0xf9, 0x0f, 0x59, 0xb6, 0x0a, 0x37, 0xa7, 0xc6, 0xd6, 0xef, + 0x79, 0xfa, 0xbe, 0x8f, 0xdf, 0x17, 0x44, 0x25, 0x11, 0x65, 0x8d, 0x93, 0x19, 0xc9, 0x95, 0xe2, + 0xa7, 0x98, 0xcd, 0xf2, 0x52, 0x71, 0x71, 0x91, 0x9c, 0x1f, 0x24, 0x15, 0x66, 0x58, 0x12, 0x19, + 0xcf, 0x05, 0x57, 0x1c, 0x6e, 0x5b, 0x32, 0xbe, 0x4d, 0xc6, 0xe7, 0x07, 0xdb, 0xfb, 0x1e, 0x97, + 0xa2, 0xce, 0xcb, 0xd3, 0x9a, 0x48, 0x85, 0x8f, 0xad, 0x53, 0x47, 0x5a, 0x38, 0x3a, 0xf6, 0xd0, + 0x34, 0xd7, 0x60, 0x46, 0x09, 0xbb, 0xe6, 0xc7, 0x3e, 0xde, 0x80, 0x59, 0xc9, 0x99, 0x12, 0xbc, + 0xae, 0x1b, 0x4d, 0xb4, 0x56, 0x23, 0xbb, 0x54, 0x43, 0x98, 0x22, 0xac, 0xca, 0x8e, 0x31, 0xe3, + 0xd4, 0xf1, 0xcf, 0x3d, 0x3c, 0xff, 0xc6, 0x9a, 0x0a, 0xf6, 0x3c, 0xdc, 0x3c, 0x17, 0x39, 0x95, + 0x9d, 0xc0, 0x33, 0xd9, 0xa4, 0xbc, 0x16, 0xfc, 0xf7, 0xd7, 0x5b, 0x15, 0xaf, 0xb8, 0xf9, 0x4c, + 0xf4, 0x97, 0xbd, 0xdd, 0xfd, 0xd3, 0x07, 0xa3, 0x77, 0x76, 0x00, 0x3e, 0xa9, 0x5c, 0x61, 0xf8, + 0x06, 0x0c, 0x6c, 0x21, 0x28, 0xd8, 0x09, 0xa2, 0xe1, 0x78, 0x37, 0xfe, 0xff, 0x40, 0xc4, 0x1f, + 0x0d, 0x39, 0xd9, 0xbc, 0xfc, 0xf5, 0xa4, 0x97, 0x3a, 0x1d, 0xfc, 0x0c, 0x1e, 0xb5, 0x86, 0x21, + 0xd3, 0x3f, 0xe8, 0xce, 0xce, 0x46, 0x34, 0x1c, 0xef, 0xf9, 0xbc, 0x26, 0xd7, 0x1a, 0x67, 0xf8, + 0xb0, 0x65, 0x73, 0x44, 0xa4, 0x82, 0xaf, 0x75, 0x6d, 0xba, 0x77, 0xb4, 0xd1, 0xa5, 0x36, 0x4d, + 0xa6, 0x4e, 0x01, 0xa7, 0xe0, 0xc1, 0x8d, 0x31, 0x42, 0x9b, 0xc6, 0x22, 0xf2, 0x59, 0x4c, 0x8d, + 0x60, 0x6a, 0xf8, 0x74, 0x44, 0x5b, 0x27, 0x78, 0x04, 0x46, 0x6e, 0x62, 0x6c, 0x83, 0x7d, 0xd3, + 0xe0, 0x33, 0xaf, 0x9b, 0xe5, 0x5d, 0x73, 0x43, 0x27, 0xbf, 0xd1, 0x98, 0x40, 0x83, 0x8e, 0x8d, + 0x09, 0xd7, 0x98, 0x80, 0xef, 0xc1, 0xb0, 0xb5, 0x4d, 0xe8, 0xae, 0x31, 0xe8, 0x98, 0xb4, 0x48, + 0xdb, 0x5a, 0xf8, 0x0a, 0xf4, 0xcd, 0xb0, 0xa2, 0x7b, 0xc6, 0xe4, 0xa9, 0xcf, 0xe4, 0x83, 0x06, + 0x53, 0xcb, 0xc3, 0x13, 0xf0, 0x78, 0x65, 0xe7, 0x6c, 0x2e, 0xf7, 0x4d, 0x2e, 0xfb, 0xeb, 0x73, + 0x79, 0xdb, 0x08, 0x5d, 0x40, 0x5b, 0xf4, 0xd6, 0xbd, 0x49, 0x4a, 0x3f, 0x63, 0x7b, 0xff, 0x10, + 0xe8, 0xf0, 0x8c, 0x56, 0x70, 0xa8, 0xf9, 0x74, 0x44, 0x5b, 0xa7, 0xc9, 0xd7, 0xcb, 0x45, 0x18, + 0x5c, 0x2d, 0xc2, 0xe0, 0xf7, 0x22, 0x0c, 0x7e, 0x2c, 0xc3, 0xde, 0xd5, 0x32, 0xec, 0xfd, 0x5c, + 0x86, 0xbd, 0x2f, 0x87, 0x15, 0x51, 0x27, 0x67, 0x45, 0x5c, 0x72, 0x9a, 0x58, 0xef, 0x19, 0x61, + 0x09, 0xe3, 0x45, 0x8d, 0x5f, 0xac, 0xec, 0xda, 0xf7, 0xd5, 0xf5, 0x53, 0x17, 0x73, 0x2c, 0x8b, + 0x81, 0xd9, 0xb2, 0x97, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xcb, 0x2e, 0x29, 0x9d, 0x80, 0x05, + 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/master_minter.pb.go b/x/fiattokenfactory/types/master_minter.pb.go index 63b3a5e..c616d3e 100644 --- a/x/fiattokenfactory/types/master_minter.pb.go +++ b/x/fiattokenfactory/types/master_minter.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/master_minter.proto +// source: circle/fiattokenfactory/v1/master_minter.proto package types @@ -30,7 +30,7 @@ func (m *MasterMinter) Reset() { *m = MasterMinter{} } func (m *MasterMinter) String() string { return proto.CompactTextString(m) } func (*MasterMinter) ProtoMessage() {} func (*MasterMinter) Descriptor() ([]byte, []int) { - return fileDescriptor_58170e99fb224a62, []int{0} + return fileDescriptor_d041b0933f15c33b, []int{0} } func (m *MasterMinter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,27 @@ func (m *MasterMinter) GetAddress() string { } func init() { - proto.RegisterType((*MasterMinter)(nil), "noble.fiattokenfactory.MasterMinter") + proto.RegisterType((*MasterMinter)(nil), "circle.fiattokenfactory.v1.MasterMinter") } func init() { - proto.RegisterFile("fiattokenfactory/master_minter.proto", fileDescriptor_58170e99fb224a62) + proto.RegisterFile("circle/fiattokenfactory/v1/master_minter.proto", fileDescriptor_d041b0933f15c33b) } -var fileDescriptor_58170e99fb224a62 = []byte{ - // 172 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0x4d, 0x2c, - 0x2e, 0x49, 0x2d, 0x8a, 0xcf, 0xcd, 0xcc, 0x2b, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x57, 0xab, 0xa4, 0xc1, 0xc5, 0xe3, 0x0b, - 0x56, 0xee, 0x0b, 0x56, 0x2d, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, - 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, - 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, - 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, - 0x7e, 0x72, 0x66, 0x51, 0x72, 0x4e, 0x6a, 0x5a, 0x66, 0x9e, 0x3e, 0xd8, 0x42, 0x5d, 0x0c, 0xc7, - 0x55, 0xe8, 0x63, 0x08, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x6a, 0x0c, 0x08, - 0x00, 0x00, 0xff, 0xff, 0x79, 0x38, 0xc6, 0xbd, 0xd0, 0x00, 0x00, 0x00, +var fileDescriptor_d041b0933f15c33b = []byte{ + // 181 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4b, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0xcf, 0x4d, 0x2c, 0x2e, 0x49, 0x2d, 0x8a, 0xcf, 0xcd, + 0xcc, 0x2b, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xa8, 0xd7, 0x43, + 0x57, 0xaf, 0x57, 0x66, 0xa8, 0xa4, 0xc1, 0xc5, 0xe3, 0x0b, 0xd6, 0xe2, 0x0b, 0xd6, 0x21, 0x24, + 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, + 0x04, 0xe3, 0x3a, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, + 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, + 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xc4, 0xaa, 0xb4, 0xcc, 0x3c, + 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, 0x54, 0x5d, 0x0c, 0x37, 0x56, 0x60, 0x3a, 0xbb, 0xa4, 0xb2, 0x20, + 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x58, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa, 0xee, 0x0c, + 0xa7, 0xde, 0x00, 0x00, 0x00, } func (m *MasterMinter) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/minter_controller.pb.go b/x/fiattokenfactory/types/minter_controller.pb.go index dfbe02f..0dfffec 100644 --- a/x/fiattokenfactory/types/minter_controller.pb.go +++ b/x/fiattokenfactory/types/minter_controller.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/minter_controller.proto +// source: circle/fiattokenfactory/v1/minter_controller.proto package types @@ -31,7 +31,7 @@ func (m *MinterController) Reset() { *m = MinterController{} } func (m *MinterController) String() string { return proto.CompactTextString(m) } func (*MinterController) ProtoMessage() {} func (*MinterController) Descriptor() ([]byte, []int) { - return fileDescriptor_1affbda666df4b99, []int{0} + return fileDescriptor_18b1308542f98154, []int{0} } func (m *MinterController) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,27 +75,27 @@ func (m *MinterController) GetController() string { } func init() { - proto.RegisterType((*MinterController)(nil), "noble.fiattokenfactory.MinterController") + proto.RegisterType((*MinterController)(nil), "circle.fiattokenfactory.v1.MinterController") } func init() { - proto.RegisterFile("fiattokenfactory/minter_controller.proto", fileDescriptor_1affbda666df4b99) + proto.RegisterFile("circle/fiattokenfactory/v1/minter_controller.proto", fileDescriptor_18b1308542f98154) } -var fileDescriptor_1affbda666df4b99 = []byte{ - // 183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x48, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0xcd, 0xcc, - 0x2b, 0x49, 0x2d, 0x8a, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0xca, 0xcf, 0xc9, 0x49, 0x2d, 0xd2, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x57, 0xaf, 0xe4, - 0xc5, 0x25, 0xe0, 0x0b, 0xd6, 0xe2, 0x0c, 0xd7, 0x21, 0x24, 0xc6, 0xc5, 0x06, 0x31, 0x46, 0x82, - 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xca, 0x13, 0x92, 0xe3, 0xe2, 0x42, 0x98, 0x2b, 0xc1, 0x04, - 0x96, 0x43, 0x12, 0x71, 0x8a, 0x3b, 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, - 0x97, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xcc, 0xa2, 0xe4, - 0x9c, 0xd4, 0xb4, 0xcc, 0x3c, 0x7d, 0xb0, 0x93, 0x74, 0x31, 0xbc, 0x50, 0xa1, 0x8f, 0x21, 0x54, - 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0xf6, 0x8a, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x6c, - 0x46, 0x93, 0xf2, 0xf6, 0x00, 0x00, 0x00, +var fileDescriptor_18b1308542f98154 = []byte{ + // 192 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4a, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0xcf, 0xcd, 0xcc, 0x2b, 0x49, 0x2d, 0x8a, 0x4f, 0xce, + 0xcf, 0x2b, 0x29, 0xca, 0xcf, 0xc9, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, + 0x82, 0xe8, 0xd1, 0x43, 0xd7, 0xa3, 0x57, 0x66, 0xa8, 0xe4, 0xc5, 0x25, 0xe0, 0x0b, 0xd6, 0xe6, + 0x0c, 0xd7, 0x25, 0x24, 0xc6, 0xc5, 0x06, 0x31, 0x4a, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, + 0xca, 0x13, 0x92, 0xe3, 0xe2, 0x42, 0x98, 0x2d, 0xc1, 0x04, 0x96, 0x43, 0x12, 0x71, 0x8a, 0x3b, + 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, 0x97, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x88, 0x63, 0xd2, 0x32, 0xf3, 0xf4, 0xf3, 0xf2, 0x93, 0x72, + 0x52, 0x75, 0x31, 0x7c, 0x52, 0x81, 0xe9, 0xb9, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, + 0x77, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa6, 0xfe, 0x75, 0xdd, 0x04, 0x01, 0x00, 0x00, } func (m *MinterController) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/minters.pb.go b/x/fiattokenfactory/types/minters.pb.go index cb1ed5e..dd49e9e 100644 --- a/x/fiattokenfactory/types/minters.pb.go +++ b/x/fiattokenfactory/types/minters.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/minters.proto +// source: circle/fiattokenfactory/v1/minters.proto package types @@ -33,7 +33,7 @@ func (m *Minters) Reset() { *m = Minters{} } func (m *Minters) String() string { return proto.CompactTextString(m) } func (*Minters) ProtoMessage() {} func (*Minters) Descriptor() ([]byte, []int) { - return fileDescriptor_eaf83371ab173141, []int{0} + return fileDescriptor_55f322cd9b64781e, []int{0} } func (m *Minters) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,29 +77,31 @@ func (m *Minters) GetAllowance() types.Coin { } func init() { - proto.RegisterType((*Minters)(nil), "noble.fiattokenfactory.Minters") + proto.RegisterType((*Minters)(nil), "circle.fiattokenfactory.v1.Minters") } -func init() { proto.RegisterFile("fiattokenfactory/minters.proto", fileDescriptor_eaf83371ab173141) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/minters.proto", fileDescriptor_55f322cd9b64781e) +} -var fileDescriptor_eaf83371ab173141 = []byte{ - // 248 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0x3f, 0x4f, 0xc3, 0x30, - 0x10, 0xc5, 0x63, 0x84, 0xa8, 0x1a, 0xb6, 0x08, 0xa1, 0xd0, 0xc1, 0x54, 0x4c, 0x5d, 0xf0, 0xa9, - 0x30, 0xb3, 0x14, 0x56, 0x96, 0x8e, 0x0c, 0x48, 0xb6, 0x7b, 0x09, 0x16, 0x89, 0xaf, 0xb2, 0x8f, - 0x3f, 0xfd, 0x16, 0x7c, 0xac, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0xbe, 0x08, 0x6a, 0x02, 0x42, 0x6a, - 0xb7, 0x77, 0x4f, 0xf7, 0xee, 0xa7, 0x77, 0xa9, 0x2c, 0x9c, 0x66, 0xa6, 0x67, 0xf4, 0x85, 0xb6, - 0x4c, 0x61, 0x05, 0xb5, 0xf3, 0x8c, 0x21, 0xaa, 0x65, 0x20, 0xa6, 0xec, 0xd4, 0x93, 0xa9, 0x50, - 0xed, 0x6e, 0x8d, 0xa4, 0xa5, 0x58, 0x53, 0x04, 0xa3, 0x23, 0xc2, 0xeb, 0xd4, 0x20, 0xeb, 0x29, - 0x58, 0x72, 0xbe, 0xcf, 0x8d, 0x4e, 0x4a, 0x2a, 0xa9, 0x93, 0xb0, 0x55, 0xbd, 0x7b, 0x61, 0xd2, - 0xc1, 0x7d, 0x7f, 0x3e, 0xcb, 0xd3, 0x81, 0x5e, 0x2c, 0x02, 0xc6, 0x98, 0x8b, 0xb1, 0x98, 0x0c, - 0xe7, 0x7f, 0x63, 0x76, 0x93, 0x0e, 0x75, 0x55, 0xd1, 0x9b, 0xf6, 0x16, 0xf3, 0x83, 0xb1, 0x98, - 0x1c, 0x5f, 0x9d, 0xa9, 0x1e, 0xa7, 0xb6, 0x38, 0xf5, 0x8b, 0x53, 0xb7, 0xe4, 0xfc, 0xec, 0x70, - 0xfd, 0x75, 0x9e, 0xcc, 0xff, 0x13, 0xb3, 0xc7, 0x75, 0x23, 0xc5, 0xa6, 0x91, 0xe2, 0xbb, 0x91, - 0xe2, 0xa3, 0x95, 0xc9, 0xa6, 0x95, 0xc9, 0x67, 0x2b, 0x93, 0x87, 0xbb, 0xd2, 0xf1, 0xd3, 0x8b, - 0x51, 0x96, 0x6a, 0xb0, 0x2e, 0xd8, 0x0a, 0x0b, 0xe7, 0xa1, 0x2b, 0x78, 0xb9, 0xf7, 0x86, 0x77, - 0xd8, 0xb3, 0x78, 0xb5, 0xc4, 0x68, 0x8e, 0xba, 0x2a, 0xd7, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, - 0x87, 0x6a, 0x2d, 0x1d, 0x3a, 0x01, 0x00, 0x00, +var fileDescriptor_55f322cd9b64781e = []byte{ + // 254 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xb1, 0x4e, 0xf3, 0x30, + 0x14, 0x85, 0xe3, 0x5f, 0xbf, 0xa8, 0x1a, 0xb6, 0x88, 0x21, 0x64, 0x30, 0x15, 0x53, 0x16, 0x7c, + 0x15, 0x98, 0x59, 0x0a, 0x2b, 0x4b, 0x47, 0x06, 0x24, 0xdb, 0xbd, 0x09, 0x16, 0x89, 0x6f, 0x65, + 0x9b, 0x40, 0xdf, 0x82, 0xc7, 0xea, 0xd8, 0x91, 0x09, 0xa1, 0xe4, 0x45, 0x50, 0x6b, 0x10, 0x12, + 0xdd, 0xce, 0xbd, 0x3a, 0x47, 0x9f, 0xce, 0x49, 0x4b, 0x6d, 0x9c, 0x6e, 0x11, 0x6a, 0x23, 0x43, + 0xa0, 0x27, 0xb4, 0xb5, 0xd4, 0x81, 0xdc, 0x1a, 0xfa, 0x0a, 0x3a, 0x63, 0x03, 0x3a, 0x2f, 0x56, + 0x8e, 0x02, 0x65, 0x45, 0x74, 0x8a, 0xbf, 0x4e, 0xd1, 0x57, 0x05, 0xd7, 0xe4, 0x3b, 0xf2, 0xa0, + 0xa4, 0x47, 0xe8, 0x2b, 0x85, 0x41, 0x56, 0xa0, 0xc9, 0xd8, 0x98, 0x2d, 0x4e, 0x1a, 0x6a, 0x68, + 0x2f, 0x61, 0xa7, 0xe2, 0xf7, 0x5c, 0xa5, 0x93, 0xbb, 0x88, 0xc8, 0xf2, 0x74, 0x22, 0x97, 0x4b, + 0x87, 0xde, 0xe7, 0x6c, 0xc6, 0xca, 0xe9, 0xe2, 0xe7, 0xcc, 0xae, 0xd3, 0xa9, 0x6c, 0x5b, 0x7a, + 0x91, 0x56, 0x63, 0xfe, 0x6f, 0xc6, 0xca, 0xe3, 0xcb, 0x53, 0x11, 0x71, 0x62, 0x87, 0x13, 0xdf, + 0x38, 0x71, 0x43, 0xc6, 0xce, 0xff, 0x6f, 0x3e, 0xce, 0x92, 0xc5, 0x6f, 0x62, 0xfe, 0xb0, 0x19, + 0x38, 0xdb, 0x0e, 0x9c, 0x7d, 0x0e, 0x9c, 0xbd, 0x8d, 0x3c, 0xd9, 0x8e, 0x3c, 0x79, 0x1f, 0x79, + 0x72, 0x7f, 0xdb, 0x98, 0xf0, 0xf8, 0xac, 0x84, 0xa6, 0x0e, 0x62, 0xb5, 0xda, 0x58, 0xb0, 0xa4, + 0x5a, 0xbc, 0x38, 0x58, 0xe3, 0xf5, 0x70, 0xa0, 0xb0, 0x5e, 0xa1, 0x57, 0x47, 0xfb, 0x2a, 0x57, + 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x23, 0x66, 0x53, 0x98, 0x48, 0x01, 0x00, 0x00, } func (m *Minters) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/minting_denom.pb.go b/x/fiattokenfactory/types/minting_denom.pb.go index 8d5ee52..92249a6 100644 --- a/x/fiattokenfactory/types/minting_denom.pb.go +++ b/x/fiattokenfactory/types/minting_denom.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/minting_denom.proto +// source: circle/fiattokenfactory/v1/minting_denom.proto package types @@ -30,7 +30,7 @@ func (m *MintingDenom) Reset() { *m = MintingDenom{} } func (m *MintingDenom) String() string { return proto.CompactTextString(m) } func (*MintingDenom) ProtoMessage() {} func (*MintingDenom) Descriptor() ([]byte, []int) { - return fileDescriptor_57da9c201498e652, []int{0} + return fileDescriptor_f2cee1934a4431a4, []int{0} } func (m *MintingDenom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,26 @@ func (m *MintingDenom) GetDenom() string { } func init() { - proto.RegisterType((*MintingDenom)(nil), "noble.fiattokenfactory.MintingDenom") + proto.RegisterType((*MintingDenom)(nil), "circle.fiattokenfactory.v1.MintingDenom") } func init() { - proto.RegisterFile("fiattokenfactory/minting_denom.proto", fileDescriptor_57da9c201498e652) + proto.RegisterFile("circle/fiattokenfactory/v1/minting_denom.proto", fileDescriptor_f2cee1934a4431a4) } -var fileDescriptor_57da9c201498e652 = []byte{ - // 167 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0xcd, 0xcc, - 0x2b, 0xc9, 0xcc, 0x4b, 0x8f, 0x4f, 0x49, 0xcd, 0xcb, 0xcf, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x57, 0xab, 0xa4, 0xc2, 0xc5, 0xe3, 0x0b, - 0x51, 0xee, 0x02, 0x52, 0x2d, 0x24, 0xc2, 0xc5, 0x0a, 0xd6, 0x26, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, - 0x19, 0x04, 0xe1, 0x38, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, - 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, - 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x66, 0x51, 0x72, - 0x4e, 0x6a, 0x5a, 0x66, 0x9e, 0x3e, 0xd8, 0x32, 0x5d, 0x0c, 0x87, 0x55, 0xe8, 0x63, 0x08, 0x95, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xca, - 0x45, 0xfa, 0xc2, 0xcc, 0x00, 0x00, 0x00, +var fileDescriptor_f2cee1934a4431a4 = []byte{ + // 176 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4b, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0xcf, 0xcd, 0xcc, 0x2b, 0xc9, 0xcc, 0x4b, 0x8f, 0x4f, + 0x49, 0xcd, 0xcb, 0xcf, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xa8, 0xd7, 0x43, + 0x57, 0xaf, 0x57, 0x66, 0xa8, 0xa4, 0xc2, 0xc5, 0xe3, 0x0b, 0xd1, 0xe2, 0x02, 0xd2, 0x21, 0x24, + 0xc2, 0xc5, 0x0a, 0xd6, 0x2a, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe1, 0x38, 0xc5, 0x9d, + 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, + 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, + 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xc4, 0x9a, 0xb4, 0xcc, 0x3c, 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, + 0x54, 0x5d, 0x0c, 0xf7, 0x55, 0x60, 0x3a, 0xb9, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, + 0x50, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x39, 0x1f, 0x23, 0x72, 0xda, 0x00, 0x00, 0x00, } func (m *MintingDenom) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/owner.pb.go b/x/fiattokenfactory/types/owner.pb.go index a8477a6..5c6ce5a 100644 --- a/x/fiattokenfactory/types/owner.pb.go +++ b/x/fiattokenfactory/types/owner.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/owner.proto +// source: circle/fiattokenfactory/v1/owner.proto package types @@ -30,7 +30,7 @@ func (m *Owner) Reset() { *m = Owner{} } func (m *Owner) String() string { return proto.CompactTextString(m) } func (*Owner) ProtoMessage() {} func (*Owner) Descriptor() ([]byte, []int) { - return fileDescriptor_c0cba5663ac2a21a, []int{0} + return fileDescriptor_20e26527015b0da7, []int{0} } func (m *Owner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,24 +67,26 @@ func (m *Owner) GetAddress() string { } func init() { - proto.RegisterType((*Owner)(nil), "noble.fiattokenfactory.Owner") + proto.RegisterType((*Owner)(nil), "circle.fiattokenfactory.v1.Owner") } -func init() { proto.RegisterFile("fiattokenfactory/owner.proto", fileDescriptor_c0cba5663ac2a21a) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/owner.proto", fileDescriptor_20e26527015b0da7) +} -var fileDescriptor_c0cba5663ac2a21a = []byte{ - // 161 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0x2f, 0xcf, - 0x4b, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, 0xd5, - 0x43, 0x57, 0xa3, 0xa4, 0xc8, 0xc5, 0xea, 0x0f, 0x52, 0x26, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, - 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, - 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, - 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, - 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x66, 0x51, 0x72, 0x4e, 0x6a, 0x5a, 0x66, 0x9e, 0x3e, - 0xd8, 0x26, 0x5d, 0x0c, 0xd7, 0x54, 0xe8, 0x63, 0x08, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, - 0x81, 0x5d, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xe3, 0x5a, 0x19, 0xc1, 0x00, 0x00, - 0x00, +var fileDescriptor_20e26527015b0da7 = []byte{ + // 170 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0xcf, 0x2f, 0xcf, 0x4b, 0x2d, 0xd2, 0x2b, 0x28, 0xca, + 0x2f, 0xc9, 0x17, 0x92, 0x82, 0xa8, 0xd3, 0x43, 0x57, 0xa7, 0x57, 0x66, 0xa8, 0xa4, 0xc8, 0xc5, + 0xea, 0x0f, 0x52, 0x2a, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, + 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, + 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, + 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, + 0xc4, 0x8e, 0xb4, 0xcc, 0x3c, 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, 0x54, 0x5d, 0x0c, 0x47, 0x55, 0x60, + 0xba, 0xb3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x4a, 0x63, 0x40, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xaa, 0x9c, 0xc4, 0xc3, 0xcf, 0x00, 0x00, 0x00, } func (m *Owner) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/params.pb.go b/x/fiattokenfactory/types/params.pb.go index 7d9d5c5..05131df 100644 --- a/x/fiattokenfactory/types/params.pb.go +++ b/x/fiattokenfactory/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/params.proto +// source: circle/fiattokenfactory/v1/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_59029b001dd68fb6, []int{0} + return fileDescriptor_7328f0f936de304b, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -60,24 +60,26 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "noble.fiattokenfactory.Params") + proto.RegisterType((*Params)(nil), "circle.fiattokenfactory.v1.Params") } -func init() { proto.RegisterFile("fiattokenfactory/params.proto", fileDescriptor_59029b001dd68fb6) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/params.proto", fileDescriptor_7328f0f936de304b) +} -var fileDescriptor_59029b001dd68fb6 = []byte{ - // 161 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, - 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, - 0xd5, 0x43, 0x57, 0x24, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa2, 0x0f, 0x62, 0x41, 0x54, - 0x2b, 0xf1, 0x71, 0xb1, 0x05, 0x80, 0x75, 0x5b, 0xb1, 0xcc, 0x58, 0x20, 0xcf, 0xe0, 0x14, 0x77, - 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, - 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x2e, 0xe9, 0x99, 0x25, 0x19, 0xa5, - 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc9, 0x99, 0x45, 0xc9, 0x39, 0xa9, 0x69, 0x99, 0x79, 0xfa, - 0x60, 0xcb, 0x74, 0x31, 0x5c, 0x54, 0xa1, 0x8f, 0x21, 0x54, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, - 0x06, 0xb6, 0xd6, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x10, 0x2a, 0x61, 0xd4, 0xc5, 0x00, 0x00, - 0x00, +var fileDescriptor_7328f0f936de304b = []byte{ + // 170 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0x28, 0xd4, 0x43, 0x57, 0xa8, 0x57, 0x66, 0x28, 0x25, 0x92, + 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa6, 0x0f, 0x62, 0x41, 0x74, 0x28, 0xf1, 0x71, 0xb1, 0x05, 0x80, + 0x4d, 0xb0, 0x62, 0x99, 0xb1, 0x40, 0x9e, 0xc1, 0x29, 0xee, 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, 0x5c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, + 0x21, 0xd6, 0xa4, 0x65, 0xe6, 0xe9, 0xe7, 0xe5, 0x27, 0xe5, 0xa4, 0xea, 0x62, 0x38, 0xac, 0x02, + 0xd3, 0xad, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x6b, 0x8d, 0x01, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x6c, 0x01, 0xc0, 0x95, 0xd3, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/paused.pb.go b/x/fiattokenfactory/types/paused.pb.go index fb6edf1..6b2dc13 100644 --- a/x/fiattokenfactory/types/paused.pb.go +++ b/x/fiattokenfactory/types/paused.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/paused.proto +// source: circle/fiattokenfactory/v1/paused.proto package types @@ -30,7 +30,7 @@ func (m *Paused) Reset() { *m = Paused{} } func (m *Paused) String() string { return proto.CompactTextString(m) } func (*Paused) ProtoMessage() {} func (*Paused) Descriptor() ([]byte, []int) { - return fileDescriptor_9165baf6a99b8e45, []int{0} + return fileDescriptor_e36d0fde6b443e83, []int{0} } func (m *Paused) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,23 +67,26 @@ func (m *Paused) GetPaused() bool { } func init() { - proto.RegisterType((*Paused)(nil), "noble.fiattokenfactory.Paused") + proto.RegisterType((*Paused)(nil), "circle.fiattokenfactory.v1.Paused") } -func init() { proto.RegisterFile("fiattokenfactory/paused.proto", fileDescriptor_9165baf6a99b8e45) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/paused.proto", fileDescriptor_e36d0fde6b443e83) +} -var fileDescriptor_9165baf6a99b8e45 = []byte{ - // 157 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, - 0x2d, 0x4e, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, - 0xd5, 0x43, 0x57, 0xa4, 0xa4, 0xc0, 0xc5, 0x16, 0x00, 0x56, 0x27, 0x24, 0xc6, 0xc5, 0x06, 0xd1, - 0x21, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x11, 0x04, 0xe5, 0x39, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, - 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, - 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, - 0xae, 0x7e, 0x72, 0x66, 0x51, 0x72, 0x4e, 0x6a, 0x5a, 0x66, 0x9e, 0x3e, 0xd8, 0x22, 0x5d, 0x0c, - 0xd7, 0x54, 0xe8, 0x63, 0x08, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x68, 0x0c, - 0x08, 0x00, 0x00, 0xff, 0xff, 0x1b, 0x01, 0x3b, 0x95, 0xc1, 0x00, 0x00, 0x00, +var fileDescriptor_e36d0fde6b443e83 = []byte{ + // 166 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0x2f, 0x48, 0x2c, 0x2d, 0x4e, 0x4d, 0xd1, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0x28, 0xd4, 0x43, 0x57, 0xa8, 0x57, 0x66, 0xa8, 0xa4, 0xc0, + 0xc5, 0x16, 0x00, 0x56, 0x2b, 0x24, 0xc6, 0xc5, 0x06, 0xd1, 0x25, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, + 0x11, 0x04, 0xe5, 0x39, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, + 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, + 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xc4, 0x8a, 0xb4, 0xcc, + 0x3c, 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, 0x54, 0x5d, 0x0c, 0x47, 0x55, 0x60, 0xba, 0xb3, 0xa4, 0xb2, + 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x48, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0x94, + 0x80, 0xc1, 0xcf, 0x00, 0x00, 0x00, } func (m *Paused) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/pauser.pb.go b/x/fiattokenfactory/types/pauser.pb.go index 1b2acaa..2b66be2 100644 --- a/x/fiattokenfactory/types/pauser.pb.go +++ b/x/fiattokenfactory/types/pauser.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/pauser.proto +// source: circle/fiattokenfactory/v1/pauser.proto package types @@ -30,7 +30,7 @@ func (m *Pauser) Reset() { *m = Pauser{} } func (m *Pauser) String() string { return proto.CompactTextString(m) } func (*Pauser) ProtoMessage() {} func (*Pauser) Descriptor() ([]byte, []int) { - return fileDescriptor_9e1cae75310a046a, []int{0} + return fileDescriptor_23d569c67669b84f, []int{0} } func (m *Pauser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,24 +67,26 @@ func (m *Pauser) GetAddress() string { } func init() { - proto.RegisterType((*Pauser)(nil), "noble.fiattokenfactory.Pauser") + proto.RegisterType((*Pauser)(nil), "circle.fiattokenfactory.v1.Pauser") } -func init() { proto.RegisterFile("fiattokenfactory/pauser.proto", fileDescriptor_9e1cae75310a046a) } +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/pauser.proto", fileDescriptor_23d569c67669b84f) +} -var fileDescriptor_9e1cae75310a046a = []byte{ - // 162 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcb, 0x4c, 0x2c, - 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, - 0x2d, 0x4e, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xcb, 0xcb, 0x4f, 0xca, 0x49, - 0xd5, 0x43, 0x57, 0xa4, 0xa4, 0xc4, 0xc5, 0x16, 0x00, 0x56, 0x27, 0x24, 0xc1, 0xc5, 0x9e, 0x98, - 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, - 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, - 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, - 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x66, 0x51, 0x72, 0x4e, 0x6a, 0x5a, 0x66, 0x9e, - 0x3e, 0xd8, 0x2a, 0x5d, 0x0c, 0xf7, 0x54, 0xe8, 0x63, 0x08, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, - 0xb1, 0x81, 0x9d, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x06, 0xa6, 0x66, 0xb7, 0xc3, 0x00, - 0x00, 0x00, +var fileDescriptor_23d569c67669b84f = []byte{ + // 171 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x2c, 0x4a, + 0xce, 0x49, 0xd5, 0x4f, 0xcb, 0x4c, 0x2c, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, + 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0xd4, 0x2f, 0x48, 0x2c, 0x2d, 0x4e, 0x2d, 0xd2, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x82, 0x28, 0xd4, 0x43, 0x57, 0xa8, 0x57, 0x66, 0xa8, 0xa4, 0xc4, + 0xc5, 0x16, 0x00, 0x56, 0x2b, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, + 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0xc5, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, + 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, + 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x4b, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, + 0x3e, 0xc4, 0x92, 0xb4, 0xcc, 0x3c, 0xfd, 0xbc, 0xfc, 0xa4, 0x9c, 0x54, 0x5d, 0x0c, 0x67, 0x55, + 0x60, 0xba, 0xb4, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x4c, 0x63, 0x40, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x60, 0xea, 0xd2, 0x89, 0xd1, 0x00, 0x00, 0x00, } func (m *Pauser) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/query.pb.go b/x/fiattokenfactory/types/query.pb.go index 05c8be1..50eee69 100644 --- a/x/fiattokenfactory/types/query.pb.go +++ b/x/fiattokenfactory/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/query.proto +// source: circle/fiattokenfactory/v1/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_f04e1100d4ebe501, []int{0} + return fileDescriptor_0e79ac8fb1676620, []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_f04e1100d4ebe501, []int{1} + return fileDescriptor_0e79ac8fb1676620, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *QueryGetBlacklistedRequest) Reset() { *m = QueryGetBlacklistedR func (m *QueryGetBlacklistedRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetBlacklistedRequest) ProtoMessage() {} func (*QueryGetBlacklistedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{2} + return fileDescriptor_0e79ac8fb1676620, []int{2} } func (m *QueryGetBlacklistedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +165,7 @@ func (m *QueryGetBlacklistedResponse) Reset() { *m = QueryGetBlacklisted func (m *QueryGetBlacklistedResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetBlacklistedResponse) ProtoMessage() {} func (*QueryGetBlacklistedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{3} + return fileDescriptor_0e79ac8fb1676620, []int{3} } func (m *QueryGetBlacklistedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ func (m *QueryAllBlacklistedRequest) Reset() { *m = QueryAllBlacklistedR func (m *QueryAllBlacklistedRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBlacklistedRequest) ProtoMessage() {} func (*QueryAllBlacklistedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{4} + return fileDescriptor_0e79ac8fb1676620, []int{4} } func (m *QueryAllBlacklistedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +254,7 @@ func (m *QueryAllBlacklistedResponse) Reset() { *m = QueryAllBlacklisted func (m *QueryAllBlacklistedResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBlacklistedResponse) ProtoMessage() {} func (*QueryAllBlacklistedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{5} + return fileDescriptor_0e79ac8fb1676620, []int{5} } func (m *QueryAllBlacklistedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +304,7 @@ func (m *QueryGetPausedRequest) Reset() { *m = QueryGetPausedRequest{} } func (m *QueryGetPausedRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPausedRequest) ProtoMessage() {} func (*QueryGetPausedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{6} + return fileDescriptor_0e79ac8fb1676620, []int{6} } func (m *QueryGetPausedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -341,7 +341,7 @@ func (m *QueryGetPausedResponse) Reset() { *m = QueryGetPausedResponse{} func (m *QueryGetPausedResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPausedResponse) ProtoMessage() {} func (*QueryGetPausedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{7} + return fileDescriptor_0e79ac8fb1676620, []int{7} } func (m *QueryGetPausedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -384,7 +384,7 @@ func (m *QueryGetMasterMinterRequest) Reset() { *m = QueryGetMasterMinte func (m *QueryGetMasterMinterRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMasterMinterRequest) ProtoMessage() {} func (*QueryGetMasterMinterRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{8} + return fileDescriptor_0e79ac8fb1676620, []int{8} } func (m *QueryGetMasterMinterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -414,14 +414,14 @@ func (m *QueryGetMasterMinterRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryGetMasterMinterRequest proto.InternalMessageInfo type QueryGetMasterMinterResponse struct { - MasterMinter MasterMinter `protobuf:"bytes,1,opt,name=masterMinter,proto3" json:"masterMinter"` + MasterMinter MasterMinter `protobuf:"bytes,1,opt,name=master_minter,json=masterMinter,proto3" json:"master_minter"` } func (m *QueryGetMasterMinterResponse) Reset() { *m = QueryGetMasterMinterResponse{} } func (m *QueryGetMasterMinterResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMasterMinterResponse) ProtoMessage() {} func (*QueryGetMasterMinterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{9} + return fileDescriptor_0e79ac8fb1676620, []int{9} } func (m *QueryGetMasterMinterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ func (m *QueryGetMintersRequest) Reset() { *m = QueryGetMintersRequest{} func (m *QueryGetMintersRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMintersRequest) ProtoMessage() {} func (*QueryGetMintersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{10} + return fileDescriptor_0e79ac8fb1676620, []int{10} } func (m *QueryGetMintersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -509,7 +509,7 @@ func (m *QueryGetMintersResponse) Reset() { *m = QueryGetMintersResponse func (m *QueryGetMintersResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMintersResponse) ProtoMessage() {} func (*QueryGetMintersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{11} + return fileDescriptor_0e79ac8fb1676620, []int{11} } func (m *QueryGetMintersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -553,7 +553,7 @@ func (m *QueryAllMintersRequest) Reset() { *m = QueryAllMintersRequest{} func (m *QueryAllMintersRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMintersRequest) ProtoMessage() {} func (*QueryAllMintersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{12} + return fileDescriptor_0e79ac8fb1676620, []int{12} } func (m *QueryAllMintersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -598,7 +598,7 @@ func (m *QueryAllMintersResponse) Reset() { *m = QueryAllMintersResponse func (m *QueryAllMintersResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMintersResponse) ProtoMessage() {} func (*QueryAllMintersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{13} + return fileDescriptor_0e79ac8fb1676620, []int{13} } func (m *QueryAllMintersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -648,7 +648,7 @@ func (m *QueryGetPauserRequest) Reset() { *m = QueryGetPauserRequest{} } func (m *QueryGetPauserRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPauserRequest) ProtoMessage() {} func (*QueryGetPauserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{14} + return fileDescriptor_0e79ac8fb1676620, []int{14} } func (m *QueryGetPauserRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -685,7 +685,7 @@ func (m *QueryGetPauserResponse) Reset() { *m = QueryGetPauserResponse{} func (m *QueryGetPauserResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPauserResponse) ProtoMessage() {} func (*QueryGetPauserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{15} + return fileDescriptor_0e79ac8fb1676620, []int{15} } func (m *QueryGetPauserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -728,7 +728,7 @@ func (m *QueryGetBlacklisterRequest) Reset() { *m = QueryGetBlacklisterR func (m *QueryGetBlacklisterRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetBlacklisterRequest) ProtoMessage() {} func (*QueryGetBlacklisterRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{16} + return fileDescriptor_0e79ac8fb1676620, []int{16} } func (m *QueryGetBlacklisterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -765,7 +765,7 @@ func (m *QueryGetBlacklisterResponse) Reset() { *m = QueryGetBlacklister func (m *QueryGetBlacklisterResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetBlacklisterResponse) ProtoMessage() {} func (*QueryGetBlacklisterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{17} + return fileDescriptor_0e79ac8fb1676620, []int{17} } func (m *QueryGetBlacklisterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -808,7 +808,7 @@ func (m *QueryGetOwnerRequest) Reset() { *m = QueryGetOwnerRequest{} } func (m *QueryGetOwnerRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetOwnerRequest) ProtoMessage() {} func (*QueryGetOwnerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{18} + return fileDescriptor_0e79ac8fb1676620, []int{18} } func (m *QueryGetOwnerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -845,7 +845,7 @@ func (m *QueryGetOwnerResponse) Reset() { *m = QueryGetOwnerResponse{} } func (m *QueryGetOwnerResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetOwnerResponse) ProtoMessage() {} func (*QueryGetOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{19} + return fileDescriptor_0e79ac8fb1676620, []int{19} } func (m *QueryGetOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -882,14 +882,14 @@ func (m *QueryGetOwnerResponse) GetOwner() Owner { } type QueryGetMinterControllerRequest struct { - ControllerAddress string `protobuf:"bytes,1,opt,name=controllerAddress,proto3" json:"controllerAddress,omitempty"` + ControllerAddress string `protobuf:"bytes,1,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"` } func (m *QueryGetMinterControllerRequest) Reset() { *m = QueryGetMinterControllerRequest{} } func (m *QueryGetMinterControllerRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMinterControllerRequest) ProtoMessage() {} func (*QueryGetMinterControllerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{20} + return fileDescriptor_0e79ac8fb1676620, []int{20} } func (m *QueryGetMinterControllerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -926,14 +926,14 @@ func (m *QueryGetMinterControllerRequest) GetControllerAddress() string { } type QueryGetMinterControllerResponse struct { - MinterController MinterController `protobuf:"bytes,1,opt,name=minterController,proto3" json:"minterController"` + MinterController MinterController `protobuf:"bytes,1,opt,name=minter_controller,json=minterController,proto3" json:"minter_controller"` } func (m *QueryGetMinterControllerResponse) Reset() { *m = QueryGetMinterControllerResponse{} } func (m *QueryGetMinterControllerResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMinterControllerResponse) ProtoMessage() {} func (*QueryGetMinterControllerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{21} + return fileDescriptor_0e79ac8fb1676620, []int{21} } func (m *QueryGetMinterControllerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -977,7 +977,7 @@ func (m *QueryAllMinterControllerRequest) Reset() { *m = QueryAllMinterC func (m *QueryAllMinterControllerRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMinterControllerRequest) ProtoMessage() {} func (*QueryAllMinterControllerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{22} + return fileDescriptor_0e79ac8fb1676620, []int{22} } func (m *QueryAllMinterControllerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1014,7 +1014,7 @@ func (m *QueryAllMinterControllerRequest) GetPagination() *query.PageRequest { } type QueryAllMinterControllerResponse struct { - MinterController []MinterController `protobuf:"bytes,1,rep,name=minterController,proto3" json:"minterController"` + MinterController []MinterController `protobuf:"bytes,1,rep,name=minter_controller,json=minterController,proto3" json:"minter_controller"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -1022,7 +1022,7 @@ func (m *QueryAllMinterControllerResponse) Reset() { *m = QueryAllMinter func (m *QueryAllMinterControllerResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMinterControllerResponse) ProtoMessage() {} func (*QueryAllMinterControllerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{23} + return fileDescriptor_0e79ac8fb1676620, []int{23} } func (m *QueryAllMinterControllerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1072,7 +1072,7 @@ func (m *QueryGetMintingDenomRequest) Reset() { *m = QueryGetMintingDeno func (m *QueryGetMintingDenomRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMintingDenomRequest) ProtoMessage() {} func (*QueryGetMintingDenomRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{24} + return fileDescriptor_0e79ac8fb1676620, []int{24} } func (m *QueryGetMintingDenomRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1102,14 +1102,14 @@ func (m *QueryGetMintingDenomRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryGetMintingDenomRequest proto.InternalMessageInfo type QueryGetMintingDenomResponse struct { - MintingDenom MintingDenom `protobuf:"bytes,1,opt,name=mintingDenom,proto3" json:"mintingDenom"` + MintingDenom MintingDenom `protobuf:"bytes,1,opt,name=minting_denom,json=mintingDenom,proto3" json:"minting_denom"` } func (m *QueryGetMintingDenomResponse) Reset() { *m = QueryGetMintingDenomResponse{} } func (m *QueryGetMintingDenomResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMintingDenomResponse) ProtoMessage() {} func (*QueryGetMintingDenomResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f04e1100d4ebe501, []int{25} + return fileDescriptor_0e79ac8fb1676620, []int{25} } func (m *QueryGetMintingDenomResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1146,109 +1146,111 @@ func (m *QueryGetMintingDenomResponse) GetMintingDenom() MintingDenom { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "noble.fiattokenfactory.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "noble.fiattokenfactory.QueryParamsResponse") - proto.RegisterType((*QueryGetBlacklistedRequest)(nil), "noble.fiattokenfactory.QueryGetBlacklistedRequest") - proto.RegisterType((*QueryGetBlacklistedResponse)(nil), "noble.fiattokenfactory.QueryGetBlacklistedResponse") - proto.RegisterType((*QueryAllBlacklistedRequest)(nil), "noble.fiattokenfactory.QueryAllBlacklistedRequest") - proto.RegisterType((*QueryAllBlacklistedResponse)(nil), "noble.fiattokenfactory.QueryAllBlacklistedResponse") - proto.RegisterType((*QueryGetPausedRequest)(nil), "noble.fiattokenfactory.QueryGetPausedRequest") - proto.RegisterType((*QueryGetPausedResponse)(nil), "noble.fiattokenfactory.QueryGetPausedResponse") - proto.RegisterType((*QueryGetMasterMinterRequest)(nil), "noble.fiattokenfactory.QueryGetMasterMinterRequest") - proto.RegisterType((*QueryGetMasterMinterResponse)(nil), "noble.fiattokenfactory.QueryGetMasterMinterResponse") - proto.RegisterType((*QueryGetMintersRequest)(nil), "noble.fiattokenfactory.QueryGetMintersRequest") - proto.RegisterType((*QueryGetMintersResponse)(nil), "noble.fiattokenfactory.QueryGetMintersResponse") - proto.RegisterType((*QueryAllMintersRequest)(nil), "noble.fiattokenfactory.QueryAllMintersRequest") - proto.RegisterType((*QueryAllMintersResponse)(nil), "noble.fiattokenfactory.QueryAllMintersResponse") - proto.RegisterType((*QueryGetPauserRequest)(nil), "noble.fiattokenfactory.QueryGetPauserRequest") - proto.RegisterType((*QueryGetPauserResponse)(nil), "noble.fiattokenfactory.QueryGetPauserResponse") - proto.RegisterType((*QueryGetBlacklisterRequest)(nil), "noble.fiattokenfactory.QueryGetBlacklisterRequest") - proto.RegisterType((*QueryGetBlacklisterResponse)(nil), "noble.fiattokenfactory.QueryGetBlacklisterResponse") - proto.RegisterType((*QueryGetOwnerRequest)(nil), "noble.fiattokenfactory.QueryGetOwnerRequest") - proto.RegisterType((*QueryGetOwnerResponse)(nil), "noble.fiattokenfactory.QueryGetOwnerResponse") - proto.RegisterType((*QueryGetMinterControllerRequest)(nil), "noble.fiattokenfactory.QueryGetMinterControllerRequest") - proto.RegisterType((*QueryGetMinterControllerResponse)(nil), "noble.fiattokenfactory.QueryGetMinterControllerResponse") - proto.RegisterType((*QueryAllMinterControllerRequest)(nil), "noble.fiattokenfactory.QueryAllMinterControllerRequest") - proto.RegisterType((*QueryAllMinterControllerResponse)(nil), "noble.fiattokenfactory.QueryAllMinterControllerResponse") - proto.RegisterType((*QueryGetMintingDenomRequest)(nil), "noble.fiattokenfactory.QueryGetMintingDenomRequest") - proto.RegisterType((*QueryGetMintingDenomResponse)(nil), "noble.fiattokenfactory.QueryGetMintingDenomResponse") -} - -func init() { proto.RegisterFile("fiattokenfactory/query.proto", fileDescriptor_f04e1100d4ebe501) } - -var fileDescriptor_f04e1100d4ebe501 = []byte{ - // 1122 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x98, 0xcf, 0x6f, 0xdc, 0x44, - 0x14, 0xc7, 0x33, 0x0d, 0x49, 0xc4, 0xa4, 0x42, 0x61, 0x1a, 0xd2, 0xca, 0x24, 0xde, 0x30, 0x6d, - 0x9a, 0xd0, 0x74, 0x6d, 0x25, 0x05, 0x0a, 0x12, 0xa8, 0x4a, 0x28, 0xf4, 0x80, 0x4a, 0xc3, 0x22, - 0x71, 0xc8, 0x81, 0xe0, 0xdd, 0x75, 0x16, 0x53, 0xaf, 0x67, 0x3b, 0x76, 0x80, 0xa8, 0x2a, 0x07, - 0x6e, 0x88, 0x03, 0x48, 0x48, 0xdc, 0x38, 0x55, 0x42, 0x5c, 0x38, 0x71, 0xe4, 0x0f, 0xa0, 0x07, - 0x0e, 0x95, 0xb8, 0x70, 0x42, 0x51, 0xc2, 0x1f, 0x82, 0x3c, 0xf3, 0xbc, 0x1e, 0xef, 0xd8, 0x6b, - 0x3b, 0x0a, 0xb7, 0xac, 0xe7, 0xfd, 0xf8, 0x8c, 0xe7, 0xfb, 0xde, 0xbc, 0x18, 0x2f, 0xee, 0x7b, - 0x4e, 0x14, 0xb1, 0xfb, 0x6e, 0xb0, 0xef, 0x74, 0x22, 0xc6, 0x0f, 0xed, 0x07, 0x07, 0x2e, 0x3f, - 0xb4, 0x06, 0x9c, 0x45, 0x8c, 0x2c, 0x04, 0xac, 0xed, 0xbb, 0xd6, 0xa8, 0x8d, 0x71, 0xad, 0xc3, - 0xc2, 0x3e, 0x0b, 0xed, 0xb6, 0x13, 0xba, 0xd2, 0xc1, 0xfe, 0x7c, 0xa3, 0xed, 0x46, 0xce, 0x86, - 0x3d, 0x70, 0x7a, 0x5e, 0xe0, 0x44, 0x1e, 0x0b, 0x64, 0x0c, 0x83, 0x6a, 0x19, 0xda, 0xbe, 0xd3, - 0xb9, 0xef, 0x7b, 0x61, 0xe4, 0x76, 0x2b, 0xd8, 0x70, 0xb0, 0xb9, 0xa2, 0xd9, 0xf4, 0x9d, 0x78, - 0x79, 0xaf, 0xef, 0x05, 0xa9, 0xd5, 0x9a, 0x6e, 0x25, 0x96, 0xf7, 0x3a, 0x2c, 0x88, 0x38, 0xf3, - 0xfd, 0xa1, 0xa5, 0x59, 0x60, 0x19, 0x16, 0xe7, 0xf3, 0x82, 0xc8, 0x0b, 0x7a, 0x7b, 0x5d, 0x37, - 0x60, 0x7d, 0xb0, 0xd2, 0xdf, 0x1f, 0xfb, 0x22, 0x18, 0xe6, 0x58, 0xd2, 0x56, 0x07, 0x0e, 0x77, - 0xfa, 0xe1, 0x98, 0xe5, 0x83, 0x70, 0xf8, 0x56, 0x0a, 0x96, 0x93, 0xe0, 0xf3, 0x3d, 0xd6, 0x63, - 0xe2, 0x4f, 0x3b, 0xfe, 0x2b, 0x01, 0xea, 0x31, 0xd6, 0xf3, 0x5d, 0xdb, 0x19, 0x78, 0xb6, 0x13, - 0x04, 0x2c, 0x12, 0x67, 0x01, 0x19, 0xe9, 0x3c, 0x26, 0x1f, 0xc4, 0xc7, 0xb5, 0x23, 0x30, 0x5a, - 0xee, 0x83, 0x03, 0x37, 0x8c, 0xe8, 0x87, 0xf8, 0x42, 0xe6, 0x69, 0x38, 0x60, 0x41, 0xe8, 0x92, - 0x37, 0xf1, 0xb4, 0xc4, 0xbd, 0x84, 0x96, 0xd1, 0xda, 0xec, 0xa6, 0x69, 0xe5, 0xcb, 0xc1, 0x92, - 0x7e, 0xdb, 0xcf, 0x3c, 0xf9, 0xa7, 0x31, 0xd1, 0x02, 0x1f, 0xfa, 0x1a, 0x36, 0x44, 0xd0, 0x3b, - 0x6e, 0xb4, 0x9d, 0x1e, 0x38, 0xa4, 0x24, 0x97, 0xf0, 0x8c, 0xd3, 0xed, 0x72, 0x37, 0x94, 0xc1, - 0x9f, 0x6d, 0x25, 0x3f, 0xe9, 0x67, 0xf8, 0xc5, 0x5c, 0x3f, 0x80, 0x7a, 0x0f, 0xcf, 0x2a, 0xfa, - 0x01, 0xb2, 0xcb, 0x45, 0x64, 0x4a, 0x04, 0xc0, 0x53, 0xbd, 0x69, 0x17, 0x18, 0xb7, 0x7c, 0x3f, - 0x87, 0xf1, 0x5d, 0x8c, 0x53, 0x35, 0x43, 0xa6, 0xab, 0x96, 0x94, 0xbe, 0x15, 0x4b, 0xdf, 0x92, - 0xb5, 0x02, 0xd2, 0xb7, 0x76, 0x9c, 0x9e, 0x0b, 0xbe, 0x2d, 0xc5, 0x93, 0xfe, 0x86, 0x60, 0x4b, - 0xa3, 0x69, 0x8a, 0xb6, 0x34, 0x79, 0xfa, 0x2d, 0x91, 0x3b, 0x19, 0xe8, 0x73, 0x02, 0x7a, 0xb5, - 0x14, 0x5a, 0x92, 0x64, 0xa8, 0x2f, 0xe2, 0x17, 0x92, 0x73, 0xd8, 0x11, 0xaa, 0x4c, 0xd4, 0xf2, - 0x11, 0x5e, 0x18, 0x5d, 0x50, 0x05, 0x13, 0x3f, 0x29, 0x17, 0x4c, 0x6c, 0x95, 0x0a, 0x26, 0xfe, - 0x45, 0x97, 0xd2, 0x83, 0xbf, 0x2b, 0x2a, 0xfb, 0xae, 0xa8, 0xc7, 0x24, 0x6d, 0x80, 0x17, 0xf3, - 0x97, 0x21, 0xf9, 0xfb, 0xf8, 0x7c, 0x5f, 0x79, 0x0e, 0x08, 0x57, 0x8a, 0x10, 0xd4, 0x18, 0x00, - 0x92, 0xf1, 0xa7, 0x9b, 0xe9, 0x36, 0xe5, 0x93, 0xb0, 0x5c, 0xbb, 0xbb, 0xf8, 0xa2, 0xe6, 0x03, - 0x78, 0xb7, 0xf0, 0x0c, 0xf4, 0x17, 0x20, 0x6b, 0x14, 0x92, 0x49, 0x33, 0x80, 0x4a, 0xbc, 0xe8, - 0x27, 0xc0, 0xb3, 0xe5, 0xfb, 0x23, 0x3c, 0x67, 0xa5, 0xd3, 0xc7, 0x08, 0xf0, 0xd5, 0x14, 0x79, - 0xf8, 0x93, 0xf5, 0xf1, 0xff, 0x3f, 0x5d, 0xf2, 0x22, 0x5d, 0x72, 0x4d, 0x97, 0xbc, 0x92, 0x2e, - 0x79, 0x46, 0x97, 0x9c, 0x2e, 0xe6, 0x35, 0xb2, 0x61, 0xd6, 0xdc, 0x76, 0xc5, 0xf3, 0x6b, 0x9b, - 0x57, 0x6f, 0x57, 0x5c, 0xaf, 0x6d, 0x4e, 0x17, 0xf0, 0x7c, 0x92, 0xeb, 0x5e, 0x7c, 0xcb, 0x24, - 0x0c, 0xad, 0xf4, 0x95, 0xc0, 0x73, 0xc8, 0xfe, 0x06, 0x9e, 0x12, 0xd7, 0x11, 0xe4, 0x5d, 0x2a, - 0xca, 0x2b, 0xbc, 0x20, 0xa3, 0xf4, 0xa0, 0xf7, 0x70, 0x23, 0x2b, 0xe5, 0xb7, 0x87, 0x17, 0x68, - 0xa2, 0xbb, 0xeb, 0xf8, 0xf9, 0xf4, 0x56, 0xdd, 0xca, 0x54, 0x84, 0xbe, 0x40, 0xbf, 0xc2, 0xcb, - 0xc5, 0x01, 0x81, 0x77, 0x17, 0xcf, 0xf5, 0x47, 0xd6, 0x00, 0x7d, 0x6d, 0xbc, 0xdc, 0x52, 0x7b, - 0xd8, 0x85, 0x16, 0x87, 0x7a, 0xb0, 0xa1, 0xa1, 0xb8, 0xf5, 0x0d, 0x9d, 0x55, 0x21, 0xfd, 0x81, - 0x60, 0xaf, 0xb9, 0xb9, 0xc6, 0xee, 0x75, 0xf2, 0x2c, 0xf6, 0x7a, 0x76, 0xc5, 0xa6, 0xf6, 0x64, - 0x39, 0xfd, 0xdc, 0x8e, 0x87, 0x9f, 0xbc, 0x9e, 0x9c, 0x59, 0x56, 0x7a, 0xb2, 0xf2, 0xbc, 0xb4, - 0x27, 0x2b, 0xb6, 0xc3, 0x9e, 0xac, 0x3c, 0xdb, 0x3c, 0x9a, 0xc3, 0x53, 0x22, 0x21, 0xf9, 0x06, - 0xe1, 0x69, 0x39, 0x76, 0x90, 0x6b, 0x45, 0xe1, 0xf4, 0x49, 0xc7, 0x58, 0xaf, 0x64, 0x2b, 0xe9, - 0xe9, 0xd5, 0xaf, 0xff, 0xfa, 0xf7, 0x87, 0x73, 0xcb, 0xc4, 0xb4, 0x85, 0x93, 0x5d, 0x30, 0xcc, - 0x91, 0x5f, 0x11, 0x9e, 0x55, 0x6e, 0x65, 0xb2, 0x39, 0x36, 0x49, 0xee, 0x3c, 0x64, 0xdc, 0xa8, - 0xe5, 0x03, 0x80, 0xaf, 0x0a, 0x40, 0x9b, 0x34, 0x8b, 0x00, 0x95, 0xc1, 0xc0, 0x7e, 0x08, 0x97, - 0xd4, 0x23, 0xf2, 0x33, 0xc2, 0xcf, 0x29, 0xe1, 0xb6, 0x7c, 0xbf, 0x04, 0x39, 0x77, 0x3c, 0x2a, - 0x41, 0xce, 0x9f, 0x75, 0xe8, 0xba, 0x40, 0x5e, 0x21, 0x97, 0x2b, 0x20, 0x93, 0xef, 0xc4, 0x21, - 0xc7, 0xc3, 0x01, 0x69, 0x96, 0xbd, 0x9f, 0xcc, 0x8c, 0x62, 0x58, 0x55, 0xcd, 0xab, 0x1f, 0xb5, - 0xc0, 0xf8, 0x05, 0xe1, 0xf3, 0xea, 0xe4, 0x40, 0x4a, 0xcf, 0x2d, 0x67, 0x94, 0x31, 0x5e, 0xa9, - 0xe7, 0x04, 0x8c, 0x4d, 0xc1, 0xb8, 0x4a, 0x56, 0x8a, 0x18, 0x33, 0xff, 0x0f, 0x91, 0x9f, 0x10, - 0x9e, 0x81, 0xbb, 0x98, 0x94, 0xbe, 0x8e, 0xec, 0x44, 0x61, 0xd8, 0x95, 0xed, 0x81, 0x6d, 0x43, - 0xb0, 0xad, 0x93, 0x97, 0x0b, 0xd9, 0xa4, 0x83, 0xa2, 0xc2, 0x1f, 0x11, 0xc6, 0x10, 0x26, 0x56, - 0xa0, 0x55, 0xa6, 0xa6, 0x5a, 0x88, 0xfa, 0x04, 0x43, 0x57, 0x05, 0xe2, 0x4b, 0xa4, 0x51, 0x82, - 0x98, 0xaa, 0x8e, 0x57, 0x54, 0x1d, 0xaf, 0xa7, 0x3a, 0x5e, 0x53, 0x75, 0x9c, 0x3c, 0xce, 0x34, - 0x18, 0x5e, 0xa7, 0xc1, 0xf0, 0x53, 0x34, 0x18, 0x7e, 0x9a, 0x6a, 0xe5, 0xe4, 0x5b, 0x84, 0xa7, - 0xc4, 0x20, 0x41, 0xae, 0x97, 0xe5, 0x52, 0xa7, 0x17, 0xa3, 0x59, 0xd1, 0x1a, 0x98, 0x56, 0x04, - 0x53, 0x83, 0x2c, 0x15, 0x31, 0x89, 0xf9, 0x85, 0xfc, 0x89, 0xf0, 0xdc, 0xe8, 0x7d, 0x49, 0x6e, - 0x56, 0xd3, 0xb5, 0x36, 0x19, 0x18, 0xaf, 0xd7, 0x77, 0x04, 0xdc, 0x77, 0x04, 0xee, 0x2d, 0xf2, - 0xd6, 0x78, 0xd9, 0x29, 0xdf, 0x27, 0xec, 0x87, 0xda, 0xf0, 0xf4, 0x88, 0xfc, 0x8e, 0xf0, 0x85, - 0xd1, 0x1c, 0x71, 0xd9, 0xdc, 0xac, 0x56, 0x06, 0x75, 0x77, 0x34, 0x66, 0x70, 0xa9, 0x5a, 0xeb, - 0xca, 0x8e, 0x64, 0xdb, 0x54, 0x2e, 0xf2, 0x0a, 0x6d, 0x53, 0x9f, 0x36, 0x2a, 0xb4, 0xcd, 0x9c, - 0x19, 0xa4, 0x42, 0xdb, 0x54, 0x3f, 0xeb, 0x6c, 0x7f, 0xfc, 0xe4, 0xd8, 0x44, 0x4f, 0x8f, 0x4d, - 0x74, 0x74, 0x6c, 0xa2, 0xef, 0x4f, 0xcc, 0x89, 0xa7, 0x27, 0xe6, 0xc4, 0xdf, 0x27, 0xe6, 0xc4, - 0xee, 0xed, 0x9e, 0x17, 0x7d, 0x7a, 0xd0, 0xb6, 0x3a, 0xac, 0x6f, 0x77, 0x3c, 0xde, 0xf1, 0xdd, - 0x7d, 0x2f, 0x90, 0x41, 0x9b, 0x5a, 0xd0, 0x2f, 0xf5, 0x3c, 0xd1, 0xe1, 0xc0, 0x0d, 0xdb, 0xd3, - 0xe2, 0x43, 0xcc, 0x8d, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x84, 0x4c, 0x92, 0xa2, 0x79, 0x13, - 0x00, 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "circle.fiattokenfactory.v1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "circle.fiattokenfactory.v1.QueryParamsResponse") + proto.RegisterType((*QueryGetBlacklistedRequest)(nil), "circle.fiattokenfactory.v1.QueryGetBlacklistedRequest") + proto.RegisterType((*QueryGetBlacklistedResponse)(nil), "circle.fiattokenfactory.v1.QueryGetBlacklistedResponse") + proto.RegisterType((*QueryAllBlacklistedRequest)(nil), "circle.fiattokenfactory.v1.QueryAllBlacklistedRequest") + proto.RegisterType((*QueryAllBlacklistedResponse)(nil), "circle.fiattokenfactory.v1.QueryAllBlacklistedResponse") + proto.RegisterType((*QueryGetPausedRequest)(nil), "circle.fiattokenfactory.v1.QueryGetPausedRequest") + proto.RegisterType((*QueryGetPausedResponse)(nil), "circle.fiattokenfactory.v1.QueryGetPausedResponse") + proto.RegisterType((*QueryGetMasterMinterRequest)(nil), "circle.fiattokenfactory.v1.QueryGetMasterMinterRequest") + proto.RegisterType((*QueryGetMasterMinterResponse)(nil), "circle.fiattokenfactory.v1.QueryGetMasterMinterResponse") + proto.RegisterType((*QueryGetMintersRequest)(nil), "circle.fiattokenfactory.v1.QueryGetMintersRequest") + proto.RegisterType((*QueryGetMintersResponse)(nil), "circle.fiattokenfactory.v1.QueryGetMintersResponse") + proto.RegisterType((*QueryAllMintersRequest)(nil), "circle.fiattokenfactory.v1.QueryAllMintersRequest") + proto.RegisterType((*QueryAllMintersResponse)(nil), "circle.fiattokenfactory.v1.QueryAllMintersResponse") + proto.RegisterType((*QueryGetPauserRequest)(nil), "circle.fiattokenfactory.v1.QueryGetPauserRequest") + proto.RegisterType((*QueryGetPauserResponse)(nil), "circle.fiattokenfactory.v1.QueryGetPauserResponse") + proto.RegisterType((*QueryGetBlacklisterRequest)(nil), "circle.fiattokenfactory.v1.QueryGetBlacklisterRequest") + proto.RegisterType((*QueryGetBlacklisterResponse)(nil), "circle.fiattokenfactory.v1.QueryGetBlacklisterResponse") + proto.RegisterType((*QueryGetOwnerRequest)(nil), "circle.fiattokenfactory.v1.QueryGetOwnerRequest") + proto.RegisterType((*QueryGetOwnerResponse)(nil), "circle.fiattokenfactory.v1.QueryGetOwnerResponse") + proto.RegisterType((*QueryGetMinterControllerRequest)(nil), "circle.fiattokenfactory.v1.QueryGetMinterControllerRequest") + proto.RegisterType((*QueryGetMinterControllerResponse)(nil), "circle.fiattokenfactory.v1.QueryGetMinterControllerResponse") + proto.RegisterType((*QueryAllMinterControllerRequest)(nil), "circle.fiattokenfactory.v1.QueryAllMinterControllerRequest") + proto.RegisterType((*QueryAllMinterControllerResponse)(nil), "circle.fiattokenfactory.v1.QueryAllMinterControllerResponse") + proto.RegisterType((*QueryGetMintingDenomRequest)(nil), "circle.fiattokenfactory.v1.QueryGetMintingDenomRequest") + proto.RegisterType((*QueryGetMintingDenomResponse)(nil), "circle.fiattokenfactory.v1.QueryGetMintingDenomResponse") +} + +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/query.proto", fileDescriptor_0e79ac8fb1676620) +} + +var fileDescriptor_0e79ac8fb1676620 = []byte{ + // 1134 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0xdc, 0x44, + 0x14, 0xcf, 0x34, 0x24, 0x11, 0x93, 0x82, 0x9a, 0x69, 0x68, 0x2b, 0x13, 0xb6, 0xed, 0x04, 0x9a, + 0xa4, 0x6d, 0x3c, 0xec, 0x46, 0x14, 0x50, 0x41, 0x22, 0x69, 0x44, 0x25, 0xa4, 0xaa, 0x21, 0x48, + 0x20, 0xf5, 0xd0, 0xc5, 0xbb, 0xeb, 0x2c, 0x56, 0x6d, 0xcf, 0x76, 0xec, 0x04, 0xa2, 0xaa, 0x17, + 0xf8, 0x02, 0x48, 0x08, 0x71, 0xe0, 0xc6, 0x05, 0x71, 0x42, 0x42, 0x48, 0x88, 0x4f, 0x40, 0x0f, + 0x1c, 0x22, 0x71, 0x81, 0x0b, 0x42, 0x09, 0x5f, 0x03, 0x09, 0x79, 0xfc, 0xbc, 0x1e, 0xaf, 0x1d, + 0x7b, 0xbc, 0x84, 0xdb, 0xee, 0xf8, 0xfd, 0xf9, 0xbd, 0x99, 0xdf, 0x7b, 0xf3, 0xb3, 0xf1, 0x95, + 0xae, 0x23, 0xba, 0xae, 0xcd, 0x76, 0x1c, 0x2b, 0x0c, 0xf9, 0x03, 0xdb, 0xdf, 0xb1, 0xba, 0x21, + 0x17, 0xfb, 0x6c, 0xaf, 0xc9, 0x1e, 0xee, 0xda, 0x62, 0xdf, 0x1c, 0x08, 0x1e, 0x72, 0x62, 0xc4, + 0x76, 0xe6, 0xa8, 0x9d, 0xb9, 0xd7, 0x34, 0xae, 0x97, 0xc4, 0xe8, 0xb8, 0x56, 0xf7, 0x81, 0xeb, + 0x04, 0xa1, 0xdd, 0x8b, 0x23, 0x69, 0x5a, 0x0b, 0xb0, 0x36, 0x4b, 0xac, 0x3d, 0x2b, 0x32, 0x6c, + 0x7b, 0x8e, 0x9f, 0xda, 0xb7, 0xca, 0xec, 0xa5, 0x61, 0xbb, 0xcb, 0xfd, 0x50, 0x70, 0xd7, 0x1d, + 0xfa, 0x2c, 0x57, 0xfa, 0x04, 0x3a, 0x68, 0x1c, 0x3f, 0x74, 0xfc, 0x7e, 0xbb, 0x67, 0xfb, 0xdc, + 0x03, 0xfb, 0xb2, 0xdd, 0xe5, 0x1f, 0xfb, 0x43, 0x04, 0x4b, 0x25, 0x76, 0x03, 0x4b, 0x58, 0x5e, + 0xa0, 0x65, 0xb8, 0x1b, 0x0c, 0x77, 0xb9, 0xd2, 0x30, 0x49, 0x7d, 0xb5, 0xcb, 0x03, 0x8f, 0x07, + 0xac, 0x63, 0x05, 0x76, 0x7c, 0xe2, 0x6c, 0xaf, 0xd9, 0xb1, 0x43, 0x2b, 0xb2, 0xeb, 0x3b, 0xbe, + 0x15, 0x3a, 0xdc, 0x07, 0xdb, 0xf9, 0x3e, 0xef, 0x73, 0xf9, 0x93, 0x45, 0xbf, 0x60, 0x75, 0xa1, + 0xcf, 0x79, 0xdf, 0xb5, 0x99, 0x35, 0x70, 0x98, 0xe5, 0xfb, 0x3c, 0x94, 0x2e, 0x80, 0x98, 0xce, + 0x63, 0xf2, 0x6e, 0x14, 0x75, 0x4b, 0x96, 0xb1, 0x6d, 0x3f, 0xdc, 0xb5, 0x83, 0x90, 0x7e, 0x80, + 0xcf, 0x66, 0x56, 0x83, 0x01, 0xf7, 0x03, 0x9b, 0xbc, 0x85, 0xa7, 0xe3, 0x72, 0x2f, 0xa0, 0x4b, + 0x68, 0x79, 0xb6, 0x45, 0xcd, 0xe3, 0x69, 0x67, 0xc6, 0xbe, 0x1b, 0x4f, 0x3d, 0xf9, 0xf3, 0xe2, + 0xc4, 0x36, 0xf8, 0xd1, 0x1b, 0xd8, 0x90, 0x81, 0x6f, 0xdb, 0xe1, 0x46, 0x4a, 0x3d, 0x48, 0x4b, + 0x2e, 0xe0, 0x19, 0xab, 0xd7, 0x13, 0x76, 0x10, 0x27, 0x78, 0x7a, 0x3b, 0xf9, 0x4b, 0x7d, 0xfc, + 0x7c, 0xa1, 0x1f, 0x00, 0xbb, 0x8b, 0x67, 0x15, 0x26, 0x03, 0xba, 0xa5, 0x32, 0x74, 0x4a, 0x14, + 0x80, 0xa8, 0x46, 0xa0, 0x3d, 0xc0, 0xb9, 0xee, 0xba, 0x05, 0x38, 0xdf, 0xc6, 0x38, 0xdd, 0x7c, + 0xc8, 0x76, 0xc5, 0x8c, 0x4f, 0xca, 0x8c, 0x4e, 0xca, 0x8c, 0x7b, 0x13, 0x4e, 0xca, 0xdc, 0xb2, + 0xfa, 0x36, 0xf8, 0x6e, 0x2b, 0x9e, 0xf4, 0x27, 0x04, 0x65, 0x8d, 0xa6, 0x39, 0xae, 0xac, 0xc9, + 0xff, 0x56, 0x16, 0xb9, 0x9d, 0x01, 0x7e, 0x2a, 0xd9, 0xa6, 0x0a, 0xe0, 0x31, 0x9a, 0x0c, 0xf2, + 0xf3, 0xf8, 0xb9, 0xe4, 0x3c, 0xb6, 0x24, 0xaf, 0x13, 0xe6, 0xdc, 0xc3, 0xe7, 0x46, 0x1f, 0xa8, + 0xe4, 0x89, 0x56, 0xf4, 0xc8, 0x13, 0x59, 0xa6, 0xe4, 0x89, 0xfe, 0xd1, 0x17, 0x52, 0x12, 0xdc, + 0x91, 0xb3, 0xe5, 0x8e, 0xec, 0xfe, 0x24, 0x75, 0x80, 0x17, 0x8a, 0x1f, 0x03, 0x80, 0xf7, 0xf0, + 0x33, 0x99, 0x91, 0x04, 0x38, 0x96, 0xcb, 0x70, 0xa8, 0x81, 0x00, 0xcd, 0x69, 0x4f, 0x59, 0xa3, + 0xad, 0xb4, 0xde, 0x78, 0x25, 0xa8, 0x26, 0xf3, 0x7d, 0x7c, 0x3e, 0xe7, 0x03, 0x18, 0x6f, 0xe1, + 0x19, 0x18, 0x69, 0x80, 0x6e, 0xb1, 0x14, 0x5d, 0x6c, 0x0a, 0xc0, 0x12, 0x4f, 0xfa, 0x21, 0x60, + 0x5a, 0x77, 0xdd, 0x11, 0x4c, 0x27, 0x45, 0xdc, 0x6f, 0x11, 0x94, 0xa0, 0xa6, 0x28, 0x2a, 0x61, + 0x72, 0xbc, 0x12, 0xfe, 0x3f, 0xa2, 0x8a, 0xe3, 0x88, 0x2a, 0x72, 0x44, 0x15, 0xda, 0x44, 0x15, + 0x19, 0xa2, 0x0a, 0xba, 0x50, 0x34, 0xe5, 0x86, 0x99, 0x0b, 0x67, 0x99, 0x28, 0x6e, 0x7a, 0x51, + 0x6f, 0x96, 0x89, 0x7c, 0xd3, 0x0b, 0x7a, 0x0e, 0xcf, 0x27, 0xf9, 0xee, 0x46, 0x97, 0x5a, 0x82, + 0xe3, 0xfd, 0x74, 0x6b, 0x60, 0x1d, 0x10, 0xbc, 0x89, 0xa7, 0xe4, 0xed, 0x07, 0xb9, 0x2f, 0x97, + 0xe5, 0x96, 0x9e, 0x90, 0x35, 0xf6, 0xa2, 0x5b, 0xf8, 0x62, 0x96, 0xde, 0xb7, 0x86, 0x37, 0x7a, + 0xc2, 0xc3, 0x55, 0x4c, 0xd2, 0x6b, 0xbe, 0x9d, 0x6d, 0x93, 0xb9, 0xf4, 0xc9, 0x3a, 0x34, 0xcc, + 0x67, 0x08, 0x5f, 0x3a, 0x3e, 0x24, 0xa0, 0x6e, 0xe3, 0xb9, 0x9c, 0x82, 0x80, 0x0a, 0xae, 0x57, + 0x33, 0x30, 0x0d, 0x08, 0xc5, 0x9c, 0xf1, 0x46, 0xd6, 0xa9, 0x03, 0x75, 0x0d, 0x39, 0x9f, 0xaf, + 0xeb, 0xa4, 0xfa, 0xeb, 0xd7, 0xa4, 0xe0, 0xc2, 0x5c, 0xe5, 0x05, 0x4f, 0x9e, 0x54, 0xc1, 0x27, + 0xd7, 0x84, 0xea, 0xe0, 0x8e, 0x65, 0xd8, 0x66, 0xa4, 0xc2, 0x8a, 0x06, 0x77, 0xe6, 0xb1, 0x32, + 0xb8, 0x55, 0xf5, 0xa6, 0x35, 0xb8, 0x95, 0x40, 0xc3, 0xc1, 0xad, 0xac, 0xb5, 0xfe, 0x99, 0xc3, + 0x53, 0x32, 0x2b, 0xf9, 0x12, 0xe1, 0xe9, 0x58, 0xac, 0x10, 0xb3, 0x2c, 0x64, 0x5e, 0x27, 0x19, + 0x4c, 0xdb, 0x3e, 0x2e, 0x85, 0x5e, 0xfd, 0xf4, 0xb7, 0xbf, 0xbf, 0x38, 0xf5, 0x22, 0xa1, 0xac, + 0x52, 0x52, 0x92, 0x9f, 0x11, 0x9e, 0x55, 0xee, 0x73, 0x72, 0xa3, 0x32, 0x59, 0xa1, 0xaa, 0x32, + 0x5e, 0xad, 0xed, 0x07, 0x60, 0x5f, 0x97, 0x60, 0xd7, 0x48, 0x93, 0xe9, 0xbd, 0x41, 0xb0, 0x47, + 0xd0, 0xc9, 0x8f, 0xc9, 0x0f, 0x08, 0x3f, 0xab, 0x84, 0x5c, 0x77, 0x5d, 0x0d, 0xf8, 0x85, 0x62, + 0x4b, 0x03, 0x7e, 0xb1, 0x7a, 0xa2, 0x4c, 0xc2, 0x5f, 0x21, 0x4b, 0x9a, 0xf0, 0xc9, 0xd7, 0x92, + 0x08, 0x91, 0xd4, 0x20, 0x4d, 0x9d, 0x3d, 0xcb, 0x28, 0x1f, 0xa3, 0x55, 0xc7, 0xa5, 0x1e, 0x1d, + 0x24, 0xa4, 0x1f, 0x11, 0x3e, 0xad, 0xca, 0x11, 0xa2, 0x75, 0xae, 0x05, 0x42, 0xc9, 0x78, 0xad, + 0xbe, 0x23, 0xe0, 0x6d, 0x4a, 0xbc, 0xd7, 0xc8, 0x0a, 0xd3, 0x7d, 0xef, 0x23, 0xdf, 0x21, 0x3c, + 0x03, 0x97, 0x3c, 0xd1, 0xda, 0xa2, 0xac, 0x64, 0x31, 0xd6, 0x6a, 0xf9, 0x00, 0xce, 0x57, 0x24, + 0x4e, 0x46, 0x56, 0x59, 0xf5, 0xbb, 0xa3, 0xc2, 0xda, 0x6f, 0x10, 0xc6, 0x10, 0x2a, 0x62, 0x6c, + 0x4b, 0x87, 0x79, 0xb5, 0xe1, 0xe6, 0x25, 0x13, 0xbd, 0x26, 0xe1, 0xbe, 0x44, 0x16, 0x35, 0xe0, + 0xa6, 0x2c, 0x15, 0x35, 0x58, 0x2a, 0xea, 0xb3, 0x54, 0x8c, 0xc1, 0x52, 0x41, 0xbe, 0xcf, 0x0c, + 0x2d, 0x51, 0x77, 0x68, 0x89, 0x31, 0x87, 0x96, 0x18, 0xb7, 0xeb, 0x05, 0xf9, 0x0a, 0xe1, 0x29, + 0xa9, 0x62, 0xc8, 0xcb, 0x3a, 0x39, 0x55, 0x09, 0x65, 0x34, 0x6b, 0x78, 0x00, 0xbe, 0x15, 0x89, + 0x6f, 0x91, 0x5c, 0x66, 0x55, 0x1f, 0x1f, 0xc8, 0x1f, 0x08, 0x9f, 0x19, 0xbd, 0xac, 0xc9, 0x4d, + 0xfd, 0x7e, 0xc8, 0xe9, 0x13, 0xe3, 0x8d, 0xf1, 0x9c, 0x01, 0xfa, 0x3b, 0x12, 0xfa, 0x26, 0xd9, + 0x60, 0x75, 0xbe, 0xe2, 0xb0, 0x47, 0x79, 0xa9, 0xf7, 0x98, 0xfc, 0x82, 0xf0, 0xd9, 0xd1, 0x44, + 0x51, 0xcf, 0xdd, 0xd4, 0xef, 0x9f, 0x71, 0xca, 0x2b, 0xd1, 0x53, 0x75, 0x86, 0x86, 0x52, 0x5e, + 0x3c, 0x97, 0x15, 0x65, 0xa1, 0x39, 0x97, 0xf3, 0x3a, 0x48, 0x73, 0x2e, 0x17, 0x28, 0x24, 0xcd, + 0xb9, 0xac, 0x6a, 0xa8, 0x8d, 0xfb, 0x4f, 0x0e, 0x1b, 0xe8, 0xe0, 0xb0, 0x81, 0xfe, 0x3a, 0x6c, + 0xa0, 0xcf, 0x8f, 0x1a, 0x13, 0x07, 0x47, 0x8d, 0x89, 0xdf, 0x8f, 0x1a, 0x13, 0xf7, 0x36, 0xfb, + 0x4e, 0xf8, 0xd1, 0x6e, 0xc7, 0xec, 0x72, 0x0f, 0xc2, 0xed, 0x38, 0x3e, 0xf3, 0x79, 0xc7, 0xb5, + 0x57, 0x73, 0x71, 0x3f, 0xc9, 0xa7, 0x0a, 0xf7, 0x07, 0x76, 0xd0, 0x99, 0x96, 0xdf, 0x97, 0xd6, + 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x07, 0xe5, 0x47, 0x2e, 0xc2, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1301,7 +1303,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, "/noble.fiattokenfactory.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1310,7 +1312,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Blacklisted(ctx context.Context, in *QueryGetBlacklistedRequest, opts ...grpc.CallOption) (*QueryGetBlacklistedResponse, error) { out := new(QueryGetBlacklistedResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Blacklisted", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Blacklisted", in, out, opts...) if err != nil { return nil, err } @@ -1319,7 +1321,7 @@ func (c *queryClient) Blacklisted(ctx context.Context, in *QueryGetBlacklistedRe func (c *queryClient) BlacklistedAll(ctx context.Context, in *QueryAllBlacklistedRequest, opts ...grpc.CallOption) (*QueryAllBlacklistedResponse, error) { out := new(QueryAllBlacklistedResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/BlacklistedAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/BlacklistedAll", in, out, opts...) if err != nil { return nil, err } @@ -1328,7 +1330,7 @@ func (c *queryClient) BlacklistedAll(ctx context.Context, in *QueryAllBlackliste func (c *queryClient) Paused(ctx context.Context, in *QueryGetPausedRequest, opts ...grpc.CallOption) (*QueryGetPausedResponse, error) { out := new(QueryGetPausedResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Paused", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Paused", in, out, opts...) if err != nil { return nil, err } @@ -1337,7 +1339,7 @@ func (c *queryClient) Paused(ctx context.Context, in *QueryGetPausedRequest, opt func (c *queryClient) MasterMinter(ctx context.Context, in *QueryGetMasterMinterRequest, opts ...grpc.CallOption) (*QueryGetMasterMinterResponse, error) { out := new(QueryGetMasterMinterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/MasterMinter", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/MasterMinter", in, out, opts...) if err != nil { return nil, err } @@ -1346,7 +1348,7 @@ func (c *queryClient) MasterMinter(ctx context.Context, in *QueryGetMasterMinter func (c *queryClient) Minters(ctx context.Context, in *QueryGetMintersRequest, opts ...grpc.CallOption) (*QueryGetMintersResponse, error) { out := new(QueryGetMintersResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Minters", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Minters", in, out, opts...) if err != nil { return nil, err } @@ -1355,7 +1357,7 @@ func (c *queryClient) Minters(ctx context.Context, in *QueryGetMintersRequest, o func (c *queryClient) MintersAll(ctx context.Context, in *QueryAllMintersRequest, opts ...grpc.CallOption) (*QueryAllMintersResponse, error) { out := new(QueryAllMintersResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/MintersAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/MintersAll", in, out, opts...) if err != nil { return nil, err } @@ -1364,7 +1366,7 @@ func (c *queryClient) MintersAll(ctx context.Context, in *QueryAllMintersRequest func (c *queryClient) Pauser(ctx context.Context, in *QueryGetPauserRequest, opts ...grpc.CallOption) (*QueryGetPauserResponse, error) { out := new(QueryGetPauserResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Pauser", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Pauser", in, out, opts...) if err != nil { return nil, err } @@ -1373,7 +1375,7 @@ func (c *queryClient) Pauser(ctx context.Context, in *QueryGetPauserRequest, opt func (c *queryClient) Blacklister(ctx context.Context, in *QueryGetBlacklisterRequest, opts ...grpc.CallOption) (*QueryGetBlacklisterResponse, error) { out := new(QueryGetBlacklisterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Blacklister", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Blacklister", in, out, opts...) if err != nil { return nil, err } @@ -1382,7 +1384,7 @@ func (c *queryClient) Blacklister(ctx context.Context, in *QueryGetBlacklisterRe func (c *queryClient) Owner(ctx context.Context, in *QueryGetOwnerRequest, opts ...grpc.CallOption) (*QueryGetOwnerResponse, error) { out := new(QueryGetOwnerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/Owner", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/Owner", in, out, opts...) if err != nil { return nil, err } @@ -1391,7 +1393,7 @@ func (c *queryClient) Owner(ctx context.Context, in *QueryGetOwnerRequest, opts func (c *queryClient) MinterController(ctx context.Context, in *QueryGetMinterControllerRequest, opts ...grpc.CallOption) (*QueryGetMinterControllerResponse, error) { out := new(QueryGetMinterControllerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/MinterController", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/MinterController", in, out, opts...) if err != nil { return nil, err } @@ -1400,7 +1402,7 @@ func (c *queryClient) MinterController(ctx context.Context, in *QueryGetMinterCo func (c *queryClient) MinterControllerAll(ctx context.Context, in *QueryAllMinterControllerRequest, opts ...grpc.CallOption) (*QueryAllMinterControllerResponse, error) { out := new(QueryAllMinterControllerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/MinterControllerAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/MinterControllerAll", in, out, opts...) if err != nil { return nil, err } @@ -1409,7 +1411,7 @@ func (c *queryClient) MinterControllerAll(ctx context.Context, in *QueryAllMinte func (c *queryClient) MintingDenom(ctx context.Context, in *QueryGetMintingDenomRequest, opts ...grpc.CallOption) (*QueryGetMintingDenomResponse, error) { out := new(QueryGetMintingDenomResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Query/MintingDenom", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Query/MintingDenom", in, out, opts...) if err != nil { return nil, err } @@ -1504,7 +1506,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Params", + FullMethod: "/circle.fiattokenfactory.v1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1522,7 +1524,7 @@ func _Query_Blacklisted_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Blacklisted", + FullMethod: "/circle.fiattokenfactory.v1.Query/Blacklisted", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Blacklisted(ctx, req.(*QueryGetBlacklistedRequest)) @@ -1540,7 +1542,7 @@ func _Query_BlacklistedAll_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/BlacklistedAll", + FullMethod: "/circle.fiattokenfactory.v1.Query/BlacklistedAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).BlacklistedAll(ctx, req.(*QueryAllBlacklistedRequest)) @@ -1558,7 +1560,7 @@ func _Query_Paused_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Paused", + FullMethod: "/circle.fiattokenfactory.v1.Query/Paused", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Paused(ctx, req.(*QueryGetPausedRequest)) @@ -1576,7 +1578,7 @@ func _Query_MasterMinter_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/MasterMinter", + FullMethod: "/circle.fiattokenfactory.v1.Query/MasterMinter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MasterMinter(ctx, req.(*QueryGetMasterMinterRequest)) @@ -1594,7 +1596,7 @@ func _Query_Minters_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Minters", + FullMethod: "/circle.fiattokenfactory.v1.Query/Minters", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Minters(ctx, req.(*QueryGetMintersRequest)) @@ -1612,7 +1614,7 @@ func _Query_MintersAll_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/MintersAll", + FullMethod: "/circle.fiattokenfactory.v1.Query/MintersAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MintersAll(ctx, req.(*QueryAllMintersRequest)) @@ -1630,7 +1632,7 @@ func _Query_Pauser_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Pauser", + FullMethod: "/circle.fiattokenfactory.v1.Query/Pauser", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Pauser(ctx, req.(*QueryGetPauserRequest)) @@ -1648,7 +1650,7 @@ func _Query_Blacklister_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Blacklister", + FullMethod: "/circle.fiattokenfactory.v1.Query/Blacklister", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Blacklister(ctx, req.(*QueryGetBlacklisterRequest)) @@ -1666,7 +1668,7 @@ func _Query_Owner_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/Owner", + FullMethod: "/circle.fiattokenfactory.v1.Query/Owner", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Owner(ctx, req.(*QueryGetOwnerRequest)) @@ -1684,7 +1686,7 @@ func _Query_MinterController_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/MinterController", + FullMethod: "/circle.fiattokenfactory.v1.Query/MinterController", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MinterController(ctx, req.(*QueryGetMinterControllerRequest)) @@ -1702,7 +1704,7 @@ func _Query_MinterControllerAll_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/MinterControllerAll", + FullMethod: "/circle.fiattokenfactory.v1.Query/MinterControllerAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MinterControllerAll(ctx, req.(*QueryAllMinterControllerRequest)) @@ -1720,7 +1722,7 @@ func _Query_MintingDenom_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Query/MintingDenom", + FullMethod: "/circle.fiattokenfactory.v1.Query/MintingDenom", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MintingDenom(ctx, req.(*QueryGetMintingDenomRequest)) @@ -1729,7 +1731,7 @@ func _Query_MintingDenom_Handler(srv interface{}, ctx context.Context, dec func( } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "noble.fiattokenfactory.Query", + ServiceName: "circle.fiattokenfactory.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1786,7 +1788,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fiattokenfactory/query.proto", + Metadata: "circle/fiattokenfactory/v1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/fiattokenfactory/types/query.pb.gw.go b/x/fiattokenfactory/types/query.pb.gw.go index ccd0dfd..4bb54c3 100644 --- a/x/fiattokenfactory/types/query.pb.gw.go +++ b/x/fiattokenfactory/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: fiattokenfactory/query.proto +// source: circle/fiattokenfactory/v1/query.proto /* Package types is a reverse proxy. @@ -332,15 +332,15 @@ func request_Query_MinterController_0(ctx context.Context, marshaler runtime.Mar _ = err ) - val, ok = pathParams["controllerAddress"] + val, ok = pathParams["controller_address"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "controllerAddress") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "controller_address") } protoReq.ControllerAddress, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "controllerAddress", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "controller_address", err) } msg, err := client.MinterController(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) @@ -359,15 +359,15 @@ func local_request_Query_MinterController_0(ctx context.Context, marshaler runti _ = err ) - val, ok = pathParams["controllerAddress"] + val, ok = pathParams["controller_address"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "controllerAddress") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "controller_address") } protoReq.ControllerAddress, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "controllerAddress", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "controller_address", err) } msg, err := server.MinterController(ctx, &protoReq) @@ -1039,31 +1039,31 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Blacklisted_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"noble", "fiattokenfactory", "blacklisted", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Blacklisted_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"circle", "fiattokenfactory", "v1", "blacklisted", "address"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_BlacklistedAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "blacklisted"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_BlacklistedAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "blacklisted"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Paused_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "paused"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Paused_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "paused"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MasterMinter_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "master_minter"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MasterMinter_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "master_minter"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Minters_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"noble", "fiattokenfactory", "minters", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Minters_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"circle", "fiattokenfactory", "v1", "minters", "address"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MintersAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "minters"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MintersAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "minters"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Pauser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "pauser"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Pauser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "pauser"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Blacklister_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "blacklister"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Blacklister_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "blacklister"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Owner_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "owner"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Owner_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "owner"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MinterController_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"noble", "fiattokenfactory", "minter_controller", "controllerAddress"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MinterController_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"circle", "fiattokenfactory", "v1", "minter_controller", "controller_address"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MinterControllerAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "minter_controller"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MinterControllerAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "minter_controller"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MintingDenom_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"noble", "fiattokenfactory", "minting_denom"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MintingDenom_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"circle", "fiattokenfactory", "v1", "minting_denom"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/fiattokenfactory/types/tx.pb.go b/x/fiattokenfactory/types/tx.pb.go index 8a48ef4..715a667 100644 --- a/x/fiattokenfactory/types/tx.pb.go +++ b/x/fiattokenfactory/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: fiattokenfactory/tx.proto +// source: circle/fiattokenfactory/v1/tx.proto package types @@ -38,7 +38,7 @@ func (m *MsgUpdateMasterMinter) Reset() { *m = MsgUpdateMasterMinter{} } func (m *MsgUpdateMasterMinter) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMasterMinter) ProtoMessage() {} func (*MsgUpdateMasterMinter) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{0} + return fileDescriptor_8436bd691f98382b, []int{0} } func (m *MsgUpdateMasterMinter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *MsgUpdateMasterMinterResponse) Reset() { *m = MsgUpdateMasterMi func (m *MsgUpdateMasterMinterResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMasterMinterResponse) ProtoMessage() {} func (*MsgUpdateMasterMinterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{1} + return fileDescriptor_8436bd691f98382b, []int{1} } func (m *MsgUpdateMasterMinterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *MsgUpdatePauser) Reset() { *m = MsgUpdatePauser{} } func (m *MsgUpdatePauser) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePauser) ProtoMessage() {} func (*MsgUpdatePauser) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{2} + return fileDescriptor_8436bd691f98382b, []int{2} } func (m *MsgUpdatePauser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -176,7 +176,7 @@ func (m *MsgUpdatePauserResponse) Reset() { *m = MsgUpdatePauserResponse func (m *MsgUpdatePauserResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePauserResponse) ProtoMessage() {} func (*MsgUpdatePauserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{3} + return fileDescriptor_8436bd691f98382b, []int{3} } func (m *MsgUpdatePauserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -214,7 +214,7 @@ func (m *MsgUpdateBlacklister) Reset() { *m = MsgUpdateBlacklister{} } func (m *MsgUpdateBlacklister) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBlacklister) ProtoMessage() {} func (*MsgUpdateBlacklister) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{4} + return fileDescriptor_8436bd691f98382b, []int{4} } func (m *MsgUpdateBlacklister) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -264,7 +264,7 @@ func (m *MsgUpdateBlacklisterResponse) Reset() { *m = MsgUpdateBlacklist func (m *MsgUpdateBlacklisterResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBlacklisterResponse) ProtoMessage() {} func (*MsgUpdateBlacklisterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{5} + return fileDescriptor_8436bd691f98382b, []int{5} } func (m *MsgUpdateBlacklisterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -302,7 +302,7 @@ func (m *MsgUpdateOwner) Reset() { *m = MsgUpdateOwner{} } func (m *MsgUpdateOwner) String() string { return proto.CompactTextString(m) } func (*MsgUpdateOwner) ProtoMessage() {} func (*MsgUpdateOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{6} + return fileDescriptor_8436bd691f98382b, []int{6} } func (m *MsgUpdateOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -352,7 +352,7 @@ func (m *MsgUpdateOwnerResponse) Reset() { *m = MsgUpdateOwnerResponse{} func (m *MsgUpdateOwnerResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateOwnerResponse) ProtoMessage() {} func (*MsgUpdateOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{7} + return fileDescriptor_8436bd691f98382b, []int{7} } func (m *MsgUpdateOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -389,7 +389,7 @@ func (m *MsgAcceptOwner) Reset() { *m = MsgAcceptOwner{} } func (m *MsgAcceptOwner) String() string { return proto.CompactTextString(m) } func (*MsgAcceptOwner) ProtoMessage() {} func (*MsgAcceptOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{8} + return fileDescriptor_8436bd691f98382b, []int{8} } func (m *MsgAcceptOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,7 +432,7 @@ func (m *MsgAcceptOwnerResponse) Reset() { *m = MsgAcceptOwnerResponse{} func (m *MsgAcceptOwnerResponse) String() string { return proto.CompactTextString(m) } func (*MsgAcceptOwnerResponse) ProtoMessage() {} func (*MsgAcceptOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{9} + return fileDescriptor_8436bd691f98382b, []int{9} } func (m *MsgAcceptOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -471,7 +471,7 @@ func (m *MsgConfigureMinter) Reset() { *m = MsgConfigureMinter{} } func (m *MsgConfigureMinter) String() string { return proto.CompactTextString(m) } func (*MsgConfigureMinter) ProtoMessage() {} func (*MsgConfigureMinter) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{10} + return fileDescriptor_8436bd691f98382b, []int{10} } func (m *MsgConfigureMinter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -528,7 +528,7 @@ func (m *MsgConfigureMinterResponse) Reset() { *m = MsgConfigureMinterRe func (m *MsgConfigureMinterResponse) String() string { return proto.CompactTextString(m) } func (*MsgConfigureMinterResponse) ProtoMessage() {} func (*MsgConfigureMinterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{11} + return fileDescriptor_8436bd691f98382b, []int{11} } func (m *MsgConfigureMinterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -566,7 +566,7 @@ func (m *MsgRemoveMinter) Reset() { *m = MsgRemoveMinter{} } func (m *MsgRemoveMinter) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMinter) ProtoMessage() {} func (*MsgRemoveMinter) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{12} + return fileDescriptor_8436bd691f98382b, []int{12} } func (m *MsgRemoveMinter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -616,7 +616,7 @@ func (m *MsgRemoveMinterResponse) Reset() { *m = MsgRemoveMinterResponse func (m *MsgRemoveMinterResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMinterResponse) ProtoMessage() {} func (*MsgRemoveMinterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{13} + return fileDescriptor_8436bd691f98382b, []int{13} } func (m *MsgRemoveMinterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -655,7 +655,7 @@ func (m *MsgMint) Reset() { *m = MsgMint{} } func (m *MsgMint) String() string { return proto.CompactTextString(m) } func (*MsgMint) ProtoMessage() {} func (*MsgMint) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{14} + return fileDescriptor_8436bd691f98382b, []int{14} } func (m *MsgMint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -712,7 +712,7 @@ func (m *MsgMintResponse) Reset() { *m = MsgMintResponse{} } func (m *MsgMintResponse) String() string { return proto.CompactTextString(m) } func (*MsgMintResponse) ProtoMessage() {} func (*MsgMintResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{15} + return fileDescriptor_8436bd691f98382b, []int{15} } func (m *MsgMintResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -750,7 +750,7 @@ func (m *MsgBurn) Reset() { *m = MsgBurn{} } func (m *MsgBurn) String() string { return proto.CompactTextString(m) } func (*MsgBurn) ProtoMessage() {} func (*MsgBurn) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{16} + return fileDescriptor_8436bd691f98382b, []int{16} } func (m *MsgBurn) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -800,7 +800,7 @@ func (m *MsgBurnResponse) Reset() { *m = MsgBurnResponse{} } func (m *MsgBurnResponse) String() string { return proto.CompactTextString(m) } func (*MsgBurnResponse) ProtoMessage() {} func (*MsgBurnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{17} + return fileDescriptor_8436bd691f98382b, []int{17} } func (m *MsgBurnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -838,7 +838,7 @@ func (m *MsgBlacklist) Reset() { *m = MsgBlacklist{} } func (m *MsgBlacklist) String() string { return proto.CompactTextString(m) } func (*MsgBlacklist) ProtoMessage() {} func (*MsgBlacklist) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{18} + return fileDescriptor_8436bd691f98382b, []int{18} } func (m *MsgBlacklist) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -888,7 +888,7 @@ func (m *MsgBlacklistResponse) Reset() { *m = MsgBlacklistResponse{} } func (m *MsgBlacklistResponse) String() string { return proto.CompactTextString(m) } func (*MsgBlacklistResponse) ProtoMessage() {} func (*MsgBlacklistResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{19} + return fileDescriptor_8436bd691f98382b, []int{19} } func (m *MsgBlacklistResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -926,7 +926,7 @@ func (m *MsgUnblacklist) Reset() { *m = MsgUnblacklist{} } func (m *MsgUnblacklist) String() string { return proto.CompactTextString(m) } func (*MsgUnblacklist) ProtoMessage() {} func (*MsgUnblacklist) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{20} + return fileDescriptor_8436bd691f98382b, []int{20} } func (m *MsgUnblacklist) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -976,7 +976,7 @@ func (m *MsgUnblacklistResponse) Reset() { *m = MsgUnblacklistResponse{} func (m *MsgUnblacklistResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnblacklistResponse) ProtoMessage() {} func (*MsgUnblacklistResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{21} + return fileDescriptor_8436bd691f98382b, []int{21} } func (m *MsgUnblacklistResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1013,7 +1013,7 @@ func (m *MsgPause) Reset() { *m = MsgPause{} } func (m *MsgPause) String() string { return proto.CompactTextString(m) } func (*MsgPause) ProtoMessage() {} func (*MsgPause) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{22} + return fileDescriptor_8436bd691f98382b, []int{22} } func (m *MsgPause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1056,7 +1056,7 @@ func (m *MsgPauseResponse) Reset() { *m = MsgPauseResponse{} } func (m *MsgPauseResponse) String() string { return proto.CompactTextString(m) } func (*MsgPauseResponse) ProtoMessage() {} func (*MsgPauseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{23} + return fileDescriptor_8436bd691f98382b, []int{23} } func (m *MsgPauseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1093,7 +1093,7 @@ func (m *MsgUnpause) Reset() { *m = MsgUnpause{} } func (m *MsgUnpause) String() string { return proto.CompactTextString(m) } func (*MsgUnpause) ProtoMessage() {} func (*MsgUnpause) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{24} + return fileDescriptor_8436bd691f98382b, []int{24} } func (m *MsgUnpause) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1136,7 +1136,7 @@ func (m *MsgUnpauseResponse) Reset() { *m = MsgUnpauseResponse{} } func (m *MsgUnpauseResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnpauseResponse) ProtoMessage() {} func (*MsgUnpauseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{25} + return fileDescriptor_8436bd691f98382b, []int{25} } func (m *MsgUnpauseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1175,7 +1175,7 @@ func (m *MsgConfigureMinterController) Reset() { *m = MsgConfigureMinter func (m *MsgConfigureMinterController) String() string { return proto.CompactTextString(m) } func (*MsgConfigureMinterController) ProtoMessage() {} func (*MsgConfigureMinterController) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{26} + return fileDescriptor_8436bd691f98382b, []int{26} } func (m *MsgConfigureMinterController) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1232,7 +1232,7 @@ func (m *MsgConfigureMinterControllerResponse) Reset() { *m = MsgConfigu func (m *MsgConfigureMinterControllerResponse) String() string { return proto.CompactTextString(m) } func (*MsgConfigureMinterControllerResponse) ProtoMessage() {} func (*MsgConfigureMinterControllerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{27} + return fileDescriptor_8436bd691f98382b, []int{27} } func (m *MsgConfigureMinterControllerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1270,7 +1270,7 @@ func (m *MsgRemoveMinterController) Reset() { *m = MsgRemoveMinterContro func (m *MsgRemoveMinterController) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMinterController) ProtoMessage() {} func (*MsgRemoveMinterController) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{28} + return fileDescriptor_8436bd691f98382b, []int{28} } func (m *MsgRemoveMinterController) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1320,7 +1320,7 @@ func (m *MsgRemoveMinterControllerResponse) Reset() { *m = MsgRemoveMint func (m *MsgRemoveMinterControllerResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMinterControllerResponse) ProtoMessage() {} func (*MsgRemoveMinterControllerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_0d272e143958733b, []int{29} + return fileDescriptor_8436bd691f98382b, []int{29} } func (m *MsgRemoveMinterControllerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1350,93 +1350,95 @@ func (m *MsgRemoveMinterControllerResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRemoveMinterControllerResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgUpdateMasterMinter)(nil), "noble.fiattokenfactory.MsgUpdateMasterMinter") - proto.RegisterType((*MsgUpdateMasterMinterResponse)(nil), "noble.fiattokenfactory.MsgUpdateMasterMinterResponse") - proto.RegisterType((*MsgUpdatePauser)(nil), "noble.fiattokenfactory.MsgUpdatePauser") - proto.RegisterType((*MsgUpdatePauserResponse)(nil), "noble.fiattokenfactory.MsgUpdatePauserResponse") - proto.RegisterType((*MsgUpdateBlacklister)(nil), "noble.fiattokenfactory.MsgUpdateBlacklister") - proto.RegisterType((*MsgUpdateBlacklisterResponse)(nil), "noble.fiattokenfactory.MsgUpdateBlacklisterResponse") - proto.RegisterType((*MsgUpdateOwner)(nil), "noble.fiattokenfactory.MsgUpdateOwner") - proto.RegisterType((*MsgUpdateOwnerResponse)(nil), "noble.fiattokenfactory.MsgUpdateOwnerResponse") - proto.RegisterType((*MsgAcceptOwner)(nil), "noble.fiattokenfactory.MsgAcceptOwner") - proto.RegisterType((*MsgAcceptOwnerResponse)(nil), "noble.fiattokenfactory.MsgAcceptOwnerResponse") - proto.RegisterType((*MsgConfigureMinter)(nil), "noble.fiattokenfactory.MsgConfigureMinter") - proto.RegisterType((*MsgConfigureMinterResponse)(nil), "noble.fiattokenfactory.MsgConfigureMinterResponse") - proto.RegisterType((*MsgRemoveMinter)(nil), "noble.fiattokenfactory.MsgRemoveMinter") - proto.RegisterType((*MsgRemoveMinterResponse)(nil), "noble.fiattokenfactory.MsgRemoveMinterResponse") - proto.RegisterType((*MsgMint)(nil), "noble.fiattokenfactory.MsgMint") - proto.RegisterType((*MsgMintResponse)(nil), "noble.fiattokenfactory.MsgMintResponse") - proto.RegisterType((*MsgBurn)(nil), "noble.fiattokenfactory.MsgBurn") - proto.RegisterType((*MsgBurnResponse)(nil), "noble.fiattokenfactory.MsgBurnResponse") - proto.RegisterType((*MsgBlacklist)(nil), "noble.fiattokenfactory.MsgBlacklist") - proto.RegisterType((*MsgBlacklistResponse)(nil), "noble.fiattokenfactory.MsgBlacklistResponse") - proto.RegisterType((*MsgUnblacklist)(nil), "noble.fiattokenfactory.MsgUnblacklist") - proto.RegisterType((*MsgUnblacklistResponse)(nil), "noble.fiattokenfactory.MsgUnblacklistResponse") - proto.RegisterType((*MsgPause)(nil), "noble.fiattokenfactory.MsgPause") - proto.RegisterType((*MsgPauseResponse)(nil), "noble.fiattokenfactory.MsgPauseResponse") - proto.RegisterType((*MsgUnpause)(nil), "noble.fiattokenfactory.MsgUnpause") - proto.RegisterType((*MsgUnpauseResponse)(nil), "noble.fiattokenfactory.MsgUnpauseResponse") - proto.RegisterType((*MsgConfigureMinterController)(nil), "noble.fiattokenfactory.MsgConfigureMinterController") - proto.RegisterType((*MsgConfigureMinterControllerResponse)(nil), "noble.fiattokenfactory.MsgConfigureMinterControllerResponse") - proto.RegisterType((*MsgRemoveMinterController)(nil), "noble.fiattokenfactory.MsgRemoveMinterController") - proto.RegisterType((*MsgRemoveMinterControllerResponse)(nil), "noble.fiattokenfactory.MsgRemoveMinterControllerResponse") -} - -func init() { proto.RegisterFile("fiattokenfactory/tx.proto", fileDescriptor_0d272e143958733b) } - -var fileDescriptor_0d272e143958733b = []byte{ - // 803 bytes of a gzipped FileDescriptorProto + proto.RegisterType((*MsgUpdateMasterMinter)(nil), "circle.fiattokenfactory.v1.MsgUpdateMasterMinter") + proto.RegisterType((*MsgUpdateMasterMinterResponse)(nil), "circle.fiattokenfactory.v1.MsgUpdateMasterMinterResponse") + proto.RegisterType((*MsgUpdatePauser)(nil), "circle.fiattokenfactory.v1.MsgUpdatePauser") + proto.RegisterType((*MsgUpdatePauserResponse)(nil), "circle.fiattokenfactory.v1.MsgUpdatePauserResponse") + proto.RegisterType((*MsgUpdateBlacklister)(nil), "circle.fiattokenfactory.v1.MsgUpdateBlacklister") + proto.RegisterType((*MsgUpdateBlacklisterResponse)(nil), "circle.fiattokenfactory.v1.MsgUpdateBlacklisterResponse") + proto.RegisterType((*MsgUpdateOwner)(nil), "circle.fiattokenfactory.v1.MsgUpdateOwner") + proto.RegisterType((*MsgUpdateOwnerResponse)(nil), "circle.fiattokenfactory.v1.MsgUpdateOwnerResponse") + proto.RegisterType((*MsgAcceptOwner)(nil), "circle.fiattokenfactory.v1.MsgAcceptOwner") + proto.RegisterType((*MsgAcceptOwnerResponse)(nil), "circle.fiattokenfactory.v1.MsgAcceptOwnerResponse") + proto.RegisterType((*MsgConfigureMinter)(nil), "circle.fiattokenfactory.v1.MsgConfigureMinter") + proto.RegisterType((*MsgConfigureMinterResponse)(nil), "circle.fiattokenfactory.v1.MsgConfigureMinterResponse") + proto.RegisterType((*MsgRemoveMinter)(nil), "circle.fiattokenfactory.v1.MsgRemoveMinter") + proto.RegisterType((*MsgRemoveMinterResponse)(nil), "circle.fiattokenfactory.v1.MsgRemoveMinterResponse") + proto.RegisterType((*MsgMint)(nil), "circle.fiattokenfactory.v1.MsgMint") + proto.RegisterType((*MsgMintResponse)(nil), "circle.fiattokenfactory.v1.MsgMintResponse") + proto.RegisterType((*MsgBurn)(nil), "circle.fiattokenfactory.v1.MsgBurn") + proto.RegisterType((*MsgBurnResponse)(nil), "circle.fiattokenfactory.v1.MsgBurnResponse") + proto.RegisterType((*MsgBlacklist)(nil), "circle.fiattokenfactory.v1.MsgBlacklist") + proto.RegisterType((*MsgBlacklistResponse)(nil), "circle.fiattokenfactory.v1.MsgBlacklistResponse") + proto.RegisterType((*MsgUnblacklist)(nil), "circle.fiattokenfactory.v1.MsgUnblacklist") + proto.RegisterType((*MsgUnblacklistResponse)(nil), "circle.fiattokenfactory.v1.MsgUnblacklistResponse") + proto.RegisterType((*MsgPause)(nil), "circle.fiattokenfactory.v1.MsgPause") + proto.RegisterType((*MsgPauseResponse)(nil), "circle.fiattokenfactory.v1.MsgPauseResponse") + proto.RegisterType((*MsgUnpause)(nil), "circle.fiattokenfactory.v1.MsgUnpause") + proto.RegisterType((*MsgUnpauseResponse)(nil), "circle.fiattokenfactory.v1.MsgUnpauseResponse") + proto.RegisterType((*MsgConfigureMinterController)(nil), "circle.fiattokenfactory.v1.MsgConfigureMinterController") + proto.RegisterType((*MsgConfigureMinterControllerResponse)(nil), "circle.fiattokenfactory.v1.MsgConfigureMinterControllerResponse") + proto.RegisterType((*MsgRemoveMinterController)(nil), "circle.fiattokenfactory.v1.MsgRemoveMinterController") + proto.RegisterType((*MsgRemoveMinterControllerResponse)(nil), "circle.fiattokenfactory.v1.MsgRemoveMinterControllerResponse") +} + +func init() { + proto.RegisterFile("circle/fiattokenfactory/v1/tx.proto", fileDescriptor_8436bd691f98382b) +} + +var fileDescriptor_8436bd691f98382b = []byte{ + // 813 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x5f, 0x4f, 0xd3, 0x5c, - 0x18, 0x5f, 0x81, 0x17, 0xde, 0x3d, 0x90, 0x97, 0x97, 0x13, 0x9c, 0x5b, 0x83, 0x65, 0x56, 0x02, - 0x84, 0x40, 0x1b, 0x10, 0x63, 0x4c, 0x50, 0xe3, 0xc0, 0xcb, 0x05, 0x32, 0xa3, 0x89, 0x5e, 0x68, - 0xba, 0x72, 0x56, 0x2a, 0x5d, 0xcf, 0xec, 0xe9, 0xf8, 0xe3, 0x9d, 0x37, 0xde, 0xea, 0xa7, 0x32, - 0x5c, 0x72, 0xe9, 0x95, 0x31, 0xf0, 0x45, 0x4c, 0xcf, 0xda, 0xb3, 0xae, 0xeb, 0xce, 0xd6, 0x79, - 0xd7, 0x9d, 0xfe, 0xfe, 0x3c, 0x67, 0xfd, 0x9d, 0xe7, 0xc9, 0x81, 0x52, 0xc3, 0x36, 0x7c, 0x9f, - 0x9c, 0x62, 0xb7, 0x61, 0x98, 0x3e, 0xf1, 0x2e, 0x75, 0xff, 0x42, 0x6b, 0x79, 0xc4, 0x27, 0xa8, - 0xe0, 0x92, 0xba, 0x83, 0xb5, 0x24, 0x40, 0x56, 0x4c, 0x42, 0x9b, 0x84, 0xea, 0x75, 0x83, 0x62, - 0xfd, 0x6c, 0xbb, 0x8e, 0x7d, 0x63, 0x5b, 0x37, 0x89, 0xed, 0x76, 0x78, 0xf2, 0xa2, 0x45, 0x2c, - 0xc2, 0x1e, 0xf5, 0xe0, 0xa9, 0xb3, 0xaa, 0xbe, 0x84, 0x3b, 0x55, 0x6a, 0xbd, 0x6e, 0x1d, 0x1b, - 0x3e, 0xae, 0x1a, 0xd4, 0xc7, 0x5e, 0xd5, 0x76, 0x7d, 0xec, 0x21, 0x04, 0x53, 0x0d, 0x8f, 0x34, - 0x8b, 0x52, 0x59, 0x5a, 0xcf, 0xd7, 0xd8, 0x33, 0x2a, 0xc2, 0x8c, 0x71, 0x7c, 0xec, 0x61, 0x4a, - 0x8b, 0x13, 0x6c, 0x39, 0xfa, 0xa9, 0x2e, 0xc3, 0xbd, 0x54, 0x99, 0x1a, 0xa6, 0x2d, 0xe2, 0x52, - 0xac, 0x3e, 0x87, 0x79, 0x0e, 0x38, 0x32, 0xda, 0x34, 0xb3, 0x43, 0x09, 0xee, 0x26, 0x04, 0xb8, - 0xf6, 0x01, 0x2c, 0xf2, 0x57, 0x15, 0xc7, 0x30, 0x4f, 0x1d, 0x9b, 0x66, 0xdf, 0x82, 0x02, 0x4b, - 0x69, 0x2a, 0xdc, 0xe5, 0x19, 0xfc, 0xc7, 0xdf, 0x1f, 0x9e, 0xbb, 0x99, 0xf5, 0x8b, 0x50, 0xe8, - 0xe5, 0x73, 0xe5, 0x15, 0xa6, 0xfc, 0xc2, 0x34, 0x71, 0xcb, 0x1f, 0xa8, 0x1c, 0xf2, 0x63, 0x28, - 0xce, 0xff, 0x22, 0x01, 0xaa, 0x52, 0x6b, 0x9f, 0xb8, 0x0d, 0xdb, 0x6a, 0x7b, 0x78, 0x9c, 0x2f, - 0x88, 0x9e, 0x42, 0xde, 0x70, 0x1c, 0x72, 0x6e, 0xb8, 0x26, 0x2e, 0x4e, 0x96, 0xa5, 0xf5, 0xd9, - 0x9d, 0x92, 0xd6, 0x89, 0x94, 0x16, 0x44, 0x4a, 0x0b, 0x23, 0xa5, 0xed, 0x13, 0xdb, 0xad, 0x4c, - 0x5d, 0xfd, 0x5a, 0xce, 0xd5, 0xba, 0x0c, 0x75, 0x09, 0xe4, 0xfe, 0x12, 0x12, 0x5f, 0xbf, 0x86, - 0x9b, 0xe4, 0x6c, 0xac, 0xea, 0xc2, 0xaf, 0x1f, 0x17, 0xe0, 0xda, 0x2d, 0x98, 0xa9, 0x52, 0x2b, - 0x58, 0xcc, 0xb8, 0xe3, 0xc7, 0x30, 0x6d, 0x34, 0x49, 0xdb, 0xf5, 0x47, 0xdd, 0x6e, 0x08, 0x57, - 0x17, 0xd8, 0x6e, 0x02, 0x47, 0x5e, 0xc4, 0x1b, 0x56, 0x44, 0xa5, 0xed, 0xb9, 0xa9, 0x45, 0x74, - 0xad, 0x26, 0xc6, 0xb1, 0x0a, 0x74, 0xb9, 0xd5, 0x1e, 0xcc, 0x05, 0x4b, 0x51, 0x42, 0x33, 0xfe, - 0x91, 0x05, 0x76, 0x56, 0x38, 0x3b, 0x99, 0x6e, 0xb7, 0x3e, 0xa6, 0x6e, 0x98, 0xee, 0x2e, 0x9f, - 0x2b, 0x2b, 0xf0, 0x6f, 0x95, 0x5a, 0xec, 0xc8, 0xa6, 0xe6, 0x1a, 0xc1, 0xff, 0xd1, 0x7b, 0xce, - 0x29, 0x03, 0x30, 0xb5, 0xd6, 0x40, 0xd6, 0x22, 0x8b, 0x7c, 0x88, 0xe0, 0xbc, 0x8f, 0xec, 0x0c, - 0x27, 0x52, 0xb8, 0x4f, 0x5c, 0xdf, 0x23, 0x8e, 0x33, 0x20, 0x74, 0x0a, 0x80, 0xc9, 0x11, 0xe1, - 0xb6, 0x62, 0x2b, 0xa8, 0x00, 0xd3, 0x4d, 0xa6, 0xc3, 0x62, 0x92, 0xaf, 0x85, 0xbf, 0xd4, 0x55, - 0x58, 0x11, 0x79, 0xf1, 0x9a, 0x0e, 0xa1, 0x94, 0x88, 0xee, 0xdf, 0x15, 0xa4, 0x3e, 0x80, 0xfb, - 0x03, 0x05, 0x23, 0xd7, 0x9d, 0x1f, 0x73, 0x30, 0x59, 0xa5, 0x16, 0xfa, 0x0c, 0x28, 0xa5, 0xb9, - 0x6f, 0x69, 0xe9, 0x43, 0x44, 0x4b, 0x6d, 0xe2, 0xf2, 0xa3, 0x4c, 0xf0, 0xa8, 0x06, 0x74, 0x02, - 0x73, 0x3d, 0x0d, 0x7f, 0x6d, 0xa8, 0x4c, 0x07, 0x28, 0xeb, 0x23, 0x02, 0xb9, 0xd3, 0x39, 0x2c, - 0xf4, 0xb7, 0xff, 0xcd, 0xa1, 0x2a, 0x31, 0xb4, 0xbc, 0x9b, 0x05, 0xcd, 0x8d, 0x31, 0xcc, 0xc6, - 0x27, 0xc2, 0xea, 0x50, 0x11, 0x86, 0x93, 0xb5, 0xd1, 0x70, 0x71, 0x9b, 0xf8, 0x78, 0x10, 0xd9, - 0xc4, 0x70, 0x42, 0x9b, 0x94, 0x41, 0x82, 0x3e, 0xc1, 0x7c, 0x72, 0x88, 0x6c, 0x08, 0x24, 0x12, - 0x58, 0x79, 0x67, 0x74, 0x6c, 0x3c, 0x23, 0x3d, 0x63, 0x41, 0x94, 0x91, 0x38, 0x50, 0x98, 0x91, - 0xb4, 0x39, 0x81, 0x8e, 0x60, 0x8a, 0x0d, 0x89, 0x65, 0x01, 0x31, 0x00, 0xc8, 0x6b, 0x43, 0x00, - 0x71, 0x45, 0xd6, 0xf1, 0x45, 0x8a, 0x01, 0x40, 0xa8, 0x18, 0xef, 0xed, 0xe8, 0x03, 0xe4, 0xbb, - 0x8d, 0x7d, 0x45, 0xc4, 0x8a, 0x50, 0xf2, 0xe6, 0x28, 0xa8, 0x9e, 0xbc, 0xc6, 0x7a, 0xbc, 0x30, - 0xaf, 0x5d, 0x9c, 0x38, 0xaf, 0xfd, 0x3d, 0x1f, 0xbd, 0x82, 0x7f, 0x3a, 0x0d, 0xbf, 0x2c, 0x20, - 0x32, 0x84, 0xbc, 0x3e, 0x0c, 0xc1, 0x45, 0xdf, 0xc2, 0x4c, 0x34, 0x11, 0x54, 0x61, 0x3d, 0x0c, - 0x23, 0x6f, 0x0c, 0xc7, 0x70, 0xe9, 0x6f, 0x12, 0x94, 0x06, 0x4f, 0x8d, 0xdd, 0xd1, 0x73, 0xdd, - 0x65, 0xc9, 0x7b, 0xe3, 0xb0, 0x78, 0x45, 0x5f, 0x25, 0x28, 0x0c, 0x98, 0x19, 0xdb, 0x23, 0x26, - 0x3f, 0x56, 0xcb, 0x93, 0xcc, 0x94, 0xa8, 0x90, 0xca, 0xfb, 0xab, 0x1b, 0x45, 0xba, 0xbe, 0x51, - 0xa4, 0xdf, 0x37, 0x8a, 0xf4, 0xfd, 0x56, 0xc9, 0x5d, 0xdf, 0x2a, 0xb9, 0x9f, 0xb7, 0x4a, 0xee, - 0xdd, 0x81, 0x65, 0xfb, 0x27, 0xed, 0xba, 0x66, 0x92, 0xa6, 0x6e, 0xda, 0x9e, 0xe9, 0xe0, 0x86, - 0xed, 0xea, 0xcc, 0x68, 0xab, 0xef, 0xfa, 0x72, 0xa1, 0xf7, 0xdf, 0x68, 0x2e, 0x5b, 0x98, 0xd6, - 0xa7, 0xd9, 0x3d, 0xe4, 0xe1, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x3b, 0x96, 0x51, 0xf2, - 0x0c, 0x00, 0x00, + 0x1c, 0x5e, 0x81, 0x17, 0xde, 0xfd, 0xe0, 0x7d, 0x91, 0x13, 0x9c, 0x5b, 0x83, 0x05, 0x07, 0x21, + 0x44, 0xb4, 0x65, 0x10, 0x15, 0x13, 0xf1, 0xcf, 0xc0, 0xcb, 0x05, 0xb3, 0x44, 0x63, 0x34, 0x31, + 0xe9, 0xca, 0x59, 0xad, 0x74, 0x3d, 0x4d, 0x4f, 0x37, 0xe0, 0xca, 0xe8, 0x07, 0x30, 0xde, 0xf9, + 0x71, 0xbc, 0xe5, 0x92, 0x4b, 0xaf, 0x8c, 0x81, 0x2f, 0x62, 0x7a, 0xd6, 0x9e, 0x75, 0x5d, 0x6b, + 0xdb, 0x79, 0xd7, 0x9d, 0x3e, 0x7f, 0x7e, 0x67, 0x7d, 0x4e, 0x9f, 0x14, 0x56, 0x35, 0xc3, 0xd1, + 0x4c, 0xac, 0xb4, 0x0d, 0xd5, 0x75, 0xc9, 0x31, 0xb6, 0xda, 0xaa, 0xe6, 0x12, 0xe7, 0x4c, 0xe9, + 0xd5, 0x14, 0xf7, 0x54, 0xb6, 0x1d, 0xe2, 0x12, 0x24, 0xf6, 0x41, 0x72, 0x14, 0x24, 0xf7, 0x6a, + 0xa2, 0xa4, 0x11, 0xda, 0x21, 0x54, 0x69, 0xa9, 0x14, 0x2b, 0xbd, 0x5a, 0x0b, 0xbb, 0x6a, 0x4d, + 0xd1, 0x88, 0x61, 0xf5, 0xb9, 0xe2, 0xa2, 0x4e, 0x74, 0xc2, 0x2e, 0x15, 0xef, 0xaa, 0xbf, 0x5a, + 0x7d, 0x0e, 0xd7, 0x1b, 0x54, 0x7f, 0x69, 0x1f, 0xa9, 0x2e, 0x6e, 0xa8, 0xd4, 0xc5, 0x4e, 0xc3, + 0xb0, 0x5c, 0xec, 0x20, 0x04, 0x53, 0x6d, 0x87, 0x74, 0xca, 0xc2, 0x8a, 0xb0, 0x51, 0x6c, 0xb2, + 0x6b, 0x54, 0x86, 0x19, 0xf5, 0xe8, 0xc8, 0xc1, 0x94, 0x96, 0x27, 0xd8, 0x72, 0xf0, 0xb3, 0xba, + 0x0c, 0x37, 0x63, 0x65, 0x9a, 0x98, 0xda, 0xc4, 0xa2, 0xb8, 0xfa, 0x04, 0xe6, 0x39, 0xe0, 0x85, + 0xda, 0xa5, 0xb9, 0x1d, 0x2a, 0x70, 0x23, 0x22, 0xc0, 0xb5, 0x0f, 0x60, 0x91, 0xdf, 0xaa, 0x9b, + 0xaa, 0x76, 0x6c, 0x1a, 0x34, 0xff, 0x16, 0x24, 0x58, 0x8a, 0x53, 0xe1, 0x2e, 0x8f, 0xe1, 0x7f, + 0x7e, 0xff, 0xf0, 0xc4, 0xca, 0xad, 0x5f, 0x86, 0xd2, 0x30, 0x9f, 0x2b, 0xaf, 0x31, 0xe5, 0x67, + 0x9a, 0x86, 0x6d, 0x37, 0x51, 0xd9, 0xe7, 0x87, 0x50, 0x9c, 0xff, 0x49, 0x00, 0xd4, 0xa0, 0xfa, + 0x3e, 0xb1, 0xda, 0x86, 0xde, 0x75, 0xf0, 0x38, 0x4f, 0x10, 0xed, 0x41, 0x51, 0x35, 0x4d, 0x72, + 0xa2, 0x5a, 0x1a, 0x2e, 0x4f, 0xae, 0x08, 0x1b, 0xb3, 0xdb, 0x15, 0xb9, 0x1f, 0x29, 0xd9, 0x8b, + 0x94, 0xec, 0x47, 0x4a, 0xde, 0x27, 0x86, 0x55, 0x9f, 0x3a, 0xff, 0xb9, 0x5c, 0x68, 0x0e, 0x18, + 0xd5, 0x25, 0x10, 0x47, 0x47, 0x88, 0x3c, 0xfd, 0x26, 0xee, 0x90, 0xde, 0x58, 0xd3, 0xf9, 0x4f, + 0x3f, 0x2c, 0xc0, 0xb5, 0x6d, 0x98, 0x69, 0x50, 0xdd, 0x5b, 0xcc, 0xb9, 0xe3, 0x07, 0x30, 0xad, + 0x76, 0x48, 0xd7, 0x72, 0xb3, 0x6e, 0xd7, 0x87, 0x57, 0x17, 0xd8, 0x6e, 0x3c, 0x47, 0x3e, 0xc4, + 0x2b, 0x36, 0x44, 0xbd, 0xeb, 0x58, 0xb1, 0x43, 0x0c, 0xac, 0x26, 0xc6, 0xb1, 0xf2, 0x74, 0xb9, + 0xd5, 0x23, 0x98, 0xf3, 0x96, 0x82, 0x84, 0xe6, 0xfc, 0x23, 0x4b, 0xec, 0xac, 0x70, 0x76, 0x34, + 0xdd, 0x56, 0x6b, 0x4c, 0x5d, 0x3f, 0xdd, 0x03, 0x3e, 0x57, 0x96, 0xe0, 0xdf, 0x06, 0xd5, 0xd9, + 0x91, 0x8d, 0xcd, 0x35, 0x82, 0x6b, 0xc1, 0x7d, 0xce, 0x59, 0x01, 0x60, 0x6a, 0x76, 0x22, 0x6b, + 0x91, 0x45, 0xde, 0x47, 0x70, 0xde, 0x07, 0x76, 0x86, 0x23, 0x29, 0xdc, 0x27, 0x96, 0xeb, 0x10, + 0xd3, 0x4c, 0x08, 0x9d, 0x04, 0xa0, 0x71, 0x84, 0xbf, 0xad, 0xd0, 0x0a, 0x2a, 0xc1, 0x74, 0x87, + 0xe9, 0xb0, 0x98, 0x14, 0x9b, 0xfe, 0xaf, 0xea, 0x3a, 0xac, 0xfd, 0xc9, 0x8b, 0xcf, 0x74, 0x08, + 0x95, 0x48, 0x74, 0xff, 0x6e, 0xa0, 0xea, 0x2a, 0xdc, 0x4a, 0x14, 0x0c, 0x5c, 0xb7, 0xbf, 0xff, + 0x07, 0x93, 0x0d, 0xaa, 0xa3, 0xcf, 0x02, 0xa0, 0x98, 0xb7, 0x7b, 0x4d, 0x4e, 0x6e, 0x12, 0x39, + 0xf6, 0x4d, 0x2e, 0x3e, 0xcc, 0x4d, 0x09, 0x86, 0x41, 0x36, 0xcc, 0x0d, 0xbd, 0xf9, 0x37, 0x33, + 0x49, 0xf5, 0xc1, 0xe2, 0x4e, 0x0e, 0x30, 0x77, 0xfc, 0x08, 0x0b, 0xa3, 0x7d, 0xb0, 0x95, 0x49, + 0x29, 0xc4, 0x10, 0x77, 0xf3, 0x32, 0xf8, 0x00, 0x1d, 0x98, 0x0d, 0x57, 0xc5, 0xed, 0x4c, 0x42, + 0x0c, 0x2b, 0x6e, 0x67, 0xc7, 0x86, 0xed, 0xc2, 0xfd, 0x91, 0x66, 0x17, 0xc2, 0xa6, 0xda, 0xc5, + 0x34, 0x0e, 0x3a, 0x83, 0xf9, 0x68, 0xdb, 0xc8, 0x29, 0x32, 0x11, 0xbc, 0x78, 0x3f, 0x1f, 0x3e, + 0x9c, 0xa5, 0xa1, 0x1e, 0x49, 0xcb, 0x52, 0x18, 0x9c, 0x9a, 0xa5, 0xb8, 0x82, 0x41, 0xaf, 0x61, + 0x8a, 0xb5, 0xcb, 0x6a, 0x0a, 0xd9, 0x03, 0x89, 0x9b, 0x19, 0x40, 0x61, 0x65, 0x56, 0x19, 0x69, + 0xca, 0x1e, 0x28, 0x55, 0x39, 0x5c, 0x12, 0x48, 0x87, 0xe2, 0xa0, 0x21, 0x36, 0xd2, 0x98, 0x01, + 0x52, 0xdc, 0xca, 0x8a, 0x1c, 0xca, 0x79, 0xa8, 0x34, 0x52, 0x73, 0x3e, 0xc0, 0xa6, 0xe7, 0x7c, + 0xb4, 0x4c, 0xd0, 0x5b, 0xf8, 0xa7, 0xdf, 0x24, 0x6b, 0x29, 0x64, 0x86, 0x12, 0xef, 0x64, 0x41, + 0x71, 0x71, 0x15, 0x66, 0x82, 0xca, 0x59, 0x4f, 0x9d, 0x8d, 0xe1, 0x44, 0x39, 0x1b, 0x8e, 0x5b, + 0x7c, 0x13, 0xa0, 0x92, 0x5c, 0x4f, 0xbb, 0xf9, 0xce, 0xc4, 0x80, 0x29, 0x3e, 0x1d, 0x97, 0xc9, + 0x27, 0xfb, 0x22, 0x40, 0x29, 0xa1, 0xa4, 0xee, 0xe5, 0x38, 0x35, 0xa1, 0x99, 0xf6, 0xc6, 0xa2, + 0x05, 0x03, 0xd5, 0xdf, 0x9d, 0x5f, 0x4a, 0xc2, 0xc5, 0xa5, 0x24, 0xfc, 0xba, 0x94, 0x84, 0xaf, + 0x57, 0x52, 0xe1, 0xe2, 0x4a, 0x2a, 0xfc, 0xb8, 0x92, 0x0a, 0x6f, 0x0e, 0x74, 0xc3, 0x7d, 0xdf, + 0x6d, 0xc9, 0x1a, 0xe9, 0x28, 0x7d, 0x8b, 0xb6, 0x61, 0x29, 0x16, 0x69, 0x99, 0xf8, 0xee, 0xc8, + 0xe7, 0xd3, 0xe9, 0xe8, 0x17, 0x95, 0x7b, 0x66, 0x63, 0xda, 0x9a, 0x66, 0x1f, 0x40, 0x3b, 0xbf, + 0x03, 0x00, 0x00, 0xff, 0xff, 0xb4, 0x61, 0x3b, 0x5b, 0x79, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1478,7 +1480,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) UpdateMasterMinter(ctx context.Context, in *MsgUpdateMasterMinter, opts ...grpc.CallOption) (*MsgUpdateMasterMinterResponse, error) { out := new(MsgUpdateMasterMinterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/UpdateMasterMinter", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/UpdateMasterMinter", in, out, opts...) if err != nil { return nil, err } @@ -1487,7 +1489,7 @@ func (c *msgClient) UpdateMasterMinter(ctx context.Context, in *MsgUpdateMasterM func (c *msgClient) UpdatePauser(ctx context.Context, in *MsgUpdatePauser, opts ...grpc.CallOption) (*MsgUpdatePauserResponse, error) { out := new(MsgUpdatePauserResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/UpdatePauser", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/UpdatePauser", in, out, opts...) if err != nil { return nil, err } @@ -1496,7 +1498,7 @@ func (c *msgClient) UpdatePauser(ctx context.Context, in *MsgUpdatePauser, opts func (c *msgClient) UpdateBlacklister(ctx context.Context, in *MsgUpdateBlacklister, opts ...grpc.CallOption) (*MsgUpdateBlacklisterResponse, error) { out := new(MsgUpdateBlacklisterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/UpdateBlacklister", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/UpdateBlacklister", in, out, opts...) if err != nil { return nil, err } @@ -1505,7 +1507,7 @@ func (c *msgClient) UpdateBlacklister(ctx context.Context, in *MsgUpdateBlacklis func (c *msgClient) UpdateOwner(ctx context.Context, in *MsgUpdateOwner, opts ...grpc.CallOption) (*MsgUpdateOwnerResponse, error) { out := new(MsgUpdateOwnerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/UpdateOwner", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/UpdateOwner", in, out, opts...) if err != nil { return nil, err } @@ -1514,7 +1516,7 @@ func (c *msgClient) UpdateOwner(ctx context.Context, in *MsgUpdateOwner, opts .. func (c *msgClient) AcceptOwner(ctx context.Context, in *MsgAcceptOwner, opts ...grpc.CallOption) (*MsgAcceptOwnerResponse, error) { out := new(MsgAcceptOwnerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/AcceptOwner", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/AcceptOwner", in, out, opts...) if err != nil { return nil, err } @@ -1523,7 +1525,7 @@ func (c *msgClient) AcceptOwner(ctx context.Context, in *MsgAcceptOwner, opts .. func (c *msgClient) ConfigureMinter(ctx context.Context, in *MsgConfigureMinter, opts ...grpc.CallOption) (*MsgConfigureMinterResponse, error) { out := new(MsgConfigureMinterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/ConfigureMinter", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/ConfigureMinter", in, out, opts...) if err != nil { return nil, err } @@ -1532,7 +1534,7 @@ func (c *msgClient) ConfigureMinter(ctx context.Context, in *MsgConfigureMinter, func (c *msgClient) RemoveMinter(ctx context.Context, in *MsgRemoveMinter, opts ...grpc.CallOption) (*MsgRemoveMinterResponse, error) { out := new(MsgRemoveMinterResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/RemoveMinter", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/RemoveMinter", in, out, opts...) if err != nil { return nil, err } @@ -1541,7 +1543,7 @@ func (c *msgClient) RemoveMinter(ctx context.Context, in *MsgRemoveMinter, opts func (c *msgClient) Mint(ctx context.Context, in *MsgMint, opts ...grpc.CallOption) (*MsgMintResponse, error) { out := new(MsgMintResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Mint", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Mint", in, out, opts...) if err != nil { return nil, err } @@ -1550,7 +1552,7 @@ func (c *msgClient) Mint(ctx context.Context, in *MsgMint, opts ...grpc.CallOpti func (c *msgClient) Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOption) (*MsgBurnResponse, error) { out := new(MsgBurnResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Burn", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Burn", in, out, opts...) if err != nil { return nil, err } @@ -1559,7 +1561,7 @@ func (c *msgClient) Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOpti func (c *msgClient) Blacklist(ctx context.Context, in *MsgBlacklist, opts ...grpc.CallOption) (*MsgBlacklistResponse, error) { out := new(MsgBlacklistResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Blacklist", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Blacklist", in, out, opts...) if err != nil { return nil, err } @@ -1568,7 +1570,7 @@ func (c *msgClient) Blacklist(ctx context.Context, in *MsgBlacklist, opts ...grp func (c *msgClient) Unblacklist(ctx context.Context, in *MsgUnblacklist, opts ...grpc.CallOption) (*MsgUnblacklistResponse, error) { out := new(MsgUnblacklistResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Unblacklist", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Unblacklist", in, out, opts...) if err != nil { return nil, err } @@ -1577,7 +1579,7 @@ func (c *msgClient) Unblacklist(ctx context.Context, in *MsgUnblacklist, opts .. func (c *msgClient) Pause(ctx context.Context, in *MsgPause, opts ...grpc.CallOption) (*MsgPauseResponse, error) { out := new(MsgPauseResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Pause", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Pause", in, out, opts...) if err != nil { return nil, err } @@ -1586,7 +1588,7 @@ func (c *msgClient) Pause(ctx context.Context, in *MsgPause, opts ...grpc.CallOp func (c *msgClient) Unpause(ctx context.Context, in *MsgUnpause, opts ...grpc.CallOption) (*MsgUnpauseResponse, error) { out := new(MsgUnpauseResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/Unpause", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/Unpause", in, out, opts...) if err != nil { return nil, err } @@ -1595,7 +1597,7 @@ func (c *msgClient) Unpause(ctx context.Context, in *MsgUnpause, opts ...grpc.Ca func (c *msgClient) ConfigureMinterController(ctx context.Context, in *MsgConfigureMinterController, opts ...grpc.CallOption) (*MsgConfigureMinterControllerResponse, error) { out := new(MsgConfigureMinterControllerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/ConfigureMinterController", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/ConfigureMinterController", in, out, opts...) if err != nil { return nil, err } @@ -1604,7 +1606,7 @@ func (c *msgClient) ConfigureMinterController(ctx context.Context, in *MsgConfig func (c *msgClient) RemoveMinterController(ctx context.Context, in *MsgRemoveMinterController, opts ...grpc.CallOption) (*MsgRemoveMinterControllerResponse, error) { out := new(MsgRemoveMinterControllerResponse) - err := c.cc.Invoke(ctx, "/noble.fiattokenfactory.Msg/RemoveMinterController", in, out, opts...) + err := c.cc.Invoke(ctx, "/circle.fiattokenfactory.v1.Msg/RemoveMinterController", in, out, opts...) if err != nil { return nil, err } @@ -1694,7 +1696,7 @@ func _Msg_UpdateMasterMinter_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/UpdateMasterMinter", + FullMethod: "/circle.fiattokenfactory.v1.Msg/UpdateMasterMinter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateMasterMinter(ctx, req.(*MsgUpdateMasterMinter)) @@ -1712,7 +1714,7 @@ func _Msg_UpdatePauser_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/UpdatePauser", + FullMethod: "/circle.fiattokenfactory.v1.Msg/UpdatePauser", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdatePauser(ctx, req.(*MsgUpdatePauser)) @@ -1730,7 +1732,7 @@ func _Msg_UpdateBlacklister_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/UpdateBlacklister", + FullMethod: "/circle.fiattokenfactory.v1.Msg/UpdateBlacklister", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateBlacklister(ctx, req.(*MsgUpdateBlacklister)) @@ -1748,7 +1750,7 @@ func _Msg_UpdateOwner_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/UpdateOwner", + FullMethod: "/circle.fiattokenfactory.v1.Msg/UpdateOwner", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateOwner(ctx, req.(*MsgUpdateOwner)) @@ -1766,7 +1768,7 @@ func _Msg_AcceptOwner_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/AcceptOwner", + FullMethod: "/circle.fiattokenfactory.v1.Msg/AcceptOwner", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).AcceptOwner(ctx, req.(*MsgAcceptOwner)) @@ -1784,7 +1786,7 @@ func _Msg_ConfigureMinter_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/ConfigureMinter", + FullMethod: "/circle.fiattokenfactory.v1.Msg/ConfigureMinter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ConfigureMinter(ctx, req.(*MsgConfigureMinter)) @@ -1802,7 +1804,7 @@ func _Msg_RemoveMinter_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/RemoveMinter", + FullMethod: "/circle.fiattokenfactory.v1.Msg/RemoveMinter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RemoveMinter(ctx, req.(*MsgRemoveMinter)) @@ -1820,7 +1822,7 @@ func _Msg_Mint_Handler(srv interface{}, ctx context.Context, dec func(interface{ } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Mint", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Mint", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Mint(ctx, req.(*MsgMint)) @@ -1838,7 +1840,7 @@ func _Msg_Burn_Handler(srv interface{}, ctx context.Context, dec func(interface{ } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Burn", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Burn", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Burn(ctx, req.(*MsgBurn)) @@ -1856,7 +1858,7 @@ func _Msg_Blacklist_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Blacklist", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Blacklist", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Blacklist(ctx, req.(*MsgBlacklist)) @@ -1874,7 +1876,7 @@ func _Msg_Unblacklist_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Unblacklist", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Unblacklist", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Unblacklist(ctx, req.(*MsgUnblacklist)) @@ -1892,7 +1894,7 @@ func _Msg_Pause_Handler(srv interface{}, ctx context.Context, dec func(interface } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Pause", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Pause", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Pause(ctx, req.(*MsgPause)) @@ -1910,7 +1912,7 @@ func _Msg_Unpause_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/Unpause", + FullMethod: "/circle.fiattokenfactory.v1.Msg/Unpause", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Unpause(ctx, req.(*MsgUnpause)) @@ -1928,7 +1930,7 @@ func _Msg_ConfigureMinterController_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/ConfigureMinterController", + FullMethod: "/circle.fiattokenfactory.v1.Msg/ConfigureMinterController", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ConfigureMinterController(ctx, req.(*MsgConfigureMinterController)) @@ -1946,7 +1948,7 @@ func _Msg_RemoveMinterController_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/noble.fiattokenfactory.Msg/RemoveMinterController", + FullMethod: "/circle.fiattokenfactory.v1.Msg/RemoveMinterController", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RemoveMinterController(ctx, req.(*MsgRemoveMinterController)) @@ -1955,7 +1957,7 @@ func _Msg_RemoveMinterController_Handler(srv interface{}, ctx context.Context, d } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "noble.fiattokenfactory.Msg", + ServiceName: "circle.fiattokenfactory.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -2020,7 +2022,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fiattokenfactory/tx.proto", + Metadata: "circle/fiattokenfactory/v1/tx.proto", } func (m *MsgUpdateMasterMinter) Marshal() (dAtA []byte, err error) {