From a2442f8d48f50aec183cde10d6850a004f5e3df0 Mon Sep 17 00:00:00 2001 From: Cosmic Vagabond <121588426+cosmic-vagabond@users.noreply.github.com> Date: Wed, 25 Sep 2024 18:47:26 +0200 Subject: [PATCH] refactor: use snake case fields with proto message fields (#822) --- proto/elys/amm/types.proto | 10 +- proto/elys/assetprofile/add_entry.proto | 24 +-- proto/elys/commitment/query.proto | 4 +- proto/elys/leveragelp/tx.proto | 2 +- proto/elys/oracle/tx.proto | 4 +- proto/elys/parameter/tx.proto | 2 +- proto/elys/tier/genesis.proto | 2 +- proto/elys/tier/query.proto | 8 +- proto/elys/tradeshield/genesis.proto | 8 +- proto/elys/tradeshield/query.proto | 8 +- .../client/wasm/query_earn_mining_pool_all.go | 12 +- x/amm/types/types.pb.go | 132 +++++++------- x/assetprofile/types/add_entry.pb.go | 88 +++++----- x/commitment/types/query.pb.go | 83 ++++----- x/leveragelp/types/tx.pb.go | 130 +++++++------- x/oracle/types/tx.pb.go | 107 ++++++------ x/parameter/types/tx.pb.go | 86 ++++----- x/tier/types/genesis.pb.go | 22 +-- x/tier/types/query.pb.go | 165 +++++++++--------- x/tradeshield/types/genesis.pb.go | 51 +++--- x/tradeshield/types/query.pb.go | 91 +++++----- 21 files changed, 524 insertions(+), 515 deletions(-) diff --git a/proto/elys/amm/types.proto b/proto/elys/amm/types.proto index 323475d2c..c99ecf477 100644 --- a/proto/elys/amm/types.proto +++ b/proto/elys/amm/types.proto @@ -9,11 +9,11 @@ import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/elys-network/elys/x/amm/types"; enum FilterType { - FilterAll = 0; - FilterPerpetual = 1; - FilterFixedWeight = 2; - FilterDynamicWeight = 3; - FilterLeverage = 4; + FILTER_ALL = 0; + FILTER_PERPETUAL = 1; + FILTER_FIXED_WEIGHT = 2; + FILTER_DYNAMIC_WEIGHT = 3; + FILTER_LEVERAGE = 4; } message QueryEarnPoolRequest { diff --git a/proto/elys/assetprofile/add_entry.proto b/proto/elys/assetprofile/add_entry.proto index c6916fc26..60f6243ab 100644 --- a/proto/elys/assetprofile/add_entry.proto +++ b/proto/elys/assetprofile/add_entry.proto @@ -6,24 +6,24 @@ option go_package = "github.com/elys-network/elys/x/assetprofile/types"; message MsgAddEntry { string creator = 1; - string baseDenom = 2; + string base_denom = 2; uint64 decimals = 3; string denom = 4; string path = 5; - string ibcChannelId = 6; - string ibcCounterpartyChannelId = 7; - string displayName = 8; - string displaySymbol = 9; + string ibc_channel_id = 6; + string ibc_counterparty_channel_id = 7; + string display_name = 8; + string display_symbol = 9; string network = 10; string address = 11; - string externalSymbol = 12; - string transferLimit = 13; + string external_symbol = 12; + string transfer_limit = 13; repeated string permissions = 14; - string unitDenom = 15; - string ibcCounterpartyDenom = 16; - string ibcCounterpartyChainId = 17; - bool commitEnabled = 18; - bool withdrawEnabled = 19; + string unit_denom = 15; + string ibc_counterparty_denom = 16; + string ibc_counterparty_chain_id = 17; + bool commit_enabled = 18; + bool withdraw_enabled = 19; } message MsgAddEntryResponse {} diff --git a/proto/elys/commitment/query.proto b/proto/elys/commitment/query.proto index f2bd6b70d..e5b2e1834 100644 --- a/proto/elys/commitment/query.proto +++ b/proto/elys/commitment/query.proto @@ -95,7 +95,7 @@ message QueryCommitmentVestingInfoResponse { message VestingDetails { string id = 1; - string totalVesting = 2 [ + string total_vesting = 2 [ (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false @@ -105,7 +105,7 @@ message VestingDetails { (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false ]; - string vestedSoFar = 4 [ + string vested_so_far = 4 [ (cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false diff --git a/proto/elys/leveragelp/tx.proto b/proto/elys/leveragelp/tx.proto index 72f7e7591..6b62328bd 100644 --- a/proto/elys/leveragelp/tx.proto +++ b/proto/elys/leveragelp/tx.proto @@ -71,7 +71,7 @@ message UpdatePool { message MsgUpdatePool { string authority = 1; - UpdatePool UpdatePool = 2; + UpdatePool update_pool = 2; } message MsgUpdatePoolResponse {} diff --git a/proto/elys/oracle/tx.proto b/proto/elys/oracle/tx.proto index 283bd1a5e..8fbeb8ad7 100644 --- a/proto/elys/oracle/tx.proto +++ b/proto/elys/oracle/tx.proto @@ -96,8 +96,8 @@ message MsgCreateAssetInfo { string creator = 1; string denom = 2; string display = 3; - string bandTicker = 4; - string elysTicker = 5; + string band_ticker = 4; + string elys_ticker = 5; uint64 decimal = 6; } diff --git a/proto/elys/parameter/tx.proto b/proto/elys/parameter/tx.proto index 5f122c3a4..62b587ddf 100644 --- a/proto/elys/parameter/tx.proto +++ b/proto/elys/parameter/tx.proto @@ -60,7 +60,7 @@ message MsgUpdateWasmConfigResponse {} message MsgUpdateRewardsDataLifetime { string creator = 1; - string rewardsDataLifetime = 2; + string rewards_data_lifetime = 2; } message MsgUpdateRewardsDataLifetimeResponse {} diff --git a/proto/elys/tier/genesis.proto b/proto/elys/tier/genesis.proto index 8276612ca..1c4b29158 100644 --- a/proto/elys/tier/genesis.proto +++ b/proto/elys/tier/genesis.proto @@ -11,6 +11,6 @@ option go_package = "github.com/elys-network/elys/x/tier/types"; // GenesisState defines the tier module's genesis state. message GenesisState { Params params = 1 [(gogoproto.nullable) = false]; - repeated Portfolio portfolioList = 2 [(gogoproto.nullable) = false]; + repeated Portfolio portfolio_list = 2 [(gogoproto.nullable) = false]; } diff --git a/proto/elys/tier/query.proto b/proto/elys/tier/query.proto index 5ba024d39..6be193c3e 100644 --- a/proto/elys/tier/query.proto +++ b/proto/elys/tier/query.proto @@ -177,9 +177,9 @@ message QueryGetConsolidatedPriceRequest { } message QueryGetConsolidatedPriceResponse { - string ammPrice = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; - string oraclePrice = 2 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; - string oraclePriceDec = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string amm_price = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string oracle_price = 2 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string oracle_price_dec = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } message QueryStakedRequest { @@ -190,6 +190,6 @@ message QueryStakedResponse { string commitments = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; string delegations = 2 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; string unbondings = 3 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; - string totalVested = 4 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; + string total_vested = 4 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false]; } diff --git a/proto/elys/tradeshield/genesis.proto b/proto/elys/tradeshield/genesis.proto index ed9ad20b0..cddd60ce1 100644 --- a/proto/elys/tradeshield/genesis.proto +++ b/proto/elys/tradeshield/genesis.proto @@ -11,9 +11,9 @@ option go_package = "github.com/elys-network/elys/x/tradeshield/types"; // GenesisState defines the tradeshield module's genesis state. message GenesisState { Params params = 1 [(gogoproto.nullable) = false]; - repeated SpotOrder pendingSpotOrderList = 2 [(gogoproto.nullable) = false]; - uint64 pendingSpotOrderCount = 3; - repeated PerpetualOrder pendingPerpetualOrderList = 4 [(gogoproto.nullable) = false]; - uint64 pendingPerpetualOrderCount = 5; + repeated SpotOrder pending_spot_order_list = 2 [(gogoproto.nullable) = false]; + uint64 pending_spot_order_count = 3; + repeated PerpetualOrder pending_perpetual_order_list = 4 [(gogoproto.nullable) = false]; + uint64 pending_perpetual_order_count = 5; } diff --git a/proto/elys/tradeshield/query.proto b/proto/elys/tradeshield/query.proto index 743780618..c5bac3f30 100644 --- a/proto/elys/tradeshield/query.proto +++ b/proto/elys/tradeshield/query.proto @@ -54,7 +54,7 @@ message QueryGetPendingSpotOrderRequest { } message QueryGetPendingSpotOrderResponse { - SpotOrder PendingSpotOrder = 1 [(gogoproto.nullable) = false]; + SpotOrder pending_spot_order = 1 [(gogoproto.nullable) = false]; } message QueryAllPendingSpotOrderRequest { @@ -62,7 +62,7 @@ message QueryAllPendingSpotOrderRequest { } message QueryAllPendingSpotOrderResponse { - repeated SpotOrder PendingSpotOrder = 1 [(gogoproto.nullable) = false]; + repeated SpotOrder pending_spot_order = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -71,7 +71,7 @@ message QueryGetPendingPerpetualOrderRequest { } message QueryGetPendingPerpetualOrderResponse { - PerpetualOrder PendingPerpetualOrder = 1 [(gogoproto.nullable) = false]; + PerpetualOrder pending_perpetual_order = 1 [(gogoproto.nullable) = false]; } message QueryAllPendingPerpetualOrderRequest { @@ -79,7 +79,7 @@ message QueryAllPendingPerpetualOrderRequest { } message QueryAllPendingPerpetualOrderResponse { - repeated PerpetualOrder PendingPerpetualOrder = 1 [(gogoproto.nullable) = false]; + repeated PerpetualOrder pending_perpetual_order = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/x/amm/client/wasm/query_earn_mining_pool_all.go b/x/amm/client/wasm/query_earn_mining_pool_all.go index 5d4cceb41..1d8fd0606 100644 --- a/x/amm/client/wasm/query_earn_mining_pool_all.go +++ b/x/amm/client/wasm/query_earn_mining_pool_all.go @@ -12,16 +12,16 @@ import ( // Check pool type func (oq *Querier) checkFilterType(ctx sdk.Context, ammPool *types.Pool, filterType types.FilterType) bool { switch filterType { - case types.FilterType_FilterAll: + case types.FilterType_FILTER_ALL: return true - case types.FilterType_FilterPerpetual: + case types.FilterType_FILTER_PERPETUAL: _, found := oq.perpetualKeeper.GetPool(ctx, ammPool.PoolId) return found - case types.FilterType_FilterFixedWeight: + case types.FilterType_FILTER_FIXED_WEIGHT: return ammPool.PoolParams.UseOracle - case types.FilterType_FilterDynamicWeight: + case types.FilterType_FILTER_DYNAMIC_WEIGHT: return !ammPool.PoolParams.UseOracle - case types.FilterType_FilterLeverage: + case types.FilterType_FILTER_LEVERAGE: _, found := oq.leveragelpKeeper.GetPool(ctx, ammPool.PoolId) return found } @@ -68,7 +68,7 @@ func (oq *Querier) generateEarnPool(ctx sdk.Context, ammPool *types.Pool, filter rewardsApr = poolInfo.DexApr.Add(poolInfo.EdenApr) } - if filterType == types.FilterType_FilterLeverage { + if filterType == types.FilterType_FILTER_LEVERAGE { prams := oq.stablestakeKeeper.GetParams(ctx) borrowApr = prams.InterestRate } diff --git a/x/amm/types/types.pb.go b/x/amm/types/types.pb.go index 9c4db81f8..65025789e 100644 --- a/x/amm/types/types.pb.go +++ b/x/amm/types/types.pb.go @@ -29,27 +29,27 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type FilterType int32 const ( - FilterType_FilterAll FilterType = 0 - FilterType_FilterPerpetual FilterType = 1 - FilterType_FilterFixedWeight FilterType = 2 - FilterType_FilterDynamicWeight FilterType = 3 - FilterType_FilterLeverage FilterType = 4 + FilterType_FILTER_ALL FilterType = 0 + FilterType_FILTER_PERPETUAL FilterType = 1 + FilterType_FILTER_FIXED_WEIGHT FilterType = 2 + FilterType_FILTER_DYNAMIC_WEIGHT FilterType = 3 + FilterType_FILTER_LEVERAGE FilterType = 4 ) var FilterType_name = map[int32]string{ - 0: "FilterAll", - 1: "FilterPerpetual", - 2: "FilterFixedWeight", - 3: "FilterDynamicWeight", - 4: "FilterLeverage", + 0: "FILTER_ALL", + 1: "FILTER_PERPETUAL", + 2: "FILTER_FIXED_WEIGHT", + 3: "FILTER_DYNAMIC_WEIGHT", + 4: "FILTER_LEVERAGE", } var FilterType_value = map[string]int32{ - "FilterAll": 0, - "FilterPerpetual": 1, - "FilterFixedWeight": 2, - "FilterDynamicWeight": 3, - "FilterLeverage": 4, + "FILTER_ALL": 0, + "FILTER_PERPETUAL": 1, + "FILTER_FIXED_WEIGHT": 2, + "FILTER_DYNAMIC_WEIGHT": 3, + "FILTER_LEVERAGE": 4, } func (x FilterType) String() string { @@ -110,7 +110,7 @@ func (m *QueryEarnPoolRequest) GetFilterType() FilterType { if m != nil { return m.FilterType } - return FilterType_FilterAll + return FilterType_FILTER_ALL } func (m *QueryEarnPoolRequest) GetPagination() *query.PageRequest { @@ -275,55 +275,57 @@ func init() { func init() { proto.RegisterFile("elys/amm/types.proto", fileDescriptor_5382be80734a352d) } var fileDescriptor_5382be80734a352d = []byte{ - // 765 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x51, 0x6f, 0xe3, 0x44, - 0x10, 0xc7, 0xe3, 0x26, 0xd7, 0xda, 0xe3, 0xb4, 0x17, 0xb6, 0x3d, 0xdd, 0xf6, 0x10, 0x69, 0x54, - 0xa4, 0x23, 0x3a, 0xe9, 0x6c, 0x5a, 0xc4, 0x3b, 0x0d, 0xa5, 0xe8, 0xa4, 0xa2, 0x16, 0x53, 0x84, - 0xc4, 0x8b, 0xb5, 0x89, 0x27, 0xa9, 0x55, 0xdb, 0xbb, 0xb7, 0xbb, 0x69, 0x2e, 0xdf, 0x82, 0x8f, - 0x81, 0x78, 0xe2, 0x63, 0xdc, 0xe3, 0x3d, 0x22, 0x1e, 0x0e, 0xd4, 0x7e, 0x11, 0xb4, 0x6b, 0x3b, - 0x09, 0x3c, 0xa0, 0x2a, 0xf7, 0x14, 0xcf, 0xcc, 0xce, 0x6f, 0xfe, 0xbb, 0x3b, 0x3b, 0x81, 0x3d, - 0xcc, 0xe6, 0x2a, 0x64, 0x79, 0x1e, 0xea, 0xb9, 0x40, 0x15, 0x08, 0xc9, 0x35, 0x27, 0xae, 0xf1, - 0x06, 0x2c, 0xcf, 0x9f, 0xed, 0x4d, 0xf8, 0x84, 0x5b, 0x67, 0x68, 0xbe, 0xca, 0xf8, 0xb3, 0x17, - 0x23, 0xae, 0x72, 0xae, 0xc2, 0x21, 0x53, 0x18, 0xbe, 0x9e, 0xa2, 0x9c, 0x87, 0xb7, 0x47, 0x43, - 0xd4, 0xec, 0x28, 0x14, 0x6c, 0x92, 0x16, 0x4c, 0xa7, 0xbc, 0xa8, 0xd6, 0xee, 0x2f, 0x2a, 0x08, - 0xce, 0xb3, 0x98, 0x29, 0x85, 0xba, 0x0a, 0x75, 0x57, 0x31, 0x35, 0x60, 0xc4, 0xd3, 0x2a, 0xf5, - 0xf0, 0x77, 0x07, 0xf6, 0xbe, 0x37, 0xf4, 0x6f, 0x98, 0x2c, 0x2e, 0x39, 0xcf, 0x22, 0x7c, 0x3d, - 0x45, 0xa5, 0xc9, 0x3e, 0xb8, 0x16, 0x96, 0x26, 0x8a, 0x3a, 0xbd, 0x66, 0xbf, 0x15, 0x6d, 0x19, - 0xfb, 0x55, 0xa2, 0xc8, 0x97, 0xe0, 0x8f, 0xd3, 0x4c, 0xa3, 0x8c, 0xcd, 0x86, 0xe8, 0x46, 0xcf, - 0xe9, 0xef, 0x1c, 0xef, 0x05, 0xf5, 0x86, 0x82, 0x33, 0x1b, 0xbc, 0x9a, 0x0b, 0x8c, 0x60, 0xbc, - 0xf8, 0x26, 0x67, 0x00, 0x4b, 0xe5, 0xb4, 0xd9, 0x73, 0xfa, 0xfe, 0xf1, 0xf3, 0xa0, 0xd4, 0x17, - 0x18, 0x7d, 0x81, 0xdd, 0x66, 0x50, 0xa9, 0x0c, 0x2e, 0xd9, 0x04, 0x2b, 0x35, 0xd1, 0x4a, 0xe6, - 0xe1, 0xaf, 0x2e, 0xb8, 0xb5, 0x5a, 0xf2, 0x14, 0xb6, 0x2a, 0x99, 0xd4, 0xe9, 0x39, 0xfd, 0x56, - 0xb4, 0x59, 0xaa, 0x24, 0x47, 0xb0, 0x69, 0xcf, 0x41, 0xd1, 0x8d, 0x5e, 0xb3, 0xef, 0x1f, 0xef, - 0x2e, 0xf5, 0x99, 0xc4, 0x13, 0x13, 0x1b, 0xb4, 0xde, 0xbe, 0x3f, 0x68, 0x44, 0xd5, 0x42, 0xf2, - 0x09, 0x80, 0x65, 0x49, 0x53, 0xc7, 0x0a, 0xf4, 0x22, 0xcf, 0x78, 0x22, 0xe3, 0x20, 0x17, 0xe0, - 0x4b, 0x9c, 0x31, 0x99, 0xa8, 0x98, 0x09, 0x49, 0x5b, 0x26, 0x3e, 0x08, 0x0c, 0xe1, 0xcf, 0xf7, - 0x07, 0xcf, 0x27, 0xa9, 0xbe, 0x9e, 0x0e, 0x83, 0x11, 0xcf, 0xc3, 0xea, 0xc8, 0xcb, 0x9f, 0x97, - 0x2a, 0xb9, 0xa9, 0x2e, 0xfe, 0x14, 0x47, 0x11, 0x54, 0x88, 0x13, 0x21, 0xc9, 0x77, 0x00, 0x43, - 0x2e, 0x25, 0x9f, 0x59, 0xde, 0xa3, 0xb5, 0x78, 0x5e, 0x49, 0x30, 0xb8, 0x0b, 0xf0, 0x33, 0xbc, - 0x45, 0xc9, 0x26, 0x18, 0x67, 0x82, 0x6e, 0xae, 0xa7, 0xaf, 0x46, 0x9c, 0x0b, 0x72, 0x0e, 0x9e, - 0x40, 0x29, 0x50, 0x4f, 0x59, 0x46, 0xb7, 0xd6, 0x93, 0xb7, 0x00, 0x90, 0xaf, 0xa0, 0xa9, 0x6f, - 0x33, 0xea, 0xae, 0xc5, 0x31, 0xa9, 0xe4, 0x0a, 0x76, 0x32, 0x11, 0x6b, 0x7e, 0x83, 0x45, 0x2c, - 0x64, 0x3a, 0x42, 0xea, 0xad, 0x05, 0x6b, 0x67, 0xe2, 0xca, 0x40, 0x2e, 0x0d, 0x63, 0xf5, 0x5a, - 0xa7, 0x2a, 0xa1, 0xf0, 0x41, 0xd7, 0xfa, 0xa3, 0x4a, 0x48, 0x01, 0xed, 0xd2, 0x8a, 0xcd, 0x3b, - 0x53, 0xd4, 0xb7, 0xfd, 0xb7, 0xff, 0xaf, 0x4e, 0xaf, 0x7b, 0xfc, 0x6b, 0x9e, 0x16, 0x83, 0xcf, - 0x4d, 0xb1, 0xdf, 0xfe, 0x3a, 0xe8, 0x3f, 0xa0, 0x98, 0x49, 0x50, 0x51, 0xa5, 0xd8, 0x1a, 0x24, - 0x87, 0xb6, 0xe6, 0x9a, 0x65, 0xb1, 0xba, 0x66, 0x12, 0x15, 0x6d, 0xdb, 0x97, 0xf5, 0x3f, 0xf5, - 0xc2, 0x6a, 0x73, 0x9f, 0x3d, 0xb0, 0x5e, 0xe4, 0x5b, 0xfe, 0x0f, 0x16, 0x4f, 0x5e, 0x81, 0xab, - 0x66, 0x4c, 0xc4, 0x63, 0x44, 0xba, 0xbd, 0xd6, 0x61, 0x6d, 0x99, 0xfc, 0x33, 0x44, 0xf2, 0x31, - 0x78, 0x63, 0xc4, 0x38, 0xc1, 0x82, 0xe7, 0x74, 0xc7, 0xbe, 0x37, 0x77, 0x8c, 0x78, 0x6a, 0x6c, - 0xf3, 0x1a, 0xa7, 0x0a, 0x63, 0x2e, 0xd9, 0x28, 0x43, 0xfa, 0xb8, 0xe7, 0xf4, 0xdd, 0xc8, 0x9b, - 0x2a, 0xbc, 0xb0, 0x0e, 0xf2, 0x29, 0x6c, 0xa7, 0x2a, 0xae, 0xbb, 0x35, 0x13, 0xb4, 0x63, 0x57, - 0xb4, 0x53, 0x75, 0xbe, 0xf0, 0x1d, 0x7e, 0x0b, 0x4f, 0xfe, 0x33, 0xdc, 0x94, 0xe0, 0x85, 0x42, - 0x12, 0xc0, 0x23, 0xf3, 0xb0, 0xcb, 0xd1, 0xe6, 0x1f, 0x93, 0xe5, 0x70, 0xa8, 0x97, 0x56, 0xb3, - 0xa1, 0x5c, 0xf6, 0x42, 0x03, 0x2c, 0xa7, 0x1a, 0xd9, 0x06, 0xaf, 0xb4, 0x4e, 0xb2, 0xac, 0xd3, - 0x20, 0xbb, 0xf0, 0xb8, 0x34, 0x2f, 0xeb, 0x66, 0xef, 0x38, 0xe4, 0x09, 0x7c, 0x54, 0x3a, 0xcf, - 0xd2, 0x37, 0x98, 0xfc, 0x84, 0xe9, 0xe4, 0x5a, 0x77, 0x36, 0xc8, 0x53, 0xd8, 0x2d, 0xdd, 0xa7, - 0xf3, 0x82, 0xe5, 0xe9, 0xa8, 0x0a, 0x34, 0x09, 0x81, 0x9d, 0x32, 0x50, 0xcb, 0xef, 0xb4, 0x06, - 0x83, 0xb7, 0x77, 0x5d, 0xe7, 0xdd, 0x5d, 0xd7, 0xf9, 0xfb, 0xae, 0xeb, 0xfc, 0x72, 0xdf, 0x6d, - 0xbc, 0xbb, 0xef, 0x36, 0xfe, 0xb8, 0xef, 0x36, 0x7e, 0x5e, 0x6d, 0x15, 0x23, 0xfd, 0x65, 0x81, - 0x7a, 0xc6, 0xe5, 0x8d, 0x35, 0xc2, 0x37, 0xcb, 0x7f, 0x9b, 0xe1, 0xa6, 0x9d, 0xf3, 0x5f, 0xfc, - 0x13, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x16, 0xfd, 0xcb, 0x86, 0x06, 0x00, 0x00, + // 787 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xcd, 0x6e, 0xdb, 0x46, + 0x10, 0xc7, 0x45, 0x4b, 0xb1, 0xa5, 0x91, 0xe2, 0x08, 0x6b, 0x05, 0x59, 0xa7, 0xa8, 0x2c, 0xb8, + 0x40, 0x2a, 0x04, 0x08, 0x59, 0xbb, 0xe8, 0xbd, 0x52, 0x4c, 0xb9, 0x02, 0x94, 0x5a, 0x65, 0x95, + 0x7e, 0x5d, 0x88, 0x95, 0x34, 0x52, 0x08, 0x93, 0xdc, 0xcd, 0x2e, 0x65, 0xd7, 0xe8, 0x4b, 0xf4, + 0x31, 0x8a, 0x9e, 0xfa, 0x18, 0x39, 0xe6, 0x58, 0xf4, 0x90, 0x16, 0xf6, 0x8b, 0x14, 0xbb, 0x5c, + 0x5a, 0x6e, 0x0f, 0x45, 0xa0, 0x9e, 0xc4, 0x99, 0xd9, 0xf9, 0xcd, 0x7f, 0x3f, 0x66, 0x04, 0x2d, + 0x8c, 0xaf, 0x94, 0xc7, 0x92, 0xc4, 0xcb, 0xae, 0x04, 0x2a, 0x57, 0x48, 0x9e, 0x71, 0x52, 0xd5, + 0x5e, 0x97, 0x25, 0xc9, 0xe3, 0xd6, 0x92, 0x2f, 0xb9, 0x71, 0x7a, 0xfa, 0x2b, 0x8f, 0x3f, 0x7e, + 0x3a, 0xe3, 0x2a, 0xe1, 0xca, 0x9b, 0x32, 0x85, 0xde, 0xeb, 0x15, 0xca, 0x2b, 0xef, 0xe2, 0x68, + 0x8a, 0x19, 0x3b, 0xf2, 0x04, 0x5b, 0x46, 0x29, 0xcb, 0x22, 0x9e, 0xda, 0xb5, 0xfb, 0xb7, 0x15, + 0x04, 0xe7, 0x71, 0xc8, 0x94, 0xc2, 0xcc, 0x86, 0xda, 0x77, 0x31, 0x05, 0x60, 0xc6, 0x23, 0x9b, + 0x7a, 0xf8, 0x9b, 0x03, 0xad, 0xaf, 0x34, 0xdd, 0x67, 0x32, 0x1d, 0x73, 0x1e, 0x07, 0xf8, 0x7a, + 0x85, 0x2a, 0x23, 0xfb, 0x50, 0x35, 0xb0, 0x68, 0xae, 0xa8, 0xd3, 0x29, 0x77, 0x2b, 0xc1, 0x8e, + 0xb6, 0x87, 0x73, 0x45, 0x3e, 0x83, 0xfa, 0x22, 0x8a, 0x33, 0x94, 0xa1, 0xde, 0x10, 0xdd, 0xea, + 0x38, 0xdd, 0xdd, 0xe3, 0x96, 0x5b, 0x6c, 0xc8, 0x1d, 0x98, 0xe0, 0xe4, 0x4a, 0x60, 0x00, 0x8b, + 0xdb, 0x6f, 0x32, 0x00, 0x58, 0x2b, 0xa7, 0xe5, 0x8e, 0xd3, 0xad, 0x1f, 0x3f, 0x71, 0x73, 0x7d, + 0xae, 0xd6, 0xe7, 0x9a, 0x6d, 0xba, 0x56, 0xa5, 0x3b, 0x66, 0x4b, 0xb4, 0x6a, 0x82, 0x3b, 0x99, + 0x87, 0xbf, 0x54, 0xa1, 0x5a, 0xa8, 0x25, 0x8f, 0x60, 0xc7, 0xca, 0xa4, 0x4e, 0xc7, 0xe9, 0x56, + 0x82, 0xed, 0x5c, 0x25, 0x39, 0x82, 0x6d, 0x73, 0x0e, 0x8a, 0x6e, 0x75, 0xca, 0xdd, 0xfa, 0xf1, + 0xde, 0x5a, 0x9f, 0x4e, 0xec, 0xe9, 0x58, 0xbf, 0xf2, 0xe6, 0xdd, 0x41, 0x29, 0xb0, 0x0b, 0xc9, + 0x87, 0x00, 0x86, 0x25, 0x75, 0x1d, 0x23, 0xb0, 0x16, 0xd4, 0xb4, 0x27, 0xd0, 0x0e, 0x72, 0x06, + 0x75, 0x89, 0x97, 0x4c, 0xce, 0x55, 0xc8, 0x84, 0xa4, 0x15, 0x1d, 0xef, 0xbb, 0x9a, 0xf0, 0xc7, + 0xbb, 0x83, 0x27, 0xcb, 0x28, 0x7b, 0xb5, 0x9a, 0xba, 0x33, 0x9e, 0x78, 0xf6, 0xc8, 0xf3, 0x9f, + 0x67, 0x6a, 0x7e, 0x6e, 0x2f, 0xfe, 0x04, 0x67, 0x01, 0x58, 0x44, 0x4f, 0x48, 0xf2, 0x02, 0x60, + 0xca, 0xa5, 0xe4, 0x97, 0x86, 0x77, 0x6f, 0x23, 0x5e, 0x2d, 0x27, 0x68, 0xdc, 0x19, 0xd4, 0x63, + 0xbc, 0x40, 0xc9, 0x96, 0x18, 0xc6, 0x82, 0x6e, 0x6f, 0xa6, 0xaf, 0x40, 0x8c, 0x04, 0x19, 0x41, + 0x4d, 0xa0, 0x14, 0x98, 0xad, 0x58, 0x4c, 0x77, 0x36, 0x93, 0x77, 0x0b, 0x20, 0x9f, 0x43, 0x39, + 0xbb, 0x88, 0x69, 0x75, 0x23, 0x8e, 0x4e, 0x25, 0x13, 0xd8, 0x8d, 0x45, 0x98, 0xf1, 0x73, 0x4c, + 0x43, 0x21, 0xa3, 0x19, 0xd2, 0xda, 0x46, 0xb0, 0x46, 0x2c, 0x26, 0x1a, 0x32, 0xd6, 0x8c, 0xbb, + 0xd7, 0xba, 0x52, 0x73, 0x0a, 0xff, 0xeb, 0x5a, 0x5f, 0xaa, 0x39, 0x49, 0xa1, 0x91, 0x5b, 0xa1, + 0xee, 0x33, 0x45, 0xeb, 0xe6, 0xfd, 0xed, 0xff, 0xe3, 0xa5, 0x17, 0x6f, 0xfc, 0x39, 0x8f, 0xd2, + 0xfe, 0x27, 0xba, 0xd8, 0xaf, 0x7f, 0x1e, 0x74, 0xdf, 0xa3, 0x98, 0x4e, 0x50, 0x81, 0x55, 0x6c, + 0x0c, 0x92, 0x40, 0x23, 0xe3, 0x19, 0x8b, 0x43, 0xf5, 0x8a, 0x49, 0x54, 0xb4, 0x61, 0x3a, 0xeb, + 0x3f, 0xea, 0x79, 0x76, 0x73, 0x1f, 0xbf, 0x67, 0xbd, 0xa0, 0x6e, 0xf8, 0x5f, 0x1b, 0x3c, 0x19, + 0x42, 0x55, 0x5d, 0x32, 0x11, 0x2e, 0x10, 0xe9, 0xfd, 0x8d, 0x0e, 0x6b, 0x47, 0xe7, 0x0f, 0x10, + 0xc9, 0x07, 0x50, 0x5b, 0x20, 0x86, 0x73, 0x4c, 0x79, 0x42, 0x77, 0x4d, 0xbf, 0x55, 0x17, 0x88, + 0x27, 0xda, 0xd6, 0xdd, 0xb8, 0x52, 0x18, 0x72, 0xc9, 0x66, 0x31, 0xd2, 0x07, 0x1d, 0xa7, 0x5b, + 0x0d, 0x6a, 0x2b, 0x85, 0x67, 0xc6, 0x41, 0x3e, 0x82, 0xfb, 0x91, 0x0a, 0x8b, 0xd7, 0x1a, 0x0b, + 0xda, 0x34, 0x2b, 0x1a, 0x91, 0x1a, 0xdd, 0xfa, 0x0e, 0x4f, 0xe1, 0xe1, 0xbf, 0x86, 0x9b, 0x12, + 0x3c, 0x55, 0x48, 0x5c, 0xb8, 0xa7, 0x1b, 0x3b, 0x1f, 0x6d, 0xf5, 0x63, 0xb2, 0x1e, 0x0e, 0xc5, + 0x52, 0x3b, 0x1b, 0xf2, 0x65, 0x4f, 0x7f, 0x02, 0x58, 0x4f, 0x35, 0xb2, 0x0b, 0x30, 0x18, 0x8e, + 0x26, 0x7e, 0x10, 0xf6, 0x46, 0xa3, 0x66, 0x89, 0xb4, 0xa0, 0x69, 0xed, 0xb1, 0x1f, 0x8c, 0xfd, + 0xc9, 0xcb, 0xde, 0xa8, 0xe9, 0x90, 0x47, 0xb0, 0x67, 0xbd, 0x83, 0xe1, 0x77, 0xfe, 0x49, 0xf8, + 0xad, 0x3f, 0x3c, 0xfd, 0x62, 0xd2, 0xdc, 0x22, 0xfb, 0xf0, 0xd0, 0x06, 0x4e, 0xbe, 0xff, 0xb2, + 0xf7, 0x62, 0xf8, 0xbc, 0x08, 0x95, 0xc9, 0x1e, 0x3c, 0xb0, 0xa1, 0x91, 0xff, 0x8d, 0x1f, 0xf4, + 0x4e, 0xfd, 0x66, 0xa5, 0xdf, 0x7f, 0x73, 0xdd, 0x76, 0xde, 0x5e, 0xb7, 0x9d, 0xbf, 0xae, 0xdb, + 0xce, 0xcf, 0x37, 0xed, 0xd2, 0xdb, 0x9b, 0x76, 0xe9, 0xf7, 0x9b, 0x76, 0xe9, 0x87, 0xbb, 0x2f, + 0x46, 0xef, 0xe0, 0x59, 0x8a, 0xd9, 0x25, 0x97, 0xe7, 0xc6, 0xf0, 0x7e, 0x5c, 0xff, 0xe9, 0x4c, + 0xb7, 0xcd, 0xb8, 0xff, 0xf4, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0xa0, 0xd8, 0x34, 0x8d, + 0x06, 0x00, 0x00, } func (m *QueryEarnPoolRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/assetprofile/types/add_entry.pb.go b/x/assetprofile/types/add_entry.pb.go index 718c59cff..60ab07f14 100644 --- a/x/assetprofile/types/add_entry.pb.go +++ b/x/assetprofile/types/add_entry.pb.go @@ -24,24 +24,24 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type MsgAddEntry struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - BaseDenom string `protobuf:"bytes,2,opt,name=baseDenom,proto3" json:"baseDenom,omitempty"` + BaseDenom string `protobuf:"bytes,2,opt,name=base_denom,json=baseDenom,proto3" json:"base_denom,omitempty"` Decimals uint64 `protobuf:"varint,3,opt,name=decimals,proto3" json:"decimals,omitempty"` Denom string `protobuf:"bytes,4,opt,name=denom,proto3" json:"denom,omitempty"` Path string `protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty"` - IbcChannelId string `protobuf:"bytes,6,opt,name=ibcChannelId,proto3" json:"ibcChannelId,omitempty"` - IbcCounterpartyChannelId string `protobuf:"bytes,7,opt,name=ibcCounterpartyChannelId,proto3" json:"ibcCounterpartyChannelId,omitempty"` - DisplayName string `protobuf:"bytes,8,opt,name=displayName,proto3" json:"displayName,omitempty"` - DisplaySymbol string `protobuf:"bytes,9,opt,name=displaySymbol,proto3" json:"displaySymbol,omitempty"` + IbcChannelId string `protobuf:"bytes,6,opt,name=ibc_channel_id,json=ibcChannelId,proto3" json:"ibc_channel_id,omitempty"` + IbcCounterpartyChannelId string `protobuf:"bytes,7,opt,name=ibc_counterparty_channel_id,json=ibcCounterpartyChannelId,proto3" json:"ibc_counterparty_channel_id,omitempty"` + DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` + DisplaySymbol string `protobuf:"bytes,9,opt,name=display_symbol,json=displaySymbol,proto3" json:"display_symbol,omitempty"` Network string `protobuf:"bytes,10,opt,name=network,proto3" json:"network,omitempty"` Address string `protobuf:"bytes,11,opt,name=address,proto3" json:"address,omitempty"` - ExternalSymbol string `protobuf:"bytes,12,opt,name=externalSymbol,proto3" json:"externalSymbol,omitempty"` - TransferLimit string `protobuf:"bytes,13,opt,name=transferLimit,proto3" json:"transferLimit,omitempty"` + ExternalSymbol string `protobuf:"bytes,12,opt,name=external_symbol,json=externalSymbol,proto3" json:"external_symbol,omitempty"` + TransferLimit string `protobuf:"bytes,13,opt,name=transfer_limit,json=transferLimit,proto3" json:"transfer_limit,omitempty"` Permissions []string `protobuf:"bytes,14,rep,name=permissions,proto3" json:"permissions,omitempty"` - UnitDenom string `protobuf:"bytes,15,opt,name=unitDenom,proto3" json:"unitDenom,omitempty"` - IbcCounterpartyDenom string `protobuf:"bytes,16,opt,name=ibcCounterpartyDenom,proto3" json:"ibcCounterpartyDenom,omitempty"` - IbcCounterpartyChainId string `protobuf:"bytes,17,opt,name=ibcCounterpartyChainId,proto3" json:"ibcCounterpartyChainId,omitempty"` - CommitEnabled bool `protobuf:"varint,18,opt,name=commitEnabled,proto3" json:"commitEnabled,omitempty"` - WithdrawEnabled bool `protobuf:"varint,19,opt,name=withdrawEnabled,proto3" json:"withdrawEnabled,omitempty"` + UnitDenom string `protobuf:"bytes,15,opt,name=unit_denom,json=unitDenom,proto3" json:"unit_denom,omitempty"` + IbcCounterpartyDenom string `protobuf:"bytes,16,opt,name=ibc_counterparty_denom,json=ibcCounterpartyDenom,proto3" json:"ibc_counterparty_denom,omitempty"` + IbcCounterpartyChainId string `protobuf:"bytes,17,opt,name=ibc_counterparty_chain_id,json=ibcCounterpartyChainId,proto3" json:"ibc_counterparty_chain_id,omitempty"` + CommitEnabled bool `protobuf:"varint,18,opt,name=commit_enabled,json=commitEnabled,proto3" json:"commit_enabled,omitempty"` + WithdrawEnabled bool `protobuf:"varint,19,opt,name=withdraw_enabled,json=withdrawEnabled,proto3" json:"withdraw_enabled,omitempty"` } func (m *MsgAddEntry) Reset() { *m = MsgAddEntry{} } @@ -254,37 +254,39 @@ func init() { func init() { proto.RegisterFile("elys/assetprofile/add_entry.proto", fileDescriptor_0b10cab5aa009fef) } var fileDescriptor_0b10cab5aa009fef = []byte{ - // 467 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x93, 0xcd, 0x6e, 0x13, 0x31, - 0x10, 0xc7, 0xb3, 0x34, 0x69, 0x93, 0x49, 0x3f, 0xa8, 0x5b, 0x90, 0x85, 0xd0, 0x6a, 0x89, 0x10, - 0xca, 0x85, 0x44, 0x80, 0xc4, 0x81, 0x1b, 0x1f, 0x3d, 0x54, 0x7c, 0x1c, 0xc2, 0x8d, 0x0b, 0xf2, - 0xae, 0xa7, 0x8d, 0xc5, 0xda, 0x5e, 0xd9, 0x8e, 0xd2, 0x7d, 0x0b, 0x5e, 0x85, 0xb7, 0xe0, 0xd8, - 0x23, 0x47, 0x94, 0xbc, 0x08, 0xb2, 0x77, 0xdb, 0xee, 0x86, 0xf6, 0x96, 0xff, 0xff, 0xff, 0x9b, - 0xc8, 0x33, 0xb3, 0x03, 0x4f, 0x30, 0x2f, 0xed, 0x94, 0x59, 0x8b, 0xae, 0x30, 0xfa, 0x4c, 0xe4, - 0x38, 0x65, 0x9c, 0x7f, 0x47, 0xe5, 0x4c, 0x39, 0x29, 0x8c, 0x76, 0x9a, 0x1c, 0x7a, 0x64, 0xd2, - 0x44, 0x46, 0xbf, 0x7a, 0x30, 0xfc, 0x6c, 0xcf, 0xdf, 0x72, 0x7e, 0xe2, 0x41, 0x42, 0x61, 0x27, - 0x33, 0xc8, 0x9c, 0x36, 0x34, 0x4a, 0xa2, 0xf1, 0x60, 0x76, 0x25, 0xc9, 0x63, 0x18, 0xa4, 0xcc, - 0xe2, 0x07, 0x54, 0x5a, 0xd2, 0x7b, 0x21, 0xbb, 0x31, 0xc8, 0x23, 0xe8, 0x73, 0xcc, 0x84, 0x64, - 0xb9, 0xa5, 0x5b, 0x49, 0x34, 0xee, 0xce, 0xae, 0x35, 0x39, 0x86, 0x1e, 0x0f, 0x55, 0xdd, 0x50, - 0x55, 0x09, 0x42, 0xa0, 0x5b, 0x30, 0x37, 0xa7, 0xbd, 0x60, 0x86, 0xdf, 0x64, 0x04, 0xbb, 0x22, - 0xcd, 0xde, 0xcf, 0x99, 0x52, 0x98, 0x9f, 0x72, 0xba, 0x1d, 0xb2, 0x96, 0x47, 0xde, 0x00, 0xf5, - 0x5a, 0x2f, 0x94, 0x43, 0x53, 0x30, 0xe3, 0xca, 0x1b, 0x7e, 0x27, 0xf0, 0x77, 0xe6, 0x24, 0x81, - 0x21, 0x17, 0xb6, 0xc8, 0x59, 0xf9, 0x85, 0x49, 0xa4, 0xfd, 0x80, 0x37, 0x2d, 0xf2, 0x14, 0xf6, - 0x6a, 0xf9, 0xb5, 0x94, 0xa9, 0xce, 0xe9, 0x20, 0x30, 0x6d, 0xd3, 0x4f, 0x49, 0xa1, 0x5b, 0x6a, - 0xf3, 0x83, 0x42, 0x35, 0xa5, 0x5a, 0xfa, 0x84, 0x71, 0x6e, 0xd0, 0x5a, 0x3a, 0xac, 0x92, 0x5a, - 0x92, 0x67, 0xb0, 0x8f, 0x17, 0x0e, 0x8d, 0x62, 0x79, 0xfd, 0xd7, 0xbb, 0x01, 0xd8, 0x70, 0xfd, - 0x0b, 0x9c, 0x61, 0xca, 0x9e, 0xa1, 0xf9, 0x24, 0xa4, 0x70, 0x74, 0xaf, 0x7a, 0x41, 0xcb, 0xf4, - 0x9d, 0x14, 0x68, 0xa4, 0xb0, 0x56, 0x68, 0x65, 0xe9, 0x7e, 0xb2, 0xe5, 0x3b, 0x69, 0x58, 0x7e, - 0x5f, 0x0b, 0x25, 0x5c, 0xb5, 0xaf, 0x83, 0x6a, 0x5f, 0xd7, 0x06, 0x79, 0x09, 0xc7, 0x1b, 0x53, - 0xaa, 0xc0, 0xfb, 0x01, 0xbc, 0x35, 0x23, 0xaf, 0xe1, 0xe1, 0xff, 0x93, 0x15, 0xea, 0x94, 0xd3, - 0xc3, 0x50, 0x75, 0x47, 0xea, 0x3b, 0xca, 0xb4, 0x94, 0xc2, 0x9d, 0x28, 0x96, 0xe6, 0xc8, 0x29, - 0x49, 0xa2, 0x71, 0x7f, 0xd6, 0x36, 0xc9, 0x18, 0x0e, 0x96, 0xc2, 0xcd, 0xb9, 0x61, 0xcb, 0x2b, - 0xee, 0x28, 0x70, 0x9b, 0xf6, 0xe8, 0x01, 0x1c, 0x35, 0x3e, 0xd9, 0x19, 0xda, 0x42, 0x2b, 0x8b, - 0xef, 0x3e, 0xfe, 0x5e, 0xc5, 0xd1, 0xe5, 0x2a, 0x8e, 0xfe, 0xae, 0xe2, 0xe8, 0xe7, 0x3a, 0xee, - 0x5c, 0xae, 0xe3, 0xce, 0x9f, 0x75, 0xdc, 0xf9, 0xf6, 0xe2, 0x5c, 0xb8, 0xf9, 0x22, 0x9d, 0x64, - 0x5a, 0x4e, 0xfd, 0x09, 0x3c, 0xaf, 0xb7, 0x15, 0xc4, 0xf4, 0xa2, 0x7d, 0x34, 0xae, 0x2c, 0xd0, - 0xa6, 0xdb, 0xe1, 0x62, 0x5e, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x12, 0x36, 0x15, 0xc6, 0x56, - 0x03, 0x00, 0x00, + // 506 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x93, 0x4d, 0x6f, 0xd3, 0x30, + 0x18, 0xc7, 0x17, 0xd6, 0x6e, 0xad, 0xfb, 0xb6, 0x79, 0x63, 0x32, 0x20, 0xa2, 0x6e, 0x62, 0xa2, + 0x1c, 0x68, 0x85, 0xe0, 0xc2, 0x81, 0x03, 0x2f, 0x3b, 0x4c, 0xbc, 0x1c, 0xca, 0x8d, 0x4b, 0xe4, + 0xc4, 0xcf, 0x56, 0x8b, 0xd8, 0x8e, 0x6c, 0x57, 0x5d, 0xbe, 0x05, 0xdf, 0x89, 0x0b, 0xc7, 0x1d, + 0x39, 0xa2, 0xf6, 0x8b, 0x20, 0xdb, 0xc9, 0x08, 0x8c, 0x5b, 0x9f, 0x9f, 0x7f, 0xff, 0xa8, 0x79, + 0xfe, 0x31, 0x3a, 0x86, 0xbc, 0x34, 0x33, 0x6a, 0x0c, 0xd8, 0x42, 0xab, 0x0b, 0x9e, 0xc3, 0x8c, + 0x32, 0x96, 0x80, 0xb4, 0xba, 0x9c, 0x16, 0x5a, 0x59, 0x85, 0xf7, 0x9d, 0x32, 0x6d, 0x2a, 0x27, + 0xdf, 0xdb, 0xa8, 0xf7, 0xd1, 0x5c, 0xbe, 0x66, 0xec, 0xcc, 0x89, 0x98, 0xa0, 0xdd, 0x4c, 0x03, + 0xb5, 0x4a, 0x93, 0x68, 0x1c, 0x4d, 0xba, 0xf3, 0x7a, 0xc4, 0x0f, 0x11, 0x4a, 0xa9, 0x81, 0x84, + 0x81, 0x54, 0x82, 0xdc, 0xf1, 0x87, 0x5d, 0x47, 0xde, 0x39, 0x80, 0xef, 0xa3, 0x0e, 0x83, 0x8c, + 0x0b, 0x9a, 0x1b, 0xb2, 0x3d, 0x8e, 0x26, 0xad, 0xf9, 0xcd, 0x8c, 0x0f, 0x51, 0x3b, 0xa4, 0x5a, + 0x3e, 0x15, 0x06, 0x8c, 0x51, 0xab, 0xa0, 0x76, 0x41, 0xda, 0x1e, 0xfa, 0xdf, 0xf8, 0x11, 0x1a, + 0xf2, 0x34, 0x4b, 0xb2, 0x05, 0x95, 0x12, 0xf2, 0x84, 0x33, 0xb2, 0xe3, 0x4f, 0xfb, 0x3c, 0xcd, + 0xde, 0x06, 0x78, 0xce, 0xf0, 0x2b, 0xf4, 0xc0, 0x5b, 0x6a, 0x29, 0x2d, 0xe8, 0x82, 0x6a, 0x5b, + 0x36, 0x23, 0xbb, 0x3e, 0x42, 0x5c, 0xa4, 0x61, 0xfc, 0x89, 0x1f, 0xa3, 0x3e, 0xe3, 0xa6, 0xc8, + 0x69, 0x99, 0x48, 0x2a, 0x80, 0x74, 0xbc, 0xdf, 0xab, 0xd8, 0x27, 0x2a, 0x00, 0x9f, 0xa2, 0x61, + 0xad, 0x98, 0x52, 0xa4, 0x2a, 0x27, 0x5d, 0x2f, 0x0d, 0x2a, 0xfa, 0xd9, 0x43, 0xb7, 0x2d, 0x09, + 0x76, 0xa5, 0xf4, 0x57, 0x82, 0xc2, 0xb6, 0xaa, 0xd1, 0x9d, 0x50, 0xc6, 0x34, 0x18, 0x43, 0x7a, + 0xe1, 0xa4, 0x1a, 0xf1, 0x63, 0x34, 0x82, 0x2b, 0x0b, 0x5a, 0xd2, 0xbc, 0x7e, 0x76, 0xdf, 0x1b, + 0xc3, 0x1a, 0x57, 0x0f, 0x3f, 0x45, 0x43, 0xab, 0xa9, 0x34, 0x17, 0xa0, 0x93, 0x9c, 0x0b, 0x6e, + 0xc9, 0x20, 0xfc, 0x87, 0x9a, 0x7e, 0x70, 0x10, 0x8f, 0x51, 0xaf, 0x00, 0x2d, 0xb8, 0x31, 0x5c, + 0x49, 0x43, 0x86, 0xe3, 0x6d, 0xf7, 0x32, 0x0d, 0xe4, 0x9a, 0x5b, 0x4a, 0x6e, 0xab, 0xe6, 0x46, + 0xa1, 0x39, 0x47, 0x42, 0x73, 0x2f, 0xd0, 0xd1, 0xad, 0x6d, 0x06, 0x75, 0xcf, 0xab, 0x87, 0xff, + 0x2c, 0x32, 0xa4, 0x5e, 0xa2, 0x7b, 0xff, 0xeb, 0x80, 0x4b, 0xd7, 0xc0, 0xbe, 0x0f, 0x1e, 0xdd, + 0x6e, 0x80, 0xcb, 0x73, 0xe6, 0x5e, 0x2c, 0x53, 0x42, 0x70, 0x9b, 0x80, 0xa4, 0x69, 0x0e, 0x8c, + 0xe0, 0x71, 0x34, 0xe9, 0xcc, 0x07, 0x81, 0x9e, 0x05, 0x88, 0x9f, 0xa0, 0xbd, 0x15, 0xb7, 0x0b, + 0xa6, 0xe9, 0xea, 0x46, 0x3c, 0xf0, 0xe2, 0xa8, 0xe6, 0x95, 0x7a, 0x72, 0x17, 0x1d, 0x34, 0x3e, + 0xe2, 0x39, 0x98, 0x42, 0x49, 0x03, 0x6f, 0xde, 0xff, 0x58, 0xc7, 0xd1, 0xf5, 0x3a, 0x8e, 0x7e, + 0xad, 0xe3, 0xe8, 0xdb, 0x26, 0xde, 0xba, 0xde, 0xc4, 0x5b, 0x3f, 0x37, 0xf1, 0xd6, 0x97, 0x67, + 0x97, 0xdc, 0x2e, 0x96, 0xe9, 0x34, 0x53, 0x62, 0xe6, 0x2e, 0xc5, 0xd3, 0xaa, 0x37, 0x3f, 0xcc, + 0xae, 0xfe, 0xbe, 0x46, 0xb6, 0x2c, 0xc0, 0xa4, 0x3b, 0xfe, 0x0e, 0x3d, 0xff, 0x1d, 0x00, 0x00, + 0xff, 0xff, 0xfa, 0xc1, 0xe6, 0xb3, 0x68, 0x03, 0x00, 0x00, } func (m *MsgAddEntry) Marshal() (dAtA []byte, err error) { diff --git a/x/commitment/types/query.pb.go b/x/commitment/types/query.pb.go index 5a8d81ba4..0dee26cdc 100644 --- a/x/commitment/types/query.pb.go +++ b/x/commitment/types/query.pb.go @@ -480,9 +480,9 @@ func (m *QueryCommitmentVestingInfoResponse) GetVestingDetails() []VestingDetail type VestingDetails struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - TotalVesting github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=totalVesting,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"totalVesting"` + TotalVesting github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=total_vesting,json=totalVesting,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"total_vesting"` Claimed github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=claimed,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"claimed"` - VestedSoFar github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=vestedSoFar,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"vestedSoFar"` + VestedSoFar github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=vested_so_far,json=vestedSoFar,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"vested_so_far"` RemainingBlocks int64 `protobuf:"varint,5,opt,name=remaining_blocks,json=remainingBlocks,proto3" json:"remaining_blocks,omitempty"` } @@ -550,63 +550,64 @@ func init() { func init() { proto.RegisterFile("elys/commitment/query.proto", fileDescriptor_3594c973c98f55d7) } var fileDescriptor_3594c973c98f55d7 = []byte{ - // 891 bytes of a gzipped FileDescriptorProto + // 899 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xf6, 0x3a, 0x8d, 0xa3, 0x8e, 0x91, 0x5d, 0xa6, 0x05, 0x5c, 0x37, 0xb2, 0x93, 0xa5, 0xaa, + 0x18, 0xf6, 0x3a, 0x8d, 0xa3, 0x8e, 0xa9, 0x5d, 0xa6, 0x05, 0x5c, 0x37, 0xb2, 0x93, 0xa5, 0xaa, 0x42, 0x55, 0x7b, 0x1b, 0x47, 0x15, 0xa8, 0x80, 0x00, 0x17, 0x81, 0x2c, 0x45, 0x7c, 0x6c, 0x50, - 0x0e, 0x1c, 0x58, 0xc6, 0xde, 0xb1, 0x33, 0xb2, 0x77, 0xc6, 0xd9, 0x19, 0x3b, 0x44, 0x51, 0x0e, - 0xf0, 0x0b, 0x22, 0xf1, 0x27, 0x10, 0xe2, 0x90, 0x03, 0x12, 0x7f, 0x21, 0x1c, 0x90, 0x22, 0xb8, - 0x20, 0x0e, 0x01, 0x25, 0x20, 0xfe, 0x06, 0xda, 0x99, 0x59, 0x7b, 0x6d, 0xaf, 0x97, 0x44, 0xcd, - 0x25, 0xd9, 0x99, 0xf7, 0xe3, 0x79, 0xde, 0x8f, 0x3c, 0x13, 0x70, 0x0f, 0xf7, 0xf6, 0xb9, 0xd5, + 0x0e, 0x5c, 0x96, 0xb1, 0x77, 0xec, 0x8c, 0xec, 0x9d, 0x71, 0x76, 0xc6, 0x0e, 0x51, 0x94, 0x03, + 0xfc, 0x82, 0x48, 0xfc, 0x09, 0x84, 0x38, 0xe4, 0x80, 0xc4, 0x5f, 0x08, 0x07, 0xa4, 0x08, 0x2e, + 0x88, 0x43, 0x40, 0x09, 0x12, 0xfc, 0x0c, 0xb4, 0x33, 0xb3, 0xf6, 0xda, 0x5e, 0x2f, 0x89, 0xc8, + 0x25, 0xd9, 0x99, 0xf7, 0xe3, 0x79, 0xde, 0x8f, 0x3c, 0x13, 0x70, 0x1f, 0xf7, 0xf6, 0xb9, 0xd5, 0x62, 0x9e, 0x47, 0x84, 0x87, 0xa9, 0xb0, 0x76, 0x07, 0xd8, 0xdf, 0xaf, 0xf6, 0x7d, 0x26, 0x18, - 0xcc, 0x07, 0xc6, 0xea, 0xd8, 0x58, 0xbc, 0xd3, 0x61, 0x1d, 0x26, 0x6d, 0x56, 0xf0, 0xa5, 0xdc, + 0xcc, 0x07, 0xc6, 0xea, 0xd8, 0x58, 0xbc, 0xdb, 0x61, 0x1d, 0x26, 0x6d, 0x56, 0xf0, 0xa5, 0xdc, 0x8a, 0xcb, 0x1d, 0xc6, 0x3a, 0x3d, 0x6c, 0xa1, 0x3e, 0xb1, 0x10, 0xa5, 0x4c, 0x20, 0x41, 0x18, - 0xe5, 0xda, 0x7a, 0xb7, 0xc5, 0xb8, 0xc7, 0xb8, 0xa3, 0xc2, 0xd4, 0x41, 0x9b, 0x1e, 0xaa, 0x93, + 0xe5, 0xda, 0x7a, 0xaf, 0xc5, 0xb8, 0xc7, 0xb8, 0xa3, 0xc2, 0xd4, 0x41, 0x9b, 0x1e, 0xa9, 0x93, 0xd5, 0x44, 0x1c, 0x2b, 0x60, 0x6b, 0xb8, 0xde, 0xc4, 0x02, 0xad, 0x5b, 0x7d, 0xd4, 0x21, 0x54, 0xe6, 0x09, 0x41, 0xa6, 0x89, 0xf6, 0x91, 0x8f, 0xbc, 0x30, 0xd3, 0xea, 0xb4, 0x75, 0xfc, 0x19, 0xba, 0xbc, 0x88, 0x3c, 0x42, 0x99, 0x25, 0x7f, 0xea, 0xab, 0x52, 0x14, 0x3f, 0x44, 0x6e, 0x31, - 0xa2, 0x31, 0xcd, 0x3b, 0x00, 0x7e, 0x1a, 0xb0, 0xfa, 0x44, 0x42, 0xd9, 0x78, 0x77, 0x80, 0xb9, - 0x30, 0x37, 0xc1, 0xed, 0x89, 0x5b, 0xde, 0x67, 0x94, 0x63, 0xf8, 0x04, 0x64, 0x14, 0xa5, 0x82, + 0xa2, 0x31, 0xcd, 0xbb, 0x00, 0x7e, 0x1a, 0xb0, 0xfa, 0x44, 0x42, 0xd9, 0x78, 0x77, 0x80, 0xb9, + 0x30, 0x37, 0xc1, 0x9d, 0x89, 0x5b, 0xde, 0x67, 0x94, 0x63, 0xf8, 0x14, 0x64, 0x14, 0xa5, 0x82, 0xb1, 0x62, 0xac, 0x65, 0x6b, 0xaf, 0x54, 0xa7, 0xba, 0x57, 0x55, 0x01, 0xf5, 0x1b, 0x27, 0x67, - 0xe5, 0x94, 0xad, 0x9d, 0xcd, 0xd7, 0xc1, 0x3d, 0x99, 0x6d, 0x6b, 0x87, 0xed, 0x3d, 0x1b, 0x93, + 0xe5, 0x94, 0xad, 0x9d, 0xcd, 0xd7, 0xc1, 0x7d, 0x99, 0x6d, 0x6b, 0x87, 0xed, 0x3d, 0x1f, 0x93, 0xd6, 0x60, 0xb0, 0x00, 0x96, 0x5a, 0x3e, 0x46, 0x82, 0xf9, 0x32, 0xed, 0x4d, 0x3b, 0x3c, 0x9a, 0x04, 0x2c, 0xc7, 0x07, 0x6a, 0x3e, 0x0d, 0x90, 0x8d, 0x34, 0x41, 0x93, 0x5a, 0x9e, 0x21, 0x15, - 0x09, 0xad, 0xdf, 0x0c, 0x98, 0x7d, 0xf7, 0xef, 0xf1, 0x43, 0xc3, 0x8e, 0xc6, 0x9a, 0xab, 0xa0, - 0x2c, 0xa1, 0x3e, 0x1a, 0x78, 0x4d, 0xec, 0x7f, 0xdc, 0x9e, 0xe5, 0x69, 0x3e, 0x05, 0x2b, 0xf3, + 0x09, 0xad, 0xdf, 0x0c, 0x98, 0x7d, 0xfb, 0xf7, 0xf1, 0x23, 0xc3, 0x8e, 0xc6, 0x9a, 0xab, 0xa0, + 0x2c, 0xa1, 0x3e, 0x1a, 0x78, 0x4d, 0xec, 0x7f, 0xdc, 0x9e, 0xe5, 0x69, 0x3e, 0x03, 0x2b, 0xf3, 0x5d, 0x34, 0xa3, 0x97, 0x41, 0x86, 0x4a, 0xb3, 0x24, 0xb3, 0x60, 0xeb, 0x93, 0xf9, 0x36, 0x58, 0x95, 0xb1, 0x2a, 0x46, 0x60, 0xf7, 0x33, 0xd6, 0xc5, 0x94, 0x6f, 0xb2, 0x56, 0x17, 0xbb, 0x91, - 0x46, 0x20, 0xd7, 0xf5, 0x31, 0xe7, 0x61, 0x23, 0xf4, 0xd1, 0xfc, 0x21, 0x0d, 0xcc, 0xa4, 0x78, - 0x8d, 0x3e, 0x37, 0x01, 0x1c, 0x82, 0x5b, 0x3d, 0xe9, 0xeb, 0xb4, 0xc2, 0x0c, 0x85, 0xf4, 0xca, - 0xc2, 0x5a, 0xb6, 0x76, 0xb7, 0xaa, 0xf7, 0x35, 0xd8, 0x90, 0xaa, 0xde, 0x90, 0xea, 0x33, 0x46, - 0x68, 0xfd, 0x71, 0xd0, 0xab, 0xef, 0xff, 0x2c, 0xaf, 0x75, 0x88, 0xd8, 0x19, 0x34, 0x83, 0x96, + 0x46, 0x20, 0xd7, 0xf5, 0x31, 0xe7, 0x61, 0x23, 0xf4, 0xd1, 0xfc, 0x3e, 0x0d, 0xcc, 0xa4, 0x78, + 0x8d, 0x3e, 0x37, 0x01, 0x1c, 0x82, 0xdb, 0x3d, 0xe9, 0xeb, 0xb4, 0xc2, 0x0c, 0x85, 0xf4, 0xca, + 0xc2, 0x5a, 0xb6, 0x76, 0xaf, 0xaa, 0xf7, 0x35, 0xd8, 0x90, 0xaa, 0xde, 0x90, 0xea, 0x73, 0x46, + 0x68, 0xfd, 0x49, 0xd0, 0xab, 0xef, 0xfe, 0x28, 0xaf, 0x75, 0x88, 0xd8, 0x19, 0x34, 0x83, 0x96, 0xea, 0xe5, 0xd6, 0xbf, 0x2a, 0xdc, 0xed, 0x5a, 0x62, 0xbf, 0x8f, 0xb9, 0x0c, 0xe0, 0x76, 0x5e, 0x81, 0x8c, 0x58, 0x42, 0x01, 0xf2, 0x82, 0x09, 0xd4, 0x8b, 0xc0, 0x2e, 0x5c, 0x3f, 0x6c, 0x4e, 0x62, 0x8c, 0x50, 0xa7, 0xba, 0x1d, 0x4c, 0x68, 0x1b, 0x73, 0x41, 0x68, 0xa7, 0x41, 0xdb, 0xec, - 0xff, 0xbb, 0xfd, 0x8b, 0x31, 0xd1, 0xed, 0x99, 0x78, 0xdd, 0x6d, 0x1b, 0x2c, 0x4a, 0x5c, 0x15, - 0x5e, 0x7f, 0x2b, 0xa0, 0xfd, 0xc7, 0x59, 0xf9, 0xc1, 0x25, 0x68, 0x37, 0xa8, 0xf8, 0xf5, 0xc7, + 0xbf, 0xbb, 0xfd, 0xb3, 0x31, 0xd1, 0xed, 0x99, 0x78, 0xdd, 0x6d, 0x1b, 0x2c, 0x4a, 0x5c, 0x15, + 0x5e, 0x7f, 0x2b, 0xa0, 0xfd, 0xfb, 0x59, 0xf9, 0xe1, 0x25, 0x68, 0x37, 0xa8, 0xf8, 0xe5, 0x87, 0x0a, 0xd0, 0x2d, 0x68, 0x50, 0x61, 0xab, 0x54, 0x70, 0x0b, 0xe4, 0x87, 0x0a, 0xca, 0x71, 0xb1, 0x40, 0xa4, 0xc7, 0xf5, 0x98, 0xca, 0x33, 0x5b, 0xad, 0x29, 0xbd, 0xaf, 0xdc, 0xa2, 0x8b, 0x9d, 0x1b, 0x4e, 0x98, 0xcc, 0x7f, 0xd2, 0x20, 0x37, 0xe9, 0x0d, 0x73, 0x20, 0x4d, 0x5c, 0x5d, 0x77, - 0x9a, 0xb8, 0xf0, 0x4b, 0xf0, 0x82, 0x24, 0xa0, 0xdd, 0x0a, 0xe9, 0x6b, 0x28, 0x69, 0x22, 0x23, - 0xdc, 0x06, 0x4b, 0xad, 0x1e, 0x22, 0x9e, 0xdc, 0x80, 0xe7, 0x4f, 0x1e, 0x26, 0x83, 0x5f, 0x80, - 0x6c, 0x50, 0x2e, 0x76, 0xb7, 0xd8, 0x07, 0xc8, 0x2f, 0xdc, 0xb8, 0x86, 0xdc, 0xd1, 0x84, 0xf0, - 0x35, 0x70, 0xcb, 0xc7, 0x1e, 0x22, 0x34, 0x98, 0x49, 0x33, 0xd8, 0x6f, 0x5e, 0x58, 0x94, 0x7f, - 0xdb, 0xf9, 0xd1, 0x7d, 0x5d, 0x5e, 0xd7, 0x8e, 0x96, 0xc0, 0xa2, 0xdc, 0x1b, 0xf8, 0xb5, 0x01, - 0x32, 0x4a, 0x0a, 0xe1, 0xab, 0x33, 0x83, 0x9b, 0xd5, 0xdb, 0xe2, 0xfd, 0x64, 0x27, 0xb5, 0x70, - 0xe6, 0xa3, 0x6f, 0x7e, 0xfb, 0xfb, 0xdb, 0xf4, 0x03, 0x78, 0xdf, 0x0a, 0xbc, 0x2b, 0x14, 0x8b, - 0x3d, 0xe6, 0x77, 0xad, 0xf8, 0x57, 0x03, 0x1e, 0x1b, 0x20, 0x3f, 0x25, 0x9c, 0xf0, 0x51, 0x3c, - 0x4e, 0xbc, 0x30, 0x17, 0x2b, 0x97, 0xf4, 0xd6, 0xf4, 0xde, 0x95, 0xf4, 0x9e, 0xc2, 0x37, 0x92, - 0xe9, 0xf1, 0x1d, 0xb6, 0xe7, 0x44, 0xa4, 0xd7, 0x3a, 0xd0, 0x72, 0x7f, 0x08, 0x7f, 0x36, 0xc0, - 0x4b, 0xb1, 0x0a, 0x07, 0x6b, 0xf1, 0x54, 0x92, 0xe4, 0xb4, 0xb8, 0x71, 0xa5, 0x18, 0x5d, 0xc4, - 0x87, 0xb2, 0x88, 0xf7, 0xe0, 0x3b, 0xc9, 0x45, 0x8c, 0xe4, 0xcc, 0x11, 0x32, 0x8b, 0xa3, 0x84, - 0xcf, 0x3a, 0xd0, 0x1a, 0x72, 0x08, 0x7f, 0x32, 0xc0, 0xed, 0x98, 0x97, 0x02, 0x3e, 0x8e, 0x67, - 0x35, 0xff, 0xdd, 0x29, 0xae, 0x5f, 0x21, 0x42, 0x57, 0xf1, 0xa6, 0xac, 0xe2, 0x09, 0xdc, 0x48, - 0xae, 0x42, 0x3d, 0x4e, 0x0e, 0x6b, 0x47, 0xe7, 0x11, 0x99, 0xc2, 0x94, 0xf2, 0x25, 0x4f, 0x21, - 0x5e, 0x66, 0x93, 0xa7, 0x30, 0x47, 0x5a, 0xaf, 0x36, 0x85, 0xe0, 0xd3, 0x09, 0x55, 0x93, 0xd0, - 0x36, 0x1b, 0x4f, 0xa1, 0xde, 0x38, 0x39, 0x2f, 0x19, 0xa7, 0xe7, 0x25, 0xe3, 0xaf, 0xf3, 0x92, - 0x71, 0x74, 0x51, 0x4a, 0x9d, 0x5e, 0x94, 0x52, 0xbf, 0x5f, 0x94, 0x52, 0x9f, 0x5b, 0x11, 0x69, - 0x98, 0x05, 0xf9, 0x2a, 0x0a, 0x23, 0x75, 0xa2, 0x99, 0x91, 0xff, 0x30, 0x6d, 0xfc, 0x17, 0x00, - 0x00, 0xff, 0xff, 0x66, 0xe5, 0x6f, 0x9d, 0x4f, 0x0a, 0x00, 0x00, + 0x9a, 0xb8, 0x10, 0x81, 0x5b, 0x6a, 0x4e, 0x3a, 0xb4, 0x90, 0xbe, 0x86, 0x9a, 0x5e, 0x90, 0x29, + 0x35, 0x32, 0xdc, 0x06, 0x4b, 0xad, 0x1e, 0x22, 0x9e, 0x5c, 0x81, 0xff, 0x9f, 0x3c, 0x4c, 0x06, + 0xbf, 0x00, 0xb7, 0x02, 0xd2, 0xd8, 0x75, 0x38, 0x73, 0xda, 0xc8, 0x2f, 0xdc, 0xb8, 0x86, 0xec, + 0x59, 0x95, 0x72, 0x8b, 0x7d, 0x80, 0x7c, 0xf8, 0x1a, 0xb8, 0xed, 0x63, 0x0f, 0x11, 0x1a, 0x8c, + 0xa5, 0x19, 0xac, 0x38, 0x2f, 0x2c, 0xca, 0x3f, 0xef, 0xfc, 0xe8, 0xbe, 0x2e, 0xaf, 0x6b, 0x47, + 0x4b, 0x60, 0x51, 0xae, 0x0e, 0xfc, 0xca, 0x00, 0x19, 0xa5, 0x86, 0xf0, 0xd5, 0x99, 0xd9, 0xcd, + 0x4a, 0x6e, 0xf1, 0x41, 0xb2, 0x93, 0xda, 0x39, 0xf3, 0xf1, 0xd7, 0xbf, 0xfe, 0xf5, 0x4d, 0xfa, + 0x21, 0x7c, 0x60, 0x05, 0xde, 0x15, 0x8a, 0xc5, 0x1e, 0xf3, 0xbb, 0x56, 0xfc, 0xc3, 0x01, 0x8f, + 0x0d, 0x90, 0x9f, 0xd2, 0x4e, 0xf8, 0x38, 0x1e, 0x27, 0x5e, 0x9b, 0x8b, 0x95, 0x4b, 0x7a, 0x6b, + 0x7a, 0xef, 0x4a, 0x7a, 0xcf, 0xe0, 0x1b, 0xc9, 0xf4, 0xf8, 0x0e, 0xdb, 0x73, 0x22, 0xea, 0x6b, + 0x1d, 0x68, 0xc5, 0x3f, 0x84, 0x3f, 0x19, 0xe0, 0xa5, 0x58, 0x91, 0x83, 0xb5, 0x78, 0x2a, 0x49, + 0x8a, 0x5a, 0xdc, 0xb8, 0x52, 0x8c, 0x2e, 0xe2, 0x43, 0x59, 0xc4, 0x7b, 0xf0, 0x9d, 0xe4, 0x22, + 0x46, 0x8a, 0xe6, 0x08, 0x99, 0xc5, 0x51, 0xda, 0x67, 0x1d, 0x68, 0x19, 0x39, 0x84, 0x3f, 0x1a, + 0xe0, 0x4e, 0xcc, 0x63, 0x01, 0x9f, 0xc4, 0xb3, 0x9a, 0xff, 0xf4, 0x14, 0xd7, 0xaf, 0x10, 0xa1, + 0xab, 0x78, 0x53, 0x56, 0xf1, 0x14, 0x6e, 0x24, 0x57, 0xa1, 0xde, 0x27, 0x87, 0xb5, 0xa3, 0xf3, + 0x88, 0x4c, 0x61, 0x4a, 0xfc, 0x92, 0xa7, 0x10, 0xaf, 0xb4, 0xc9, 0x53, 0x98, 0xa3, 0xae, 0x57, + 0x9b, 0x42, 0xf0, 0x19, 0x4a, 0x97, 0x43, 0x68, 0x9b, 0x8d, 0xa7, 0x50, 0x6f, 0x9c, 0x9c, 0x97, + 0x8c, 0xd3, 0xf3, 0x92, 0xf1, 0xe7, 0x79, 0xc9, 0x38, 0xba, 0x28, 0xa5, 0x4e, 0x2f, 0x4a, 0xa9, + 0xdf, 0x2e, 0x4a, 0xa9, 0xcf, 0xad, 0x88, 0x34, 0xcc, 0x82, 0x7c, 0x19, 0x85, 0x91, 0x3a, 0xd1, + 0xcc, 0xc8, 0xff, 0x99, 0x36, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x76, 0xf3, 0xee, 0x00, 0x52, + 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/leveragelp/types/tx.pb.go b/x/leveragelp/types/tx.pb.go index b3e252ae5..f2c46e7fa 100644 --- a/x/leveragelp/types/tx.pb.go +++ b/x/leveragelp/types/tx.pb.go @@ -458,7 +458,7 @@ func (m *UpdatePool) GetClosed() bool { type MsgUpdatePool struct { Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` - UpdatePool *UpdatePool `protobuf:"bytes,2,opt,name=UpdatePool,proto3" json:"UpdatePool,omitempty"` + UpdatePool *UpdatePool `protobuf:"bytes,2,opt,name=update_pool,json=updatePool,proto3" json:"update_pool,omitempty"` } func (m *MsgUpdatePool) Reset() { *m = MsgUpdatePool{} } @@ -1172,70 +1172,70 @@ func init() { func init() { proto.RegisterFile("elys/leveragelp/tx.proto", fileDescriptor_307315ea7a77a411) } var fileDescriptor_307315ea7a77a411 = []byte{ - // 1004 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdb, 0x6e, 0xdc, 0x44, - 0x18, 0x8e, 0xb3, 0x9b, 0x3d, 0xfc, 0x9b, 0xe6, 0x30, 0x84, 0xc4, 0x71, 0xca, 0x66, 0x31, 0xa2, - 0x04, 0xa4, 0xee, 0x4a, 0xe1, 0xb2, 0x2a, 0x52, 0xd2, 0x70, 0x11, 0xca, 0x8a, 0xd4, 0x1c, 0x22, - 0x15, 0xc1, 0xd6, 0x59, 0x8f, 0x1c, 0xd3, 0xf1, 0x8e, 0xe3, 0x99, 0x6d, 0x92, 0x4b, 0x9e, 0x00, - 0x1e, 0x04, 0x21, 0xf1, 0x16, 0xbd, 0xec, 0x25, 0xe2, 0xa2, 0x42, 0xc9, 0x03, 0xf0, 0x0a, 0xc8, - 0xe3, 0xf1, 0xd8, 0xbb, 0xf6, 0x3a, 0x4d, 0x11, 0x57, 0xbb, 0x33, 0xff, 0xf7, 0x7f, 0xff, 0x61, - 0xfe, 0x83, 0x41, 0xc7, 0xe4, 0x92, 0xf5, 0x08, 0x7e, 0x81, 0x43, 0xdb, 0xc5, 0x24, 0xe8, 0xf1, - 0x8b, 0x6e, 0x10, 0x52, 0x4e, 0xd1, 0x72, 0x24, 0xe9, 0xa6, 0x12, 0x63, 0xcd, 0xa5, 0x2e, 0x15, - 0xb2, 0x5e, 0xf4, 0x2f, 0x86, 0x19, 0x77, 0xa7, 0x09, 0x02, 0x3b, 0xb4, 0x7d, 0x26, 0xa5, 0x5b, - 0x39, 0xfa, 0xcb, 0x00, 0x27, 0x42, 0x23, 0xa7, 0x4a, 0x29, 0x99, 0xa5, 0x78, 0x36, 0xc6, 0xe1, - 0x65, 0x2c, 0x34, 0xff, 0x99, 0x87, 0x7a, 0x9f, 0xb9, 0x5f, 0x05, 0x78, 0x84, 0x74, 0xa8, 0x0f, - 0x43, 0x6c, 0x73, 0x1a, 0xea, 0x5a, 0x47, 0xdb, 0x69, 0x5a, 0xc9, 0x11, 0x7d, 0x0c, 0x2b, 0x43, - 0x4a, 0x88, 0xcd, 0x71, 0x68, 0x93, 0x81, 0xcd, 0x18, 0xe6, 0xfa, 0xbc, 0x80, 0x2c, 0xa7, 0xf7, - 0x7b, 0xd1, 0x35, 0xfa, 0x1e, 0x56, 0xb3, 0x50, 0x9f, 0x8e, 0x47, 0x5c, 0xaf, 0x44, 0xd8, 0xfd, - 0xee, 0xcb, 0xd7, 0xdb, 0x73, 0x7f, 0xbd, 0xde, 0xbe, 0xe7, 0x7a, 0xfc, 0x74, 0x7c, 0xd2, 0x1d, - 0x52, 0xbf, 0x37, 0xa4, 0xcc, 0xa7, 0x4c, 0xfe, 0xdc, 0x67, 0xce, 0x73, 0x19, 0xd6, 0xe1, 0x88, - 0x5b, 0x19, 0x9b, 0x7b, 0x82, 0x07, 0xb5, 0xa1, 0x65, 0xfb, 0xfe, 0x20, 0x0a, 0x6e, 0xe0, 0x39, - 0x7a, 0xb5, 0xa3, 0xed, 0x54, 0xad, 0xa6, 0xed, 0xfb, 0x47, 0x94, 0x92, 0x43, 0x07, 0x7d, 0x01, - 0x8d, 0x24, 0x4e, 0x7d, 0xe1, 0xd6, 0x36, 0x0f, 0xf0, 0xd0, 0x52, 0xfa, 0xe8, 0x3b, 0x58, 0x66, - 0x9c, 0x06, 0x03, 0x42, 0x19, 0x1b, 0x04, 0xa1, 0x37, 0xc4, 0x7a, 0xed, 0xad, 0x28, 0xef, 0x44, - 0x34, 0x5f, 0x52, 0xc6, 0x8e, 0x22, 0x12, 0x73, 0x15, 0x96, 0x65, 0xc2, 0x2d, 0xcc, 0x02, 0x3a, - 0x62, 0xd8, 0xfc, 0x59, 0x83, 0x46, 0x9f, 0xb9, 0x8f, 0x08, 0x65, 0xb8, 0xe4, 0x15, 0x96, 0x60, - 0xde, 0x73, 0x44, 0xde, 0xab, 0xd6, 0xbc, 0xe7, 0xa0, 0xc7, 0xd0, 0x24, 0xc1, 0x7f, 0x4b, 0x71, - 0x83, 0x04, 0x71, 0x6a, 0x4d, 0x04, 0x2b, 0x89, 0x0b, 0xca, 0xaf, 0x07, 0xc2, 0xd5, 0x47, 0xc4, - 0xf6, 0x7c, 0x0b, 0x9f, 0xdb, 0xa1, 0xc3, 0xd0, 0x3a, 0xd4, 0x18, 0x1e, 0x39, 0x38, 0x71, 0x4e, - 0x9e, 0xd0, 0x0a, 0x54, 0x3c, 0x87, 0xe9, 0xf3, 0x9d, 0xca, 0x4e, 0xd5, 0x8a, 0xfe, 0x9a, 0x9b, - 0xb0, 0x31, 0xa5, 0xac, 0x78, 0x9f, 0x09, 0xde, 0x6f, 0x03, 0xc7, 0xe6, 0xf8, 0x48, 0xd4, 0x38, - 0xba, 0x0b, 0x4d, 0x7b, 0xcc, 0x4f, 0x69, 0xe8, 0xf1, 0x4b, 0x49, 0x9d, 0x5e, 0xa0, 0x1e, 0xd4, - 0xe2, 0x5e, 0x10, 0xd1, 0xb7, 0x76, 0x37, 0xba, 0x53, 0x1d, 0xd5, 0x8d, 0x69, 0x2c, 0x09, 0x93, - 0xc6, 0xb3, 0x16, 0x94, 0xf1, 0x63, 0x00, 0x79, 0x4f, 0x29, 0x41, 0x1b, 0x50, 0x4f, 0xaa, 0x49, - 0x13, 0x89, 0xad, 0x05, 0x71, 0x29, 0xe9, 0x50, 0xc7, 0x23, 0xfb, 0x84, 0xe0, 0x38, 0xe3, 0x0d, - 0x2b, 0x39, 0x46, 0x29, 0x18, 0x46, 0x69, 0x72, 0x44, 0xce, 0x1b, 0x96, 0x3c, 0x99, 0x3f, 0xc1, - 0x9d, 0xd4, 0x66, 0xc4, 0x5d, 0x1e, 0xd3, 0x83, 0xac, 0x1f, 0x32, 0xae, 0xad, 0x5c, 0x5c, 0x29, - 0xc4, 0xca, 0xc0, 0xcd, 0x0d, 0x78, 0x77, 0xc2, 0x96, 0x8a, 0xee, 0x07, 0x58, 0xec, 0x33, 0xf7, - 0xf8, 0xd4, 0xe3, 0x98, 0x78, 0x8c, 0xdf, 0x98, 0xd7, 0x77, 0xce, 0x13, 0x28, 0x76, 0x06, 0xb6, - 0xe3, 0x84, 0x98, 0x31, 0xd9, 0xda, 0x28, 0x23, 0xda, 0x8b, 0x25, 0xe6, 0x3a, 0xac, 0x65, 0xe9, - 0x95, 0xd9, 0x01, 0x2c, 0xf5, 0x99, 0x7b, 0x80, 0xcf, 0xff, 0x2f, 0xc3, 0x3a, 0xac, 0x4f, 0x1a, - 0x50, 0xa6, 0x7f, 0xd1, 0x60, 0x55, 0xe5, 0xe2, 0x6b, 0xd9, 0x6a, 0x25, 0x5d, 0x64, 0x40, 0x23, - 0xa0, 0xcc, 0xe3, 0x1e, 0x1d, 0xc9, 0x5e, 0x52, 0x67, 0x74, 0x00, 0x0b, 0x71, 0xa7, 0x57, 0xde, - 0xaa, 0xd3, 0x63, 0x65, 0x73, 0x0b, 0x36, 0x73, 0x0e, 0x29, 0x77, 0x7f, 0xd7, 0xa0, 0xbe, 0xe7, - 0x38, 0xa2, 0x40, 0xa6, 0xc6, 0x99, 0x36, 0x3d, 0xce, 0x6e, 0x5d, 0x83, 0xe8, 0x09, 0x2c, 0x26, - 0xc5, 0x33, 0xf0, 0xed, 0x0b, 0x31, 0x21, 0x6f, 0x1f, 0x47, 0x2b, 0xe1, 0xe8, 0xdb, 0x17, 0xe6, - 0x8f, 0x00, 0x7d, 0xe6, 0x26, 0x2e, 0x97, 0x3f, 0xeb, 0x2e, 0x54, 0x83, 0xb4, 0x9a, 0xf5, 0x5c, - 0x35, 0x4b, 0x96, 0xfd, 0x6a, 0xe4, 0x90, 0x25, 0xb0, 0xe6, 0x1a, 0xa0, 0x94, 0x5f, 0xa5, 0xe9, - 0xa1, 0x68, 0x26, 0x0b, 0xfb, 0xf4, 0xc5, 0x9b, 0x34, 0xd3, 0xd4, 0x68, 0x94, 0xfd, 0x91, 0xaa, - 0x2b, 0xde, 0xdf, 0xe2, 0x6a, 0x11, 0x73, 0xee, 0x48, 0x3e, 0x7b, 0x59, 0xb5, 0x7c, 0x06, 0x4d, - 0xe2, 0x9d, 0x8d, 0xbd, 0xe8, 0x2d, 0xc5, 0x74, 0x6b, 0xed, 0x76, 0xf2, 0xc3, 0x47, 0x12, 0x59, - 0xf8, 0x6c, 0x8c, 0x19, 0xb7, 0x52, 0x15, 0xf4, 0x10, 0x9a, 0x6a, 0x8b, 0xe8, 0x95, 0x37, 0xd4, - 0x6f, 0x24, 0x1b, 0x43, 0x96, 0xd2, 0xa4, 0xb7, 0x49, 0x2c, 0xbb, 0x7f, 0xd4, 0xa1, 0xd2, 0x67, - 0x2e, 0xda, 0x87, 0x6a, 0xbc, 0xbf, 0x73, 0xc4, 0x72, 0xd1, 0x18, 0x9d, 0x59, 0x92, 0x84, 0x0b, - 0x7d, 0x0e, 0x0b, 0xf1, 0xfa, 0xd9, 0x2c, 0x82, 0x0a, 0x91, 0xf1, 0xfe, 0x4c, 0x91, 0xa2, 0x79, - 0x0a, 0x8b, 0x13, 0xeb, 0xa2, 0x53, 0xac, 0x92, 0x22, 0x8c, 0x9d, 0x9b, 0x10, 0x59, 0xee, 0x89, - 0x95, 0x51, 0xc8, 0x9d, 0x45, 0x14, 0x73, 0x17, 0x2d, 0x05, 0xf4, 0x38, 0x6d, 0xca, 0xad, 0x22, - 0x25, 0x29, 0x34, 0x3e, 0x28, 0x11, 0x2a, 0xb2, 0x6f, 0x26, 0x36, 0x4c, 0xbb, 0xc4, 0x89, 0x88, - 0xf2, 0x5e, 0xb9, 0x3c, 0xcb, 0x9a, 0x69, 0x87, 0x42, 0xd6, 0x54, 0x5e, 0xcc, 0x9a, 0xef, 0x07, - 0xf4, 0x04, 0x9a, 0xe9, 0xb2, 0x78, 0xaf, 0x48, 0x49, 0x89, 0x8d, 0x0f, 0x4b, 0xc5, 0x8a, 0xf2, - 0x18, 0x5a, 0xd9, 0x45, 0xb0, 0x5d, 0xa4, 0x95, 0x01, 0x18, 0x1f, 0xdd, 0x00, 0x50, 0xc4, 0xcf, - 0x60, 0x69, 0x6a, 0xca, 0x9b, 0xb3, 0x73, 0x97, 0x60, 0x8c, 0x4f, 0x6e, 0xc6, 0x64, 0x2d, 0x4c, - 0x4d, 0x06, 0x73, 0x66, 0xcd, 0x2b, 0x4c, 0xb1, 0x85, 0xe2, 0x9e, 0xdd, 0x3f, 0x7c, 0x79, 0xd5, - 0xd6, 0x5e, 0x5d, 0xb5, 0xb5, 0xbf, 0xaf, 0xda, 0xda, 0xaf, 0xd7, 0xed, 0xb9, 0x57, 0xd7, 0xed, - 0xb9, 0x3f, 0xaf, 0xdb, 0x73, 0x4f, 0x7b, 0x99, 0xe1, 0x1c, 0xf1, 0xdd, 0x1f, 0x61, 0x7e, 0x4e, - 0xc3, 0xe7, 0xe2, 0xd0, 0xbb, 0xc8, 0x7d, 0xf9, 0x9f, 0xd4, 0xc4, 0x17, 0xfc, 0xa7, 0xff, 0x06, - 0x00, 0x00, 0xff, 0xff, 0x01, 0x5b, 0x78, 0x6e, 0x78, 0x0c, 0x00, 0x00, + // 1008 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdb, 0x6e, 0xe3, 0x44, + 0x18, 0xae, 0x93, 0x34, 0x87, 0x3f, 0xdd, 0x1e, 0x86, 0xd2, 0xba, 0xee, 0x92, 0x06, 0x23, 0x96, + 0x82, 0xb4, 0x89, 0x54, 0x2e, 0x61, 0x91, 0xda, 0x2d, 0x17, 0x65, 0x89, 0xe8, 0x9a, 0x43, 0xa5, + 0x45, 0x90, 0x75, 0xe3, 0x91, 0x6b, 0x75, 0x9c, 0x71, 0x3d, 0x93, 0x6d, 0x7b, 0xc9, 0x13, 0xc0, + 0x83, 0x20, 0x24, 0xde, 0x62, 0x2f, 0xf7, 0x12, 0x71, 0xb1, 0x42, 0xed, 0x03, 0xf0, 0x0a, 0xc8, + 0xe3, 0xf1, 0xd8, 0x49, 0x1c, 0x77, 0x5b, 0xb4, 0x57, 0xf1, 0xcc, 0xff, 0xfd, 0xdf, 0x7f, 0x98, + 0xff, 0x10, 0xd0, 0x31, 0xb9, 0x64, 0x5d, 0x82, 0x5f, 0xe0, 0xd0, 0x76, 0x31, 0x09, 0xba, 0xfc, + 0xa2, 0x13, 0x84, 0x94, 0x53, 0xb4, 0x14, 0x49, 0x3a, 0xa9, 0xc4, 0x58, 0x75, 0xa9, 0x4b, 0x85, + 0xac, 0x1b, 0x7d, 0xc5, 0x30, 0xe3, 0xfe, 0x24, 0x41, 0x60, 0x87, 0xb6, 0xcf, 0xa4, 0x74, 0x73, + 0x8a, 0xfe, 0x32, 0xc0, 0x89, 0xd0, 0x98, 0x52, 0xa5, 0x94, 0xcc, 0x52, 0x3c, 0x1b, 0xe1, 0xf0, + 0x32, 0x16, 0x9a, 0xff, 0x96, 0xa0, 0xd6, 0x63, 0xee, 0x37, 0x01, 0x1e, 0x22, 0x1d, 0x6a, 0x83, + 0x10, 0xdb, 0x9c, 0x86, 0xba, 0xd6, 0xd6, 0xb6, 0x1b, 0x56, 0x72, 0x44, 0x1f, 0xc3, 0xf2, 0x80, + 0x12, 0x62, 0x73, 0x1c, 0xda, 0xa4, 0x6f, 0x33, 0x86, 0xb9, 0x5e, 0x12, 0x90, 0xa5, 0xf4, 0x7e, + 0x37, 0xba, 0x46, 0x3f, 0xc2, 0x4a, 0x16, 0xea, 0xd3, 0xd1, 0x90, 0xeb, 0xe5, 0x08, 0xbb, 0xd7, + 0x79, 0xf9, 0x7a, 0x6b, 0xee, 0xef, 0xd7, 0x5b, 0x0f, 0x5c, 0x8f, 0x9f, 0x8c, 0x8e, 0x3b, 0x03, + 0xea, 0x77, 0x07, 0x94, 0xf9, 0x94, 0xc9, 0x9f, 0x87, 0xcc, 0x39, 0x95, 0x61, 0x1d, 0x0c, 0xb9, + 0x95, 0xb1, 0xb9, 0x2b, 0x78, 0x50, 0x0b, 0x9a, 0xb6, 0xef, 0xf7, 0xa3, 0xe0, 0xfa, 0x9e, 0xa3, + 0x57, 0xda, 0xda, 0x76, 0xc5, 0x6a, 0xd8, 0xbe, 0x7f, 0x48, 0x29, 0x39, 0x70, 0xd0, 0x57, 0x50, + 0x4f, 0xe2, 0xd4, 0xe7, 0x6f, 0x6d, 0x73, 0x1f, 0x0f, 0x2c, 0xa5, 0x8f, 0x7e, 0x80, 0x25, 0xc6, + 0x69, 0xd0, 0x27, 0x94, 0xb1, 0x7e, 0x10, 0x7a, 0x03, 0xac, 0x57, 0xef, 0x44, 0x79, 0x2f, 0xa2, + 0xf9, 0x9a, 0x32, 0x76, 0x18, 0x91, 0x98, 0x2b, 0xb0, 0x24, 0x13, 0x6e, 0x61, 0x16, 0xd0, 0x21, + 0xc3, 0xe6, 0x2f, 0x1a, 0xd4, 0x7b, 0xcc, 0x7d, 0x4c, 0x28, 0xc3, 0x05, 0xaf, 0xb0, 0x08, 0x25, + 0xcf, 0x11, 0x79, 0xaf, 0x58, 0x25, 0xcf, 0x41, 0x4f, 0xa0, 0x41, 0x82, 0xff, 0x97, 0xe2, 0x3a, + 0x09, 0xe2, 0xd4, 0x9a, 0x08, 0x96, 0x13, 0x17, 0x94, 0x5f, 0x9f, 0x09, 0x57, 0x1f, 0x13, 0xdb, + 0xf3, 0x2d, 0x7c, 0x6e, 0x87, 0x0e, 0x43, 0x6b, 0x50, 0x65, 0x78, 0xe8, 0xe0, 0xc4, 0x39, 0x79, + 0x42, 0xcb, 0x50, 0xf6, 0x1c, 0xa6, 0x97, 0xda, 0xe5, 0xed, 0x8a, 0x15, 0x7d, 0x9a, 0x1b, 0xb0, + 0x3e, 0xa1, 0xac, 0x78, 0x9f, 0x0b, 0xde, 0xef, 0x03, 0xc7, 0xe6, 0xf8, 0x50, 0xd4, 0x38, 0xba, + 0x0f, 0x0d, 0x7b, 0xc4, 0x4f, 0x68, 0xe8, 0xf1, 0x4b, 0x49, 0x9d, 0x5e, 0xa0, 0x2e, 0x54, 0xe3, + 0x5e, 0x10, 0xd1, 0x37, 0x77, 0xd6, 0x3b, 0x13, 0x1d, 0xd5, 0x89, 0x69, 0x2c, 0x09, 0x93, 0xc6, + 0xb3, 0x16, 0x94, 0xf1, 0x23, 0x00, 0x79, 0x4f, 0x29, 0x41, 0xeb, 0x50, 0x4b, 0xaa, 0x49, 0x13, + 0x89, 0xad, 0x06, 0x71, 0x29, 0xe9, 0x50, 0xc3, 0x43, 0xfb, 0x98, 0xe0, 0x38, 0xe3, 0x75, 0x2b, + 0x39, 0x46, 0x29, 0x18, 0x44, 0x69, 0x72, 0x44, 0xce, 0xeb, 0x96, 0x3c, 0x99, 0xa7, 0x70, 0x2f, + 0xb5, 0x19, 0x71, 0x17, 0xc7, 0xf4, 0x39, 0x34, 0x47, 0x02, 0x2b, 0xca, 0x59, 0x06, 0xb6, 0x39, + 0x15, 0x58, 0xca, 0x67, 0xc1, 0x48, 0x7d, 0x9b, 0xeb, 0xf0, 0xee, 0x98, 0x31, 0x15, 0xde, 0x4f, + 0xb0, 0xd0, 0x63, 0xee, 0xd1, 0x89, 0xc7, 0x31, 0xf1, 0x18, 0xbf, 0x31, 0xb1, 0xef, 0x9c, 0x27, + 0x50, 0xec, 0xf4, 0x6d, 0xc7, 0x09, 0x31, 0x63, 0xb2, 0xb7, 0x51, 0x46, 0xb4, 0x1b, 0x4b, 0xcc, + 0x35, 0x58, 0xcd, 0xd2, 0x2b, 0xb3, 0x7d, 0x58, 0xec, 0x31, 0x77, 0x1f, 0x9f, 0xbf, 0x2d, 0xc3, + 0x3a, 0xac, 0x8d, 0x1b, 0x50, 0xa6, 0x7f, 0xd5, 0x60, 0x45, 0xe5, 0xe2, 0x5b, 0xd9, 0x6b, 0x05, + 0x6d, 0x64, 0x40, 0x3d, 0xa0, 0xcc, 0xe3, 0x1e, 0x1d, 0xca, 0x66, 0x52, 0x67, 0xb4, 0x0f, 0xf3, + 0x71, 0xab, 0x97, 0xef, 0xd4, 0xea, 0xb1, 0xb2, 0xb9, 0x09, 0x1b, 0x53, 0x0e, 0x29, 0x77, 0xff, + 0xd0, 0xa0, 0xb6, 0xeb, 0x38, 0xa2, 0x42, 0x26, 0xe6, 0x99, 0x36, 0x39, 0xcf, 0x6e, 0x5d, 0x84, + 0xe8, 0x29, 0x2c, 0x24, 0xc5, 0xd3, 0xf7, 0xed, 0x0b, 0x31, 0x22, 0x6f, 0x1f, 0x47, 0x33, 0xe1, + 0xe8, 0xd9, 0x17, 0xe6, 0xcf, 0x00, 0x3d, 0xe6, 0x26, 0x2e, 0x17, 0x3f, 0xeb, 0x0e, 0x54, 0x32, + 0xd5, 0xac, 0x4f, 0x55, 0xb3, 0x64, 0xd9, 0xab, 0x44, 0x0e, 0x59, 0x02, 0x6b, 0xae, 0x02, 0x4a, + 0xf9, 0x55, 0x9a, 0x1e, 0x89, 0x6e, 0xb2, 0xb0, 0x4f, 0x5f, 0xbc, 0x49, 0x37, 0x4d, 0xcc, 0x46, + 0xd9, 0x1f, 0xa9, 0xba, 0xe2, 0xfd, 0x3d, 0xae, 0x16, 0x31, 0xe8, 0x0e, 0xe5, 0xb3, 0x17, 0x55, + 0xcb, 0x17, 0xd0, 0x20, 0xde, 0xd9, 0xc8, 0x8b, 0xde, 0x52, 0x8c, 0xb7, 0xe6, 0x4e, 0x7b, 0x7a, + 0xfa, 0x48, 0x22, 0x0b, 0x9f, 0x8d, 0x30, 0xe3, 0x56, 0xaa, 0x82, 0x1e, 0x41, 0x43, 0xad, 0x11, + 0xbd, 0xfc, 0x86, 0xfa, 0xf5, 0x64, 0x65, 0xc8, 0x52, 0x1a, 0xf7, 0x36, 0x89, 0x65, 0xe7, 0xcf, + 0x1a, 0x94, 0x7b, 0xcc, 0x45, 0x7b, 0x50, 0x89, 0x17, 0xf8, 0x14, 0xb1, 0xdc, 0x34, 0x46, 0x7b, + 0x96, 0x24, 0xe1, 0x42, 0x5f, 0xc2, 0x7c, 0xbc, 0x7f, 0x36, 0xf2, 0xa0, 0x42, 0x64, 0xbc, 0x3f, + 0x53, 0xa4, 0x68, 0x9e, 0xc1, 0xc2, 0xd8, 0xbe, 0x68, 0xe7, 0xab, 0xa4, 0x08, 0x63, 0xfb, 0x26, + 0x44, 0x96, 0x7b, 0x6c, 0x67, 0xe4, 0x72, 0x67, 0x11, 0xf9, 0xdc, 0x79, 0x5b, 0x01, 0x3d, 0x49, + 0x9b, 0x72, 0x33, 0x4f, 0x49, 0x0a, 0x8d, 0x0f, 0x0a, 0x84, 0x8a, 0xec, 0xbb, 0xb1, 0x15, 0xd3, + 0x2a, 0x70, 0x22, 0xa2, 0x7c, 0x50, 0x2c, 0xcf, 0xb2, 0x66, 0xda, 0x21, 0x97, 0x35, 0x95, 0xe7, + 0xb3, 0x4e, 0xf7, 0x03, 0x7a, 0x0a, 0x8d, 0x74, 0x59, 0xbc, 0x97, 0xa7, 0xa4, 0xc4, 0xc6, 0x87, + 0x85, 0x62, 0x45, 0x79, 0x04, 0xcd, 0xec, 0x22, 0xd8, 0xca, 0xd3, 0xca, 0x00, 0x8c, 0x8f, 0x6e, + 0x00, 0x28, 0xe2, 0xe7, 0xb0, 0x38, 0x31, 0xe5, 0xcd, 0xd9, 0xb9, 0x4b, 0x30, 0xc6, 0x27, 0x37, + 0x63, 0xb2, 0x16, 0x26, 0x26, 0x83, 0x39, 0xb3, 0xe6, 0x15, 0x26, 0xdf, 0x42, 0x7e, 0xcf, 0xee, + 0x1d, 0xbc, 0xbc, 0x6a, 0x69, 0xaf, 0xae, 0x5a, 0xda, 0x3f, 0x57, 0x2d, 0xed, 0xb7, 0xeb, 0xd6, + 0xdc, 0xab, 0xeb, 0xd6, 0xdc, 0x5f, 0xd7, 0xad, 0xb9, 0x67, 0xdd, 0xcc, 0x70, 0x8e, 0xf8, 0x1e, + 0x0e, 0x31, 0x3f, 0xa7, 0xe1, 0xa9, 0x38, 0x74, 0x2f, 0xa6, 0xfe, 0xfa, 0x1f, 0x57, 0xc5, 0x5f, + 0xf8, 0x4f, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x5d, 0x27, 0x98, 0x79, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/oracle/types/tx.pb.go b/x/oracle/types/tx.pb.go index 1a890de4b..ad8c136a0 100644 --- a/x/oracle/types/tx.pb.go +++ b/x/oracle/types/tx.pb.go @@ -741,8 +741,8 @@ type MsgCreateAssetInfo struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"` Display string `protobuf:"bytes,3,opt,name=display,proto3" json:"display,omitempty"` - BandTicker string `protobuf:"bytes,4,opt,name=bandTicker,proto3" json:"bandTicker,omitempty"` - ElysTicker string `protobuf:"bytes,5,opt,name=elysTicker,proto3" json:"elysTicker,omitempty"` + BandTicker string `protobuf:"bytes,4,opt,name=band_ticker,json=bandTicker,proto3" json:"band_ticker,omitempty"` + ElysTicker string `protobuf:"bytes,5,opt,name=elys_ticker,json=elysTicker,proto3" json:"elys_ticker,omitempty"` Decimal uint64 `protobuf:"varint,6,opt,name=decimal,proto3" json:"decimal,omitempty"` } @@ -881,57 +881,58 @@ func init() { func init() { proto.RegisterFile("elys/oracle/tx.proto", fileDescriptor_f1fcab3fbd407da0) } var fileDescriptor_f1fcab3fbd407da0 = []byte{ - // 797 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdd, 0x4e, 0xdb, 0x48, - 0x14, 0x8e, 0xf9, 0x09, 0xe4, 0x80, 0x16, 0x31, 0x9b, 0x05, 0x63, 0xb2, 0x0e, 0x6b, 0xad, 0x58, - 0x96, 0x15, 0xf6, 0x42, 0x9f, 0x00, 0x4a, 0x51, 0x91, 0x1a, 0x15, 0xb9, 0xad, 0x54, 0xb5, 0x17, - 0x91, 0x63, 0x0f, 0xc6, 0x22, 0xc9, 0x58, 0x9e, 0x49, 0x4a, 0xde, 0xa2, 0x4f, 0xd0, 0xe7, 0xe8, - 0x03, 0xf4, 0x82, 0x4b, 0x2e, 0xab, 0x5e, 0xa0, 0x0a, 0x5e, 0xa4, 0x9a, 0x19, 0xdb, 0x38, 0xb6, - 0x43, 0x7a, 0xd1, 0x2b, 0x38, 0xe7, 0x3b, 0xe7, 0xfb, 0xe6, 0x9c, 0x33, 0x67, 0x62, 0xa8, 0xe3, - 0xee, 0x88, 0x5a, 0x24, 0x72, 0xdc, 0x2e, 0xb6, 0xd8, 0x95, 0x19, 0x46, 0x84, 0x11, 0xb4, 0xc4, - 0xbd, 0xa6, 0xf4, 0x6a, 0x75, 0x9f, 0xf8, 0x44, 0xf8, 0x2d, 0xfe, 0x9f, 0x0c, 0xd1, 0x74, 0x97, - 0xd0, 0x1e, 0xa1, 0x56, 0xc7, 0xa1, 0xd8, 0x1a, 0xee, 0x77, 0x30, 0x73, 0xf6, 0x2d, 0x97, 0x04, - 0xfd, 0x18, 0x6f, 0x64, 0x89, 0x3b, 0x4e, 0xdf, 0x6b, 0x87, 0x51, 0xe0, 0xe2, 0x32, 0xd4, 0xa1, - 0x14, 0xb3, 0x76, 0xd0, 0x3f, 0x4f, 0xb8, 0xd7, 0xb3, 0x68, 0x36, 0x4d, 0x2f, 0x00, 0xed, 0x73, - 0x8c, 0x3d, 0x1c, 0xc5, 0xb8, 0x3a, 0x86, 0x3b, 0x91, 0xd3, 0xa3, 0x12, 0x31, 0x3e, 0x29, 0xb0, - 0xdc, 0xa2, 0xfe, 0x09, 0xc6, 0xde, 0x19, 0xcf, 0x43, 0x75, 0x98, 0x17, 0xba, 0xaa, 0xb2, 0xa5, - 0xec, 0xd4, 0x6c, 0x69, 0xa0, 0x63, 0x98, 0x17, 0xb4, 0xea, 0x0c, 0xf7, 0x1e, 0x99, 0xd7, 0xb7, - 0xcd, 0xca, 0xb7, 0xdb, 0xe6, 0xb6, 0x1f, 0xb0, 0x8b, 0x41, 0xc7, 0x74, 0x49, 0xcf, 0x8a, 0xeb, - 0x96, 0x7f, 0xf6, 0xa8, 0x77, 0x69, 0xb1, 0x51, 0x88, 0xa9, 0x79, 0x8c, 0x5d, 0x5b, 0x26, 0xa3, - 0x35, 0xa8, 0x52, 0x32, 0x88, 0x5c, 0xac, 0xce, 0x0a, 0xf2, 0xd8, 0x42, 0x1a, 0x2c, 0x86, 0x11, - 0x19, 0x06, 0x1e, 0x8e, 0xd4, 0x39, 0x81, 0xa4, 0xb6, 0xb1, 0x06, 0xf5, 0xec, 0xf9, 0x6c, 0x4c, - 0x43, 0xd2, 0xa7, 0xd8, 0x78, 0x0e, 0xab, 0x2d, 0xea, 0xbf, 0xc2, 0x4c, 0xb8, 0x4f, 0x44, 0xb5, - 0x5c, 0x40, 0xd6, 0x1d, 0x9f, 0x3e, 0xb6, 0xd0, 0x26, 0xd4, 0x02, 0xda, 0x76, 0x5c, 0x16, 0x0c, - 0x65, 0x09, 0x8b, 0xf6, 0x62, 0x40, 0x0f, 0x85, 0x6d, 0x6c, 0xc2, 0x46, 0x81, 0x29, 0x95, 0x31, - 0x85, 0xfc, 0x31, 0xee, 0x62, 0x86, 0x7f, 0x42, 0xc9, 0xd0, 0xa1, 0x51, 0x16, 0x9f, 0xf2, 0xb9, - 0xf0, 0x47, 0x5c, 0x4e, 0x6b, 0xd0, 0x65, 0x41, 0xd8, 0x95, 0x51, 0x14, 0xa9, 0xb0, 0xe0, 0x46, - 0xd8, 0x61, 0x24, 0x61, 0x4c, 0x4c, 0xf4, 0x3f, 0x54, 0x45, 0xfb, 0xa8, 0x3a, 0xb3, 0x35, 0xbb, - 0xb3, 0x74, 0x80, 0xcc, 0xcc, 0x2d, 0x34, 0x45, 0xfa, 0xd1, 0x1c, 0x1f, 0x88, 0x1d, 0xc7, 0x19, - 0x4d, 0xf8, 0xb3, 0x54, 0x24, 0xd3, 0x3c, 0xd4, 0xa2, 0xbe, 0x8d, 0x7b, 0x64, 0x88, 0x0f, 0xf9, - 0x80, 0x4f, 0xfb, 0xe7, 0x04, 0x35, 0xa0, 0xe6, 0x0c, 0xd8, 0x05, 0x89, 0x02, 0x36, 0x8a, 0x0f, - 0xf1, 0xe0, 0xe0, 0x17, 0xc3, 0xc3, 0x7d, 0xd2, 0x93, 0x57, 0xc0, 0x96, 0x86, 0xd1, 0x00, 0xad, - 0xc8, 0x94, 0xea, 0xbc, 0x10, 0x3a, 0x87, 0x9e, 0x97, 0x69, 0x05, 0x9d, 0xa2, 0xa3, 0xc2, 0x82, - 0xec, 0xa5, 0xac, 0xb7, 0x66, 0x27, 0x66, 0xac, 0x95, 0x63, 0x4b, 0xb5, 0x5e, 0x8a, 0xce, 0xca, - 0x93, 0xfc, 0x12, 0x39, 0xd9, 0xc5, 0x22, 0x61, 0xaa, 0xd8, 0x81, 0x95, 0x16, 0xf5, 0xdf, 0x84, - 0x9e, 0xc3, 0xf0, 0x99, 0x58, 0xaa, 0x29, 0x5a, 0xfb, 0x50, 0x95, 0xcb, 0x27, 0x7a, 0xb8, 0x74, - 0xf0, 0xfb, 0xf8, 0x24, 0x05, 0x94, 0x8e, 0x52, 0x58, 0xc6, 0x06, 0xac, 0xe7, 0x34, 0x52, 0xf9, - 0xcf, 0x8a, 0xe8, 0xee, 0x53, 0x7e, 0x4d, 0x32, 0x53, 0x9c, 0x7c, 0x91, 0x4a, 0x27, 0xc8, 0xe3, - 0xbd, 0x80, 0x86, 0x5d, 0x67, 0x14, 0x6f, 0x65, 0x62, 0x22, 0x1d, 0x80, 0x3f, 0x50, 0xaf, 0x03, - 0xf7, 0x32, 0x5d, 0xcc, 0x8c, 0x87, 0xe3, 0xfc, 0xfc, 0x31, 0x3e, 0x2f, 0xf1, 0x07, 0x8f, 0x60, - 0xc6, 0x6e, 0xd0, 0x73, 0xba, 0x6a, 0x75, 0x4b, 0xd9, 0x99, 0xb3, 0x13, 0x33, 0x9e, 0x64, 0xee, - 0xe4, 0x49, 0x61, 0x07, 0x5f, 0xaa, 0x30, 0xdb, 0xa2, 0x3e, 0x3a, 0x85, 0xda, 0xc3, 0xbb, 0xb4, - 0x31, 0xd6, 0xab, 0xec, 0x93, 0xa0, 0xfd, 0x35, 0x11, 0x4a, 0x28, 0x91, 0x07, 0xa8, 0x64, 0xe7, - 0x8c, 0xb2, 0xc4, 0xf1, 0x18, 0x6d, 0x77, 0x7a, 0x4c, 0xaa, 0xf2, 0x16, 0x7e, 0xcb, 0x3d, 0x48, - 0x7a, 0x3e, 0x7b, 0x1c, 0xd7, 0xb6, 0x1f, 0xc7, 0x53, 0x66, 0x07, 0x56, 0x8b, 0x6f, 0x50, 0xa1, - 0xee, 0x42, 0x88, 0xf6, 0xef, 0xd4, 0x90, 0x54, 0xe2, 0x3d, 0xac, 0xe4, 0x1f, 0x84, 0x66, 0x3e, - 0x3b, 0x17, 0xa0, 0xfd, 0x33, 0x25, 0x20, 0x4b, 0x9e, 0x7f, 0x05, 0x0a, 0xe4, 0xb9, 0x80, 0x22, - 0xf9, 0x84, 0xcd, 0xe7, 0xc3, 0x2d, 0x59, 0x7b, 0xa3, 0xfc, 0x6c, 0x63, 0x12, 0xbb, 0xd3, 0x63, - 0x52, 0x15, 0x1b, 0x96, 0xc7, 0x57, 0x3d, 0x9f, 0x9b, 0x45, 0xb5, 0xbf, 0x1f, 0x43, 0xb3, 0x6d, - 0xc9, 0xaf, 0x6f, 0xa1, 0x2d, 0xb9, 0x80, 0x62, 0x5b, 0x26, 0xac, 0xd1, 0xd1, 0xb3, 0xeb, 0x3b, - 0x5d, 0xb9, 0xb9, 0xd3, 0x95, 0xef, 0x77, 0xba, 0xf2, 0xf1, 0x5e, 0xaf, 0xdc, 0xdc, 0xeb, 0x95, - 0xaf, 0xf7, 0x7a, 0xe5, 0xdd, 0x7f, 0x99, 0x9f, 0x6d, 0x4e, 0xb6, 0xd7, 0xc7, 0xec, 0x03, 0x89, - 0x2e, 0x85, 0x61, 0x5d, 0xa5, 0x9f, 0x3d, 0xfc, 0xf7, 0xbb, 0x53, 0x15, 0x1f, 0x0a, 0x4f, 0x7e, - 0x04, 0x00, 0x00, 0xff, 0xff, 0x30, 0xca, 0x3a, 0x14, 0x12, 0x09, 0x00, 0x00, + // 802 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x5f, 0x4f, 0xdb, 0x48, + 0x10, 0x8f, 0xf9, 0x13, 0xc8, 0x04, 0x1d, 0x62, 0x2f, 0x07, 0xc6, 0xe4, 0x1c, 0xce, 0x3a, 0x71, + 0x1c, 0x27, 0xec, 0x83, 0xfb, 0x04, 0x70, 0x1c, 0x3a, 0xa4, 0x46, 0x45, 0x6e, 0x2b, 0x55, 0xed, + 0x43, 0xe4, 0xd8, 0x8b, 0xb1, 0x48, 0xb2, 0x96, 0x77, 0x93, 0x92, 0x6f, 0xd1, 0x4f, 0xd0, 0x0f, + 0xd2, 0xe7, 0x3e, 0xf0, 0xc8, 0x63, 0xd5, 0x07, 0x54, 0xc1, 0x17, 0xa9, 0x76, 0xd7, 0x36, 0x8e, + 0xed, 0x90, 0x3e, 0xf4, 0x09, 0x66, 0xe6, 0x37, 0xbf, 0xdf, 0xce, 0xcc, 0xce, 0xc6, 0xd0, 0xc0, + 0xbd, 0x31, 0xb5, 0x48, 0xe4, 0xb8, 0x3d, 0x6c, 0xb1, 0x6b, 0x33, 0x8c, 0x08, 0x23, 0xa8, 0xce, + 0xbd, 0xa6, 0xf4, 0x6a, 0x0d, 0x9f, 0xf8, 0x44, 0xf8, 0x2d, 0xfe, 0x9f, 0x84, 0x68, 0xba, 0x4b, + 0x68, 0x9f, 0x50, 0xab, 0xeb, 0x50, 0x6c, 0x8d, 0x0e, 0xba, 0x98, 0x39, 0x07, 0x96, 0x4b, 0x82, + 0x41, 0x1c, 0x6f, 0x66, 0x89, 0xbb, 0xce, 0xc0, 0xeb, 0x84, 0x51, 0xe0, 0xe2, 0xb2, 0xa8, 0x43, + 0x29, 0x66, 0x9d, 0x60, 0x70, 0x91, 0x70, 0x6f, 0x64, 0xa3, 0xd9, 0x34, 0xbd, 0x10, 0xe8, 0x5c, + 0x60, 0xec, 0xe1, 0x28, 0x8e, 0xab, 0x13, 0x71, 0x27, 0x72, 0xfa, 0x54, 0x46, 0x8c, 0x0f, 0x0a, + 0xac, 0xb4, 0xa9, 0x7f, 0x8a, 0xb1, 0x77, 0xce, 0xf3, 0x50, 0x03, 0x16, 0x85, 0xae, 0xaa, 0x6c, + 0x2b, 0xbb, 0x35, 0x5b, 0x1a, 0xe8, 0x04, 0x16, 0x05, 0xad, 0x3a, 0xc7, 0xbd, 0xc7, 0xe6, 0xcd, + 0x5d, 0xab, 0xf2, 0xe5, 0xae, 0xb5, 0xe3, 0x07, 0xec, 0x72, 0xd8, 0x35, 0x5d, 0xd2, 0xb7, 0xe2, + 0xba, 0xe5, 0x9f, 0x7d, 0xea, 0x5d, 0x59, 0x6c, 0x1c, 0x62, 0x6a, 0x9e, 0x60, 0xd7, 0x96, 0xc9, + 0x68, 0x1d, 0xaa, 0x94, 0x0c, 0x23, 0x17, 0xab, 0xf3, 0x82, 0x3c, 0xb6, 0x90, 0x06, 0xcb, 0x61, + 0x44, 0x46, 0x81, 0x87, 0x23, 0x75, 0x41, 0x44, 0x52, 0xdb, 0x58, 0x87, 0x46, 0xf6, 0x7c, 0x36, + 0xa6, 0x21, 0x19, 0x50, 0x6c, 0xfc, 0x0f, 0x6b, 0x6d, 0xea, 0xbf, 0xc0, 0x4c, 0xb8, 0x4f, 0x45, + 0xb5, 0x5c, 0x40, 0xd6, 0x1d, 0x9f, 0x3e, 0xb6, 0xd0, 0x16, 0xd4, 0x02, 0xda, 0x71, 0x5c, 0x16, + 0x8c, 0x64, 0x09, 0xcb, 0xf6, 0x72, 0x40, 0x8f, 0x84, 0x6d, 0x6c, 0xc1, 0x66, 0x81, 0x29, 0x95, + 0x31, 0x85, 0xfc, 0x09, 0xee, 0x61, 0x86, 0xbf, 0x43, 0xc9, 0xd0, 0xa1, 0x59, 0x86, 0x4f, 0xf9, + 0x5c, 0xf8, 0x25, 0x2e, 0xa7, 0x3d, 0xec, 0xb1, 0x20, 0xec, 0x49, 0x14, 0x45, 0x2a, 0x2c, 0xb9, + 0x11, 0x76, 0x18, 0x49, 0x18, 0x13, 0x13, 0xfd, 0x0d, 0x55, 0xd1, 0x3e, 0xaa, 0xce, 0x6d, 0xcf, + 0xef, 0xd6, 0x0f, 0x91, 0x99, 0xb9, 0x85, 0xa6, 0x48, 0x3f, 0x5e, 0xe0, 0x03, 0xb1, 0x63, 0x9c, + 0xd1, 0x82, 0x5f, 0x4b, 0x45, 0x32, 0xcd, 0x43, 0x6d, 0xea, 0xdb, 0xb8, 0x4f, 0x46, 0xf8, 0x88, + 0x0f, 0xf8, 0x6c, 0x70, 0x41, 0x50, 0x13, 0x6a, 0xce, 0x90, 0x5d, 0x92, 0x28, 0x60, 0xe3, 0xf8, + 0x10, 0x8f, 0x0e, 0x7e, 0x31, 0x3c, 0x3c, 0x20, 0x7d, 0x79, 0x05, 0x6c, 0x69, 0x18, 0x4d, 0xd0, + 0x8a, 0x4c, 0xa9, 0xce, 0x33, 0xa1, 0x73, 0xe4, 0x79, 0x99, 0x56, 0xd0, 0x19, 0x3a, 0x2a, 0x2c, + 0xc9, 0x5e, 0xca, 0x7a, 0x6b, 0x76, 0x62, 0xc6, 0x5a, 0x39, 0xb6, 0x54, 0xeb, 0xb9, 0xe8, 0xac, + 0x3c, 0xc9, 0x0f, 0x91, 0x93, 0x5d, 0x2c, 0x12, 0xa6, 0x8a, 0x5d, 0x58, 0x6d, 0x53, 0xff, 0x55, + 0xe8, 0x39, 0x0c, 0x9f, 0x8b, 0xa5, 0x9a, 0xa1, 0x75, 0x00, 0x55, 0xb9, 0x7c, 0xa2, 0x87, 0xf5, + 0xc3, 0x9f, 0x27, 0x27, 0x29, 0x42, 0xe9, 0x28, 0x85, 0x65, 0x6c, 0xc2, 0x46, 0x4e, 0x23, 0x95, + 0xff, 0xa8, 0x88, 0xee, 0xfe, 0xcb, 0xaf, 0x49, 0x66, 0x8a, 0xd3, 0x2f, 0x52, 0xe9, 0x04, 0x39, + 0xde, 0x0b, 0x68, 0xd8, 0x73, 0xc6, 0xf1, 0x56, 0x26, 0x26, 0x6a, 0x41, 0x5d, 0x3c, 0x50, 0x2c, + 0x70, 0xaf, 0xd2, 0xcd, 0x04, 0xee, 0x7a, 0x29, 0x3c, 0x1c, 0xc0, 0x0b, 0x48, 0x00, 0x8b, 0x12, + 0xc0, 0x5d, 0x31, 0x80, 0x73, 0x63, 0x37, 0xe8, 0x3b, 0x3d, 0xb5, 0xba, 0xad, 0xec, 0x2e, 0xd8, + 0x89, 0x19, 0xcf, 0x32, 0x77, 0xf6, 0xa4, 0xb4, 0xc3, 0x4f, 0x55, 0x98, 0x6f, 0x53, 0x1f, 0x9d, + 0x41, 0xed, 0xf1, 0x65, 0xda, 0x9c, 0xe8, 0x56, 0xf6, 0x51, 0xd0, 0x7e, 0x9b, 0x1a, 0x4a, 0x28, + 0x91, 0x07, 0xa8, 0x64, 0xeb, 0x8c, 0xb2, 0xc4, 0x49, 0x8c, 0xb6, 0x37, 0x1b, 0x93, 0xaa, 0xbc, + 0x86, 0x9f, 0x72, 0x4f, 0x92, 0x9e, 0xcf, 0x9e, 0x8c, 0x6b, 0x3b, 0x4f, 0xc7, 0x53, 0x66, 0x07, + 0xd6, 0x8a, 0xaf, 0x50, 0xa1, 0xee, 0x02, 0x44, 0xfb, 0x73, 0x26, 0x24, 0x95, 0x78, 0x0b, 0xab, + 0xf9, 0x27, 0xa1, 0x95, 0xcf, 0xce, 0x01, 0xb4, 0x3f, 0x66, 0x00, 0xb2, 0xe4, 0xf9, 0x77, 0xa0, + 0x40, 0x9e, 0x03, 0x14, 0xc9, 0xa7, 0xec, 0x3e, 0x1f, 0x6e, 0xc9, 0xe2, 0x1b, 0xe5, 0x67, 0x9b, + 0x90, 0xd8, 0x9b, 0x8d, 0x49, 0x55, 0x6c, 0x58, 0x99, 0x5c, 0xf6, 0x7c, 0x6e, 0x36, 0xaa, 0xfd, + 0xfe, 0x54, 0x34, 0xdb, 0x96, 0xfc, 0x02, 0x17, 0xda, 0x92, 0x03, 0x14, 0xdb, 0x32, 0x65, 0x8d, + 0x8e, 0xff, 0xbb, 0xb9, 0xd7, 0x95, 0xdb, 0x7b, 0x5d, 0xf9, 0x7a, 0xaf, 0x2b, 0xef, 0x1f, 0xf4, + 0xca, 0xed, 0x83, 0x5e, 0xf9, 0xfc, 0xa0, 0x57, 0xde, 0xfc, 0x95, 0xf9, 0xe1, 0xe6, 0x64, 0xfb, + 0x03, 0xcc, 0xde, 0x91, 0xe8, 0x4a, 0x18, 0xd6, 0x75, 0xfa, 0xe1, 0xc3, 0x7f, 0xc1, 0xbb, 0x55, + 0xf1, 0xa9, 0xf0, 0xcf, 0xb7, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xcd, 0xbc, 0xea, 0x14, 0x09, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/parameter/types/tx.pb.go b/x/parameter/types/tx.pb.go index 47d9423fb..baade953a 100644 --- a/x/parameter/types/tx.pb.go +++ b/x/parameter/types/tx.pb.go @@ -573,7 +573,7 @@ var xxx_messageInfo_MsgUpdateWasmConfigResponse proto.InternalMessageInfo type MsgUpdateRewardsDataLifetime struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - RewardsDataLifetime string `protobuf:"bytes,2,opt,name=rewardsDataLifetime,proto3" json:"rewardsDataLifetime,omitempty"` + RewardsDataLifetime string `protobuf:"bytes,2,opt,name=rewards_data_lifetime,json=rewardsDataLifetime,proto3" json:"rewards_data_lifetime,omitempty"` } func (m *MsgUpdateRewardsDataLifetime) Reset() { *m = MsgUpdateRewardsDataLifetime{} } @@ -679,48 +679,48 @@ func init() { func init() { proto.RegisterFile("elys/parameter/tx.proto", fileDescriptor_9d997b2afb1f3cab) } var fileDescriptor_9d997b2afb1f3cab = []byte{ - // 642 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x4d, 0x6f, 0xd3, 0x4c, - 0x10, 0xc7, 0x9b, 0xa7, 0x8f, 0x8a, 0x18, 0xd4, 0xaa, 0x38, 0x40, 0x82, 0x0b, 0xa6, 0xb8, 0x2f, - 0x54, 0x94, 0x3a, 0xd0, 0x72, 0xe4, 0x42, 0xdb, 0x03, 0x87, 0x46, 0xaa, 0x52, 0x5e, 0x54, 0x24, - 0x64, 0x6d, 0x92, 0x89, 0x31, 0xf5, 0x7a, 0xad, 0xdd, 0x85, 0x24, 0x15, 0x12, 0x5f, 0x81, 0x2f, - 0xc3, 0x9d, 0x23, 0xc7, 0x1e, 0x39, 0xa2, 0xf6, 0x8b, 0x20, 0x6f, 0x9d, 0x8d, 0x4d, 0x6c, 0x2b, - 0x3d, 0x3a, 0xf3, 0x9b, 0xff, 0x7f, 0x76, 0x26, 0xb3, 0x0b, 0x35, 0x0c, 0x86, 0xa2, 0x11, 0x11, - 0x4e, 0x28, 0x4a, 0xe4, 0x0d, 0x39, 0x70, 0x22, 0xce, 0x24, 0x33, 0x16, 0xe2, 0x80, 0xa3, 0x03, - 0xf6, 0x31, 0xdc, 0x69, 0x0a, 0xef, 0x4d, 0xd4, 0x25, 0x12, 0x9b, 0x7e, 0xb8, 0xc7, 0x28, 0xf5, - 0x85, 0xf0, 0x59, 0x68, 0xd4, 0xe1, 0x5a, 0x87, 0x23, 0x91, 0x8c, 0xd7, 0x2b, 0xcb, 0x95, 0x8d, - 0xeb, 0xad, 0xd1, 0xa7, 0xb1, 0x06, 0x0b, 0xd4, 0x0f, 0xdd, 0x8e, 0x66, 0xeb, 0xff, 0x29, 0x60, - 0x9e, 0xa6, 0x05, 0xec, 0x65, 0xb0, 0xf2, 0xa5, 0x5b, 0x28, 0x22, 0x16, 0x0a, 0xb4, 0x3f, 0x40, - 0x6d, 0x4c, 0x90, 0xc1, 0x5b, 0x26, 0xfd, 0xd0, 0x3b, 0x64, 0x7d, 0xe4, 0x25, 0xee, 0x1b, 0xb0, - 0x48, 0xc9, 0xc0, 0xfd, 0xa2, 0x60, 0x37, 0x8a, 0xe9, 0xc4, 0x7f, 0x81, 0x66, 0x34, 0xec, 0x87, - 0xf0, 0xa0, 0x40, 0x5e, 0x57, 0xd0, 0x03, 0x33, 0x5d, 0xe3, 0x11, 0x06, 0xbd, 0x7d, 0x0c, 0xd0, - 0x23, 0xb2, 0xbc, 0x05, 0x0e, 0x54, 0xe3, 0x16, 0x08, 0x0c, 0x7a, 0x6e, 0x57, 0x27, 0x24, 0x75, - 0xdc, 0xa4, 0xff, 0x2a, 0xd9, 0xab, 0x60, 0x17, 0xfb, 0xe8, 0x6a, 0xd2, 0xc3, 0xd8, 0xe5, 0xec, - 0x04, 0xf9, 0xcb, 0x6e, 0x97, 0xa3, 0x10, 0xe5, 0xc3, 0x68, 0x2b, 0xd4, 0x25, 0x97, 0xec, 0x68, - 0x18, 0xed, 0xb4, 0x40, 0x66, 0x18, 0x19, 0x69, 0x6d, 0xfe, 0x09, 0x96, 0x34, 0xf1, 0x9a, 0x49, - 0x12, 0xec, 0x06, 0xac, 0x73, 0x22, 0x0e, 0x91, 0x1f, 0x23, 0x29, 0x1b, 0xc8, 0x33, 0xb8, 0x2d, - 0x63, 0xde, 0x6d, 0xab, 0x04, 0x37, 0x42, 0xee, 0x0e, 0x91, 0x5c, 0x4e, 0x65, 0xb6, 0x65, 0xc8, - 0x09, 0x31, 0x7b, 0x0d, 0x56, 0x4a, 0xbc, 0x74, 0x49, 0x3f, 0x2b, 0x50, 0xd5, 0xdc, 0x3b, 0x22, - 0xe8, 0x1e, 0x0b, 0x7b, 0xbe, 0x57, 0x52, 0xcb, 0x16, 0x54, 0xfb, 0x44, 0x50, 0x37, 0xfe, 0x87, - 0x04, 0xa4, 0x8d, 0x81, 0x2b, 0xfc, 0x53, 0x4c, 0x5a, 0xb2, 0x18, 0x87, 0x9a, 0x64, 0x70, 0x10, - 0x07, 0x8e, 0xfc, 0x53, 0x34, 0x6c, 0x98, 0xd7, 0xb8, 0x02, 0x67, 0x15, 0x78, 0x23, 0x01, 0x15, - 0xf3, 0x02, 0x96, 0x34, 0x13, 0x71, 0x16, 0x31, 0x41, 0x02, 0x57, 0xfd, 0xa2, 0x32, 0xfe, 0x57, - 0x19, 0xb5, 0x24, 0xe3, 0x30, 0x01, 0xe2, 0x62, 0xe3, 0x6c, 0xfb, 0x7e, 0xaa, 0xab, 0xe3, 0x13, - 0xa4, 0x9a, 0x7e, 0x4f, 0x87, 0x5b, 0xd8, 0x27, 0xbc, 0x2b, 0xf6, 0x89, 0x24, 0x07, 0x7e, 0x0f, - 0xa5, 0x4f, 0xb1, 0xe4, 0xa4, 0x4f, 0xa1, 0xca, 0x27, 0x13, 0x92, 0x93, 0xe6, 0x85, 0xec, 0x75, - 0x58, 0x2d, 0xf3, 0x1a, 0xd5, 0xb4, 0xfd, 0x63, 0x0e, 0x66, 0x9b, 0xc2, 0x33, 0x28, 0x54, 0xf3, - 0xee, 0x85, 0x75, 0x27, 0x7b, 0x85, 0x38, 0xf9, 0x4b, 0x6e, 0x3a, 0xd3, 0x71, 0x23, 0x5b, 0x23, - 0x82, 0x5b, 0xb9, 0x37, 0xc1, 0xa3, 0x62, 0x9d, 0x0c, 0x68, 0x36, 0xa6, 0x04, 0xb5, 0xe3, 0x10, - 0x6a, 0x45, 0x9b, 0xff, 0xb8, 0xac, 0xf8, 0x2c, 0x6b, 0x6e, 0x4f, 0xcf, 0x6a, 0x6b, 0xdd, 0xdb, - 0xec, 0x9a, 0x17, 0xf7, 0x36, 0xc3, 0x95, 0xf4, 0x36, 0x77, 0xb7, 0x8d, 0xaf, 0x50, 0x2f, 0x5c, - 0xec, 0xcd, 0x42, 0xad, 0x49, 0xd8, 0xdc, 0xb9, 0x02, 0xac, 0xdd, 0xbb, 0xb0, 0x38, 0xb1, 0xc2, - 0x2b, 0x85, 0x42, 0x63, 0xc8, 0xdc, 0x9c, 0x02, 0xd2, 0x2e, 0xdf, 0xe0, 0x6e, 0xf1, 0x1e, 0x3d, - 0x29, 0x54, 0xca, 0xa1, 0xcd, 0xe7, 0x57, 0xa1, 0x47, 0x05, 0xec, 0xbe, 0xfa, 0x75, 0x6e, 0x55, - 0xce, 0xce, 0xad, 0xca, 0x9f, 0x73, 0xab, 0xf2, 0xfd, 0xc2, 0x9a, 0x39, 0xbb, 0xb0, 0x66, 0x7e, - 0x5f, 0x58, 0x33, 0xef, 0x1d, 0xcf, 0x97, 0x1f, 0x3f, 0xb7, 0x9d, 0x0e, 0xa3, 0x8d, 0x58, 0x79, - 0x2b, 0x44, 0xd9, 0x67, 0xfc, 0x44, 0x7d, 0x34, 0x06, 0xe9, 0x77, 0x7a, 0x18, 0xa1, 0x68, 0xcf, - 0xa9, 0xb7, 0x7a, 0xe7, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x92, 0x40, 0xb8, 0xc6, 0x07, - 0x00, 0x00, + // 651 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x4d, 0x6f, 0xd3, 0x4e, + 0x10, 0xc6, 0x9b, 0x7f, 0xff, 0x2a, 0x62, 0x50, 0xab, 0xe2, 0x50, 0x12, 0x5c, 0x30, 0xc5, 0x7d, + 0xa1, 0xa2, 0xd4, 0x11, 0x2d, 0x47, 0x2e, 0xb4, 0x3d, 0x70, 0x68, 0xa4, 0x2a, 0xe5, 0x45, 0x45, + 0x42, 0xab, 0x4d, 0x3c, 0x09, 0xa6, 0x5e, 0xaf, 0xb5, 0xbb, 0x90, 0xa4, 0x42, 0xe2, 0x2b, 0xf0, + 0x65, 0xb8, 0x73, 0xe4, 0xd8, 0x23, 0x47, 0xd4, 0x7e, 0x11, 0xe4, 0xad, 0xb3, 0x89, 0x49, 0x6c, + 0xa5, 0x47, 0x67, 0x7f, 0xf3, 0x3c, 0xcf, 0xce, 0x64, 0x6c, 0xa8, 0x60, 0xd8, 0x97, 0xb5, 0x98, + 0x0a, 0xca, 0x50, 0xa1, 0xa8, 0xa9, 0x9e, 0x17, 0x0b, 0xae, 0xb8, 0xb5, 0x90, 0x1c, 0x78, 0xe6, + 0xc0, 0x3d, 0x81, 0xbb, 0x75, 0xd9, 0x79, 0x13, 0xfb, 0x54, 0x61, 0x3d, 0x88, 0xf6, 0x39, 0x63, + 0x81, 0x94, 0x01, 0x8f, 0xac, 0x2a, 0xdc, 0x68, 0x09, 0xa4, 0x8a, 0x8b, 0x6a, 0x69, 0xa5, 0xb4, + 0x79, 0xb3, 0x31, 0x78, 0xb4, 0xd6, 0x61, 0x81, 0x05, 0x11, 0x69, 0x19, 0xb6, 0xfa, 0x9f, 0x06, + 0xe6, 0xd9, 0xa8, 0x80, 0xbb, 0x02, 0xce, 0x64, 0xe9, 0x06, 0xca, 0x98, 0x47, 0x12, 0xdd, 0x0f, + 0x50, 0x19, 0x12, 0xb4, 0xf7, 0x96, 0xab, 0x20, 0xea, 0x1c, 0xf1, 0x2e, 0x8a, 0x02, 0xf7, 0x4d, + 0x58, 0x64, 0xb4, 0x47, 0xbe, 0x68, 0x98, 0xc4, 0x09, 0x9d, 0xfa, 0x2f, 0xb0, 0x8c, 0x86, 0xfb, + 0x08, 0x1e, 0xe6, 0xc8, 0x9b, 0x04, 0x6d, 0xb0, 0x47, 0x33, 0x1e, 0x63, 0xd8, 0x3e, 0xc0, 0x10, + 0x3b, 0x54, 0x15, 0xb7, 0xc0, 0x83, 0x72, 0xd2, 0x02, 0x89, 0x61, 0x9b, 0xf8, 0xa6, 0x20, 0xcd, + 0x71, 0x9b, 0xfd, 0xab, 0xe4, 0xae, 0x81, 0x9b, 0xef, 0x63, 0xd2, 0x8c, 0x0e, 0x63, 0x4f, 0xf0, + 0x53, 0x14, 0x2f, 0x7d, 0x5f, 0xa0, 0x94, 0xc5, 0xc3, 0x68, 0x6a, 0x94, 0xd0, 0x2b, 0x76, 0x30, + 0x8c, 0xe6, 0xa8, 0x40, 0x66, 0x18, 0x19, 0x69, 0x63, 0xfe, 0x09, 0x96, 0x0d, 0xf1, 0x9a, 0x2b, + 0x1a, 0xee, 0x85, 0xbc, 0x75, 0x2a, 0x8f, 0x50, 0x9c, 0x20, 0x2d, 0x1a, 0xc8, 0x33, 0x58, 0x52, + 0x09, 0x4f, 0x9a, 0xba, 0x80, 0xc4, 0x28, 0x48, 0x1f, 0xe9, 0xd5, 0x54, 0x66, 0x1b, 0x96, 0x1a, + 0x13, 0x73, 0xd7, 0x61, 0xb5, 0xc0, 0xcb, 0x44, 0xfa, 0x59, 0x82, 0xb2, 0xe1, 0xde, 0x51, 0xc9, + 0xf6, 0x79, 0xd4, 0x0e, 0x3a, 0x05, 0x59, 0xb6, 0xa1, 0xdc, 0xa5, 0x92, 0x91, 0xe4, 0x1f, 0x12, + 0xd2, 0x26, 0x86, 0x44, 0x06, 0x67, 0x98, 0xb6, 0x64, 0x31, 0x39, 0xaa, 0xd3, 0xde, 0x61, 0x72, + 0x70, 0x1c, 0x9c, 0xa1, 0xe5, 0xc2, 0xbc, 0xc1, 0x35, 0x38, 0xab, 0xc1, 0x5b, 0x29, 0xa8, 0x99, + 0x17, 0xb0, 0x6c, 0x98, 0x58, 0xf0, 0x98, 0x4b, 0x1a, 0x12, 0xfd, 0x8b, 0xae, 0xf8, 0x5f, 0x57, + 0x54, 0xd2, 0x8a, 0xa3, 0x14, 0x48, 0xc2, 0x26, 0xd5, 0xee, 0x83, 0x91, 0xae, 0x0e, 0x6f, 0x60, + 0x6e, 0x18, 0xc2, 0x7d, 0x73, 0xdc, 0xc0, 0x2e, 0x15, 0xbe, 0x3c, 0xa0, 0x8a, 0x1e, 0x06, 0x6d, + 0x54, 0x01, 0xc3, 0x82, 0x9b, 0xee, 0xc0, 0x92, 0xb8, 0x2a, 0x20, 0x3e, 0x55, 0x94, 0x84, 0x69, + 0x49, 0x7a, 0xd7, 0xb2, 0x18, 0x57, 0x73, 0x37, 0x60, 0xad, 0xc8, 0x6d, 0x90, 0x6a, 0xe7, 0xc7, + 0x1c, 0xcc, 0xd6, 0x65, 0xc7, 0x62, 0x50, 0x9e, 0xf4, 0x66, 0xd8, 0xf0, 0xb2, 0x2f, 0x11, 0x6f, + 0xf2, 0x9a, 0xdb, 0xde, 0x74, 0xdc, 0xc0, 0xd6, 0x8a, 0xe1, 0xce, 0xc4, 0x77, 0xc1, 0xe3, 0x7c, + 0x9d, 0x0c, 0x68, 0xd7, 0xa6, 0x04, 0x8d, 0x63, 0x1f, 0x2a, 0x79, 0xbb, 0xff, 0xa4, 0x28, 0x7c, + 0x96, 0xb5, 0x77, 0xa6, 0x67, 0x8d, 0xb5, 0xe9, 0x6d, 0x76, 0xd1, 0xf3, 0x7b, 0x9b, 0xe1, 0x0a, + 0x7a, 0x3b, 0x71, 0xbb, 0xad, 0xaf, 0x50, 0xcd, 0x5d, 0xed, 0xad, 0x5c, 0xad, 0x71, 0xd8, 0xde, + 0xbd, 0x06, 0x6c, 0xdc, 0x7d, 0x58, 0x1c, 0x5b, 0xe2, 0xd5, 0x5c, 0xa1, 0x21, 0x64, 0x6f, 0x4d, + 0x01, 0x19, 0x97, 0x6f, 0x70, 0x2f, 0x7f, 0x93, 0x9e, 0xe6, 0x2a, 0x4d, 0xa0, 0xed, 0xe7, 0xd7, + 0xa1, 0x07, 0x01, 0xf6, 0x5e, 0xfd, 0xba, 0x70, 0x4a, 0xe7, 0x17, 0x4e, 0xe9, 0xcf, 0x85, 0x53, + 0xfa, 0x7e, 0xe9, 0xcc, 0x9c, 0x5f, 0x3a, 0x33, 0xbf, 0x2f, 0x9d, 0x99, 0xf7, 0x5e, 0x27, 0x50, + 0x1f, 0x3f, 0x37, 0xbd, 0x16, 0x67, 0xb5, 0x44, 0x79, 0x3b, 0x42, 0xd5, 0xe5, 0xe2, 0x54, 0x3f, + 0xd4, 0x7a, 0xa3, 0x5f, 0xea, 0x7e, 0x8c, 0xb2, 0x39, 0xa7, 0xbf, 0xd6, 0xbb, 0x7f, 0x03, 0x00, + 0x00, 0xff, 0xff, 0x67, 0x85, 0xba, 0x93, 0xc8, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tier/types/genesis.pb.go b/x/tier/types/genesis.pb.go index b1093fd74..47c0a2ae6 100644 --- a/x/tier/types/genesis.pb.go +++ b/x/tier/types/genesis.pb.go @@ -26,7 +26,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the tier module's genesis state. type GenesisState struct { Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` - PortfolioList []Portfolio `protobuf:"bytes,2,rep,name=portfolioList,proto3" json:"portfolioList"` + PortfolioList []Portfolio `protobuf:"bytes,2,rep,name=portfolio_list,json=portfolioList,proto3" json:"portfolio_list"` } func (m *GenesisState) Reset() { *m = GenesisState{} } @@ -83,22 +83,22 @@ func init() { func init() { proto.RegisterFile("elys/tier/genesis.proto", fileDescriptor_98fb0faf96c57e5f) } var fileDescriptor_98fb0faf96c57e5f = []byte{ - // 229 bytes of a gzipped FileDescriptorProto + // 235 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xcd, 0xa9, 0x2c, 0xd6, 0x2f, 0xc9, 0x4c, 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x04, 0x49, 0xe8, 0x81, 0x24, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xa2, 0xfa, 0x20, 0x16, 0x44, 0x81, 0x94, 0x18, 0x42, 0x67, 0x41, 0x62, 0x51, 0x62, 0x2e, 0x54, 0xa3, 0x94, 0x24, 0x92, 0x78, 0x7e, 0x51, 0x49, 0x5a, 0x7e, 0x4e, 0x26, 0x54, 0x8b, 0x52, - 0x23, 0x23, 0x17, 0x8f, 0x3b, 0xc4, 0x96, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x7d, 0x2e, 0x36, + 0x13, 0x23, 0x17, 0x8f, 0x3b, 0xc4, 0x96, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x7d, 0x2e, 0x36, 0x88, 0x5e, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x41, 0x3d, 0xb8, 0xad, 0x7a, 0x01, 0x60, - 0x09, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0xca, 0x84, 0x1c, 0xb8, 0x78, 0xe1, 0x86, - 0xfa, 0x64, 0x16, 0x97, 0x48, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x89, 0x20, 0xeb, 0x83, 0xc9, - 0x43, 0xb5, 0xa2, 0x6a, 0x70, 0x72, 0x3e, 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, 0xcd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x90, 0x71, 0xba, - 0x79, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0x60, 0x8e, 0x7e, 0x05, 0xc4, 0x4b, 0x25, 0x95, 0x05, - 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xff, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x04, 0x1a, 0x84, - 0x0f, 0x3e, 0x01, 0x00, 0x00, + 0x09, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0xca, 0x84, 0x1c, 0xb9, 0xf8, 0xe0, 0x86, + 0xc6, 0xe7, 0x64, 0x16, 0x97, 0x48, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x89, 0x20, 0x6b, 0x84, + 0x29, 0x80, 0xea, 0xe5, 0x85, 0xeb, 0xf0, 0xc9, 0x2c, 0x2e, 0x71, 0x72, 0x3e, 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, 0xcd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, + 0xfc, 0x5c, 0x7d, 0x90, 0x71, 0xba, 0x79, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0x60, 0x8e, 0x7e, + 0x05, 0xc4, 0x4f, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x0f, 0x19, 0x03, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x99, 0x37, 0x80, 0x7e, 0x3f, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/tier/types/query.pb.go b/x/tier/types/query.pb.go index b5c4943ef..687aff2bf 100644 --- a/x/tier/types/query.pb.go +++ b/x/tier/types/query.pb.go @@ -943,9 +943,9 @@ func (m *QueryGetConsolidatedPriceRequest) GetDenom() string { } type QueryGetConsolidatedPriceResponse struct { - AmmPrice github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=ammPrice,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"ammPrice"` - OraclePrice github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=oraclePrice,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"oraclePrice"` - OraclePriceDec github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=oraclePriceDec,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"oraclePriceDec"` + AmmPrice github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=amm_price,json=ammPrice,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"amm_price"` + OraclePrice github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=oracle_price,json=oraclePrice,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"oracle_price"` + OraclePriceDec github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=oracle_price_dec,json=oraclePriceDec,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"oracle_price_dec"` } func (m *QueryGetConsolidatedPriceResponse) Reset() { *m = QueryGetConsolidatedPriceResponse{} } @@ -1029,7 +1029,7 @@ type QueryStakedResponse struct { Commitments github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=commitments,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"commitments"` Delegations github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=delegations,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"delegations"` Unbondings github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=unbondings,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"unbondings"` - TotalVested github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,4,opt,name=totalVested,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"totalVested"` + TotalVested github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,4,opt,name=total_vested,json=totalVested,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"total_vested"` } func (m *QueryStakedResponse) Reset() { *m = QueryStakedResponse{} } @@ -1095,85 +1095,86 @@ func init() { func init() { proto.RegisterFile("elys/tier/query.proto", fileDescriptor_461504ebf74c9a97) } var fileDescriptor_461504ebf74c9a97 = []byte{ - // 1239 bytes of a gzipped FileDescriptorProto + // 1250 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x98, 0xcf, 0x6f, 0xdc, 0x44, - 0x14, 0xc7, 0xe3, 0xb4, 0x09, 0xcd, 0xdb, 0xb4, 0x55, 0x87, 0xb4, 0xa4, 0x26, 0xdd, 0x26, 0x0e, - 0x24, 0x69, 0x7e, 0xd8, 0xcd, 0xa6, 0x82, 0x00, 0x02, 0x94, 0x1f, 0x6a, 0x04, 0x8a, 0x60, 0xd9, - 0xa2, 0x1e, 0xb8, 0x2c, 0xb3, 0xf6, 0xb0, 0xb5, 0x62, 0x7b, 0x1c, 0x7b, 0x36, 0x21, 0xaa, 0x72, - 0xe9, 0x85, 0x03, 0x12, 0x20, 0x38, 0x20, 0x24, 0xc4, 0x7f, 0xc0, 0x81, 0x7f, 0x80, 0x13, 0x87, - 0x1e, 0x2b, 0x71, 0x41, 0x20, 0x55, 0x28, 0xe1, 0xc8, 0x1f, 0x81, 0x3c, 0x33, 0xde, 0xd8, 0x6b, - 0xaf, 0x37, 0x59, 0xe5, 0xc2, 0x29, 0xeb, 0xf1, 0x7b, 0xdf, 0xf7, 0x99, 0x37, 0xcf, 0xf6, 0x57, - 0x81, 0xeb, 0xc4, 0x39, 0x08, 0x0d, 0x66, 0x93, 0xc0, 0xd8, 0x6d, 0x91, 0xe0, 0x40, 0xf7, 0x03, - 0xca, 0x28, 0x1a, 0x89, 0x96, 0xf5, 0x68, 0x59, 0x1d, 0x6b, 0xd2, 0x26, 0xe5, 0xab, 0x46, 0xf4, - 0x4b, 0x04, 0xa8, 0x13, 0x4d, 0x4a, 0x9b, 0x0e, 0x31, 0xb0, 0x6f, 0x1b, 0xd8, 0xf3, 0x28, 0xc3, - 0xcc, 0xa6, 0x5e, 0x28, 0xef, 0xce, 0x9b, 0x34, 0x74, 0x69, 0x68, 0x34, 0x70, 0x48, 0x84, 0xae, - 0xb1, 0xb7, 0xdc, 0x20, 0x0c, 0x2f, 0x1b, 0x3e, 0x6e, 0xda, 0x1e, 0x0f, 0x96, 0xb1, 0x37, 0x4e, - 0x08, 0x7c, 0x1c, 0x60, 0x37, 0xd6, 0xb8, 0x99, 0x58, 0xa7, 0x01, 0xfb, 0x8c, 0x3a, 0xb6, 0x2c, - 0xae, 0x8d, 0x01, 0xfa, 0x28, 0x12, 0xad, 0xf2, 0xf8, 0x1a, 0xd9, 0x6d, 0x91, 0x90, 0x69, 0xf7, - 0xe1, 0xc5, 0xd4, 0x6a, 0xe8, 0x53, 0x2f, 0x24, 0xc8, 0x80, 0x61, 0xa1, 0x3b, 0xae, 0x4c, 0x2a, - 0x73, 0xa5, 0xca, 0x35, 0xbd, 0xbd, 0x37, 0x5d, 0x84, 0xae, 0x5f, 0x7c, 0xfa, 0xfc, 0xf6, 0x40, - 0x4d, 0x86, 0x69, 0x3a, 0x8c, 0x73, 0x9d, 0x2d, 0xc2, 0xaa, 0x71, 0x61, 0x59, 0x03, 0x21, 0xb8, - 0xd8, 0x0a, 0x49, 0xc0, 0xa5, 0x46, 0x6a, 0xfc, 0xb7, 0xb6, 0x09, 0x37, 0x73, 0xe2, 0x65, 0xf5, - 0x59, 0xb8, 0xca, 0x28, 0xc3, 0x4e, 0xbd, 0xbd, 0x07, 0x99, 0x7b, 0x85, 0x2f, 0xb7, 0x13, 0xb4, - 0x86, 0xac, 0xba, 0xe6, 0x38, 0x99, 0xaa, 0xf7, 0x01, 0x4e, 0xda, 0x26, 0xb7, 0x31, 0xa3, 0x8b, - 0x1e, 0xeb, 0x51, 0x8f, 0x75, 0x71, 0x76, 0xb2, 0xc7, 0x7a, 0x15, 0x37, 0x89, 0xcc, 0xad, 0x25, - 0x32, 0xb5, 0x9f, 0x14, 0x89, 0x9a, 0x2e, 0x22, 0x51, 0x57, 0x61, 0x24, 0x09, 0x79, 0x61, 0xae, - 0x54, 0x19, 0x4b, 0xf6, 0x2a, 0xbe, 0x27, 0xdb, 0x75, 0x12, 0x8c, 0xb6, 0x52, 0x7c, 0x83, 0x9c, - 0x6f, 0xb6, 0x27, 0x9f, 0x28, 0x9b, 0x02, 0x5c, 0x81, 0x5b, 0x9c, 0x6f, 0x03, 0x3b, 0x66, 0xcb, - 0xc1, 0x8c, 0x6c, 0xda, 0xa1, 0x49, 0x5b, 0x1e, 0x2b, 0xea, 0xbf, 0x07, 0xe5, 0x6e, 0x49, 0x72, - 0x67, 0x2a, 0x5c, 0xb2, 0xe4, 0x9a, 0xcc, 0x6c, 0x5f, 0x47, 0x8a, 0xd1, 0xf6, 0x38, 0xf5, 0x48, - 0x8d, 0xff, 0x46, 0x13, 0xc9, 0x4e, 0x5c, 0xe0, 0x37, 0x4e, 0x16, 0xb4, 0x65, 0x78, 0x99, 0xd7, - 0xdb, 0x26, 0x7b, 0x24, 0xc0, 0x4d, 0xb2, 0xed, 0x7f, 0x1c, 0x1d, 0x65, 0x11, 0xe2, 0x6f, 0x0a, - 0x4c, 0xe4, 0xe7, 0x48, 0xc2, 0x0f, 0xa1, 0x24, 0xc6, 0x64, 0x0f, 0x3b, 0x2d, 0x22, 0x72, 0xd7, - 0xf5, 0xa8, 0xcf, 0x7f, 0x3e, 0xbf, 0x3d, 0xd3, 0xb4, 0xd9, 0xa3, 0x56, 0x43, 0x37, 0xa9, 0x6b, - 0xc8, 0x07, 0x4b, 0xfc, 0x59, 0x0a, 0xad, 0x1d, 0x83, 0x1d, 0xf8, 0x24, 0xd4, 0x37, 0x89, 0x59, - 0x03, 0x2e, 0xf1, 0x30, 0x52, 0x40, 0x0f, 0xe0, 0xb2, 0x10, 0x6c, 0xd0, 0x20, 0xa0, 0xfb, 0xa1, - 0xd8, 0xdf, 0x99, 0x25, 0x47, 0xb9, 0xc8, 0xba, 0xd0, 0x68, 0x3f, 0x19, 0x35, 0xb2, 0x8f, 0x03, - 0x2b, 0xec, 0xb9, 0x6d, 0x2c, 0xc7, 0x2d, 0x1d, 0x2f, 0xb7, 0xbc, 0x09, 0x43, 0x5c, 0xbc, 0xcf, - 0xcd, 0x8a, 0x64, 0x6d, 0x11, 0x6e, 0xf0, 0x12, 0x0f, 0x18, 0xde, 0x21, 0x56, 0x95, 0xd2, 0x42, - 0xa0, 0x3a, 0xbc, 0x94, 0x89, 0x3e, 0x57, 0x9c, 0x05, 0xb8, 0x2e, 0xde, 0x41, 0x24, 0xf0, 0x09, - 0x6b, 0x15, 0xb7, 0xe7, 0x57, 0x45, 0xc2, 0x27, 0xa2, 0xff, 0x57, 0xf3, 0xb0, 0x24, 0xdb, 0xb9, - 0x6d, 0xef, 0xb6, 0x6c, 0xab, 0xe7, 0x38, 0x7c, 0x2a, 0xc7, 0x27, 0x15, 0x7e, 0xae, 0xed, 0x7f, - 0x4f, 0x02, 0x6d, 0x11, 0xb6, 0xe6, 0xba, 0xd5, 0xc0, 0x36, 0xe3, 0xf7, 0x20, 0x1a, 0x83, 0x21, - 0x8b, 0x78, 0xd4, 0x95, 0x44, 0xe2, 0x02, 0x8d, 0xc3, 0x0b, 0x16, 0x31, 0x6d, 0x17, 0x3b, 0xbc, - 0x21, 0x43, 0xb5, 0xf8, 0xb2, 0x0d, 0x9b, 0x92, 0x3a, 0x57, 0xd8, 0x55, 0x98, 0x8c, 0x2b, 0x6c, - 0x50, 0x2f, 0xa4, 0x8e, 0x6d, 0x61, 0x46, 0xac, 0xde, 0xd4, 0xda, 0x0f, 0x83, 0x30, 0x55, 0x90, - 0x2a, 0x29, 0xdf, 0x87, 0x4b, 0x58, 0x92, 0xf7, 0x09, 0xda, 0xce, 0x47, 0x55, 0x28, 0xd1, 0x00, - 0x9b, 0x0e, 0x11, 0x72, 0xfd, 0x0d, 0x4f, 0x52, 0x02, 0x3d, 0x84, 0x2b, 0x89, 0xcb, 0x4d, 0x62, - 0x8a, 0x17, 0xed, 0x99, 0x45, 0x3b, 0x54, 0xb4, 0x39, 0xe9, 0x0d, 0xc4, 0x23, 0x5e, 0x34, 0x8e, - 0x7f, 0x0d, 0x4a, 0xc3, 0x10, 0x87, 0xca, 0xbe, 0x55, 0xa1, 0x64, 0x52, 0xd7, 0xb5, 0x99, 0x4b, - 0x3c, 0x16, 0xf6, 0xd9, 0xba, 0xa4, 0x44, 0xa4, 0x68, 0x11, 0x87, 0x34, 0x85, 0x47, 0xea, 0xb7, - 0x7b, 0x09, 0x09, 0xf4, 0x01, 0x40, 0xcb, 0x6b, 0x50, 0xcf, 0xb2, 0xbd, 0x66, 0xd8, 0x67, 0xe7, - 0x12, 0x0a, 0x11, 0xa1, 0x78, 0x59, 0x90, 0x90, 0x11, 0x6b, 0xfc, 0x62, 0x7f, 0x84, 0x09, 0x89, - 0xca, 0xbf, 0x97, 0x61, 0x88, 0x77, 0x17, 0x1d, 0xc0, 0xb0, 0xf0, 0x59, 0xe8, 0x56, 0xc2, 0x4e, - 0x64, 0x0d, 0x9c, 0x5a, 0xee, 0x76, 0x5b, 0x1c, 0x8c, 0x76, 0xf7, 0xc9, 0xef, 0xff, 0x7c, 0x37, - 0x38, 0x8f, 0xe6, 0x8c, 0x28, 0x6e, 0xc9, 0x23, 0x6c, 0x9f, 0x06, 0x3b, 0xfc, 0xc2, 0x70, 0x89, - 0xdb, 0x20, 0x41, 0xf8, 0xc8, 0xf6, 0x13, 0x4e, 0x12, 0x7d, 0xab, 0xc0, 0x48, 0xdb, 0xb7, 0xa0, - 0xe9, 0x4e, 0xfd, 0x1c, 0x87, 0xa7, 0xbe, 0x52, 0x1c, 0x24, 0x51, 0xde, 0xe4, 0x28, 0xf7, 0x50, - 0xe5, 0x14, 0x28, 0x71, 0xb2, 0xf1, 0x38, 0x1a, 0xbb, 0x43, 0xf4, 0x95, 0x02, 0xa3, 0x6d, 0xc5, - 0x35, 0xc7, 0xc9, 0x72, 0xe5, 0x78, 0xc0, 0x2c, 0x57, 0x9e, 0x87, 0xd3, 0x56, 0x38, 0xd7, 0x12, - 0x5a, 0x38, 0x03, 0x17, 0xfa, 0x59, 0x81, 0x6b, 0x19, 0xf3, 0x84, 0xe6, 0x3a, 0x0b, 0x76, 0x33, - 0x65, 0xea, 0x9d, 0x53, 0x44, 0x4a, 0xbe, 0x0d, 0xce, 0xf7, 0x36, 0x7a, 0xab, 0x37, 0x9f, 0x19, - 0x8b, 0xd4, 0x63, 0xaf, 0x16, 0x37, 0xf0, 0x47, 0x05, 0xae, 0x76, 0x18, 0x29, 0x34, 0xd3, 0xc9, - 0x90, 0xef, 0xce, 0xd4, 0xd9, 0x9e, 0x71, 0x92, 0x74, 0x95, 0x93, 0x56, 0xd0, 0xdd, 0x1c, 0x52, - 0xce, 0xe7, 0xc8, 0xc4, 0xba, 0xe3, 0xd7, 0xf9, 0xe0, 0xc7, 0x78, 0x5f, 0x2b, 0x30, 0x9a, 0x74, - 0x3c, 0xd9, 0xf3, 0xcd, 0xf1, 0x4f, 0xd9, 0xf3, 0xcd, 0x33, 0x4d, 0xda, 0x3d, 0x4e, 0xa5, 0xa3, - 0xc5, 0x6e, 0x54, 0x81, 0xc8, 0x4a, 0x13, 0x7d, 0xa1, 0x00, 0x9c, 0x58, 0x1e, 0x34, 0xd5, 0x59, - 0x2a, 0x63, 0x9e, 0x54, 0xad, 0x28, 0x44, 0xb2, 0x54, 0x38, 0xcb, 0x22, 0x9a, 0xef, 0xc6, 0x12, - 0xf2, 0x9c, 0xba, 0x4f, 0x69, 0x9b, 0xe4, 0x49, 0xf4, 0x40, 0xc6, 0x6e, 0x07, 0x4d, 0x66, 0x1e, - 0xf8, 0x0e, 0xdb, 0xa4, 0x4e, 0x15, 0x44, 0x9c, 0xe2, 0xad, 0x20, 0x06, 0x3d, 0x4e, 0x89, 0x21, - 0xbe, 0x54, 0xa0, 0x94, 0xf0, 0x20, 0x28, 0xb3, 0xd9, 0xac, 0x9f, 0x51, 0xa7, 0x0b, 0x63, 0x4e, - 0xf1, 0xf4, 0x89, 0x99, 0xe1, 0x49, 0xe9, 0xc3, 0xf9, 0x5e, 0x81, 0x52, 0xc2, 0x64, 0x64, 0x69, - 0xb2, 0x66, 0x46, 0x9d, 0x2e, 0x8c, 0x91, 0x34, 0xef, 0x72, 0x9a, 0x37, 0xd0, 0xeb, 0xdd, 0x68, - 0x9a, 0x84, 0xd5, 0xb1, 0xeb, 0xd6, 0xfd, 0x28, 0xcd, 0x78, 0xcc, 0xbd, 0xc5, 0x61, 0xf4, 0x97, - 0x3b, 0xa0, 0x43, 0xf4, 0x8b, 0x02, 0x63, 0x79, 0x0e, 0x03, 0x2d, 0xe4, 0x94, 0xef, 0x66, 0x61, - 0xd4, 0xc5, 0xd3, 0x05, 0x4b, 0xe8, 0x77, 0x38, 0xf4, 0x2a, 0x7a, 0xad, 0x08, 0xda, 0x4c, 0xa4, - 0xa7, 0xe9, 0xd1, 0x1e, 0x0c, 0x8b, 0x51, 0xcd, 0x7e, 0x6c, 0x52, 0x8e, 0x20, 0xfb, 0xb1, 0x49, - 0xbb, 0x00, 0x6d, 0x89, 0x83, 0xcc, 0xa2, 0x57, 0x8b, 0xa7, 0x5b, 0x9e, 0xe2, 0xfa, 0xc6, 0xd3, - 0xa3, 0xb2, 0xf2, 0xec, 0xa8, 0xac, 0xfc, 0x7d, 0x54, 0x56, 0xbe, 0x39, 0x2e, 0x0f, 0x3c, 0x3b, - 0x2e, 0x0f, 0xfc, 0x71, 0x5c, 0x1e, 0xf8, 0xe4, 0x4e, 0xe2, 0xeb, 0x99, 0x95, 0xfa, 0x5c, 0x88, - 0xf1, 0x8f, 0x68, 0x63, 0x98, 0xff, 0x7b, 0x63, 0xe5, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x82, - 0xed, 0xaf, 0x9a, 0x95, 0x11, 0x00, 0x00, + 0x14, 0xc7, 0xe3, 0x34, 0x09, 0xdd, 0xb7, 0x69, 0x4b, 0x87, 0xb4, 0xa4, 0x26, 0xdd, 0x26, 0x0e, + 0x24, 0x69, 0x7e, 0xd8, 0xcd, 0xa6, 0x82, 0x00, 0x02, 0x94, 0x1f, 0x6a, 0x84, 0x88, 0x60, 0xbb, + 0x45, 0x08, 0x71, 0x59, 0x66, 0xed, 0x61, 0x6b, 0xc5, 0xf6, 0x38, 0xf6, 0x6c, 0x42, 0x54, 0xe5, + 0xd2, 0x0b, 0x07, 0x24, 0x40, 0x70, 0xe0, 0x02, 0xfc, 0x07, 0x1c, 0xf8, 0x07, 0x38, 0x71, 0xe8, + 0xb1, 0x12, 0x17, 0x84, 0x50, 0x85, 0x12, 0x8e, 0xfc, 0x11, 0xc8, 0x33, 0xe3, 0x8d, 0xbd, 0xde, + 0xf5, 0x26, 0xab, 0x5c, 0x38, 0x65, 0x3d, 0x7e, 0xef, 0xfb, 0x3e, 0xf3, 0xe6, 0xd9, 0xfe, 0x2a, + 0x70, 0x8d, 0x38, 0x07, 0xa1, 0xc1, 0x6c, 0x12, 0x18, 0xbb, 0x4d, 0x12, 0x1c, 0xe8, 0x7e, 0x40, + 0x19, 0x45, 0x85, 0x68, 0x59, 0x8f, 0x96, 0xd5, 0xb1, 0x06, 0x6d, 0x50, 0xbe, 0x6a, 0x44, 0xbf, + 0x44, 0x80, 0x3a, 0xd1, 0xa0, 0xb4, 0xe1, 0x10, 0x03, 0xfb, 0xb6, 0x81, 0x3d, 0x8f, 0x32, 0xcc, + 0x6c, 0xea, 0x85, 0xf2, 0xee, 0xbc, 0x49, 0x43, 0x97, 0x86, 0x46, 0x1d, 0x87, 0x44, 0xe8, 0x1a, + 0x7b, 0xcb, 0x75, 0xc2, 0xf0, 0xb2, 0xe1, 0xe3, 0x86, 0xed, 0xf1, 0x60, 0x19, 0x7b, 0xfd, 0x84, + 0xc0, 0xc7, 0x01, 0x76, 0x63, 0x8d, 0x1b, 0x89, 0x75, 0x1a, 0xb0, 0xcf, 0xa8, 0x63, 0xcb, 0xe2, + 0xda, 0x18, 0xa0, 0xfb, 0x91, 0x68, 0x85, 0xc7, 0x57, 0xc9, 0x6e, 0x93, 0x84, 0x4c, 0xbb, 0x07, + 0x2f, 0xa4, 0x56, 0x43, 0x9f, 0x7a, 0x21, 0x41, 0x06, 0x8c, 0x08, 0xdd, 0x71, 0x65, 0x52, 0x99, + 0x2b, 0x96, 0xaf, 0xea, 0xad, 0xbd, 0xe9, 0x22, 0x74, 0x7d, 0xe8, 0xc9, 0xb3, 0x5b, 0x03, 0x55, + 0x19, 0xa6, 0xe9, 0x30, 0xce, 0x75, 0xb6, 0x08, 0xab, 0xc4, 0x85, 0x65, 0x0d, 0x84, 0x60, 0xa8, + 0x19, 0x92, 0x80, 0x4b, 0x15, 0xaa, 0xfc, 0xb7, 0xb6, 0x09, 0x37, 0x3a, 0xc4, 0xcb, 0xea, 0xb3, + 0x70, 0x85, 0x51, 0x86, 0x9d, 0x5a, 0x6b, 0x0f, 0x32, 0xf7, 0x32, 0x5f, 0x6e, 0x25, 0x68, 0x75, + 0x59, 0x75, 0xcd, 0x71, 0x32, 0x55, 0xef, 0x01, 0x9c, 0xb4, 0x4d, 0x6e, 0x63, 0x46, 0x17, 0x3d, + 0xd6, 0xa3, 0x1e, 0xeb, 0xe2, 0xec, 0x64, 0x8f, 0xf5, 0x0a, 0x6e, 0x10, 0x99, 0x5b, 0x4d, 0x64, + 0x6a, 0x3f, 0x29, 0x12, 0x35, 0x5d, 0x44, 0xa2, 0xae, 0x42, 0x21, 0x09, 0x79, 0x61, 0xae, 0x58, + 0x1e, 0x4b, 0xf6, 0x2a, 0xbe, 0x27, 0xdb, 0x75, 0x12, 0x8c, 0xb6, 0x52, 0x7c, 0x83, 0x9c, 0x6f, + 0xb6, 0x27, 0x9f, 0x28, 0x9b, 0x02, 0x5c, 0x81, 0x9b, 0x9c, 0x6f, 0x03, 0x3b, 0x66, 0xd3, 0xc1, + 0x8c, 0x6c, 0xda, 0xa1, 0x49, 0x9b, 0x1e, 0xcb, 0xeb, 0xbf, 0x07, 0xa5, 0x6e, 0x49, 0x72, 0x67, + 0x2a, 0x5c, 0xb4, 0xe4, 0x9a, 0xcc, 0x6c, 0x5d, 0x47, 0x8a, 0xd1, 0xf6, 0x38, 0x75, 0xa1, 0xca, + 0x7f, 0xa3, 0x89, 0x64, 0x27, 0x2e, 0xf0, 0x1b, 0x27, 0x0b, 0xda, 0x32, 0xbc, 0xc4, 0xeb, 0x6d, + 0x93, 0x3d, 0x12, 0xe0, 0x06, 0xd9, 0xf6, 0x3f, 0x8c, 0x8e, 0x32, 0x0f, 0xf1, 0x37, 0x05, 0x26, + 0x3a, 0xe7, 0x48, 0xc2, 0x0f, 0xa0, 0x28, 0xc6, 0x64, 0x0f, 0x3b, 0x4d, 0x22, 0x72, 0xd7, 0xf5, + 0xa8, 0xcf, 0x7f, 0x3e, 0xbb, 0x35, 0xd3, 0xb0, 0xd9, 0xc3, 0x66, 0x5d, 0x37, 0xa9, 0x6b, 0xc8, + 0x07, 0x4b, 0xfc, 0x59, 0x0a, 0xad, 0x1d, 0x83, 0x1d, 0xf8, 0x24, 0xd4, 0x37, 0x89, 0x59, 0x05, + 0x2e, 0xf1, 0x51, 0xa4, 0x80, 0x1e, 0xc0, 0x25, 0x21, 0x58, 0xa7, 0x41, 0x40, 0xf7, 0x43, 0xb1, + 0xbf, 0x33, 0x4b, 0x8e, 0x72, 0x91, 0x75, 0xa1, 0xd1, 0x7a, 0x32, 0xaa, 0x64, 0x1f, 0x07, 0x56, + 0xd8, 0x73, 0xdb, 0x58, 0x8e, 0x5b, 0x3a, 0x5e, 0x6e, 0x79, 0x13, 0x86, 0xb9, 0x78, 0x9f, 0x9b, + 0x15, 0xc9, 0xda, 0x22, 0x5c, 0xe7, 0x25, 0x1e, 0x30, 0xbc, 0x43, 0xac, 0x0a, 0xa5, 0xb9, 0x40, + 0x35, 0x78, 0x31, 0x13, 0x7d, 0xae, 0x38, 0x0b, 0x70, 0x4d, 0xbc, 0x83, 0x48, 0xe0, 0x13, 0xd6, + 0xcc, 0x6f, 0xcf, 0xaf, 0x8a, 0x84, 0x4f, 0x44, 0xff, 0xaf, 0xe6, 0x61, 0x49, 0xb6, 0x73, 0xdb, + 0xde, 0x6d, 0xda, 0x56, 0xcf, 0x71, 0xf8, 0x54, 0x8e, 0x4f, 0x2a, 0xfc, 0x5c, 0xdb, 0xff, 0xae, + 0x04, 0xda, 0x22, 0x6c, 0xcd, 0x75, 0x2b, 0x81, 0x6d, 0xc6, 0xef, 0x41, 0x34, 0x06, 0xc3, 0x16, + 0xf1, 0xa8, 0x2b, 0x89, 0xc4, 0x05, 0x1a, 0x87, 0xe7, 0x2c, 0x62, 0xda, 0x2e, 0x76, 0x78, 0x43, + 0x86, 0xab, 0xf1, 0x65, 0x0b, 0x36, 0x25, 0x75, 0xae, 0xb0, 0xab, 0x30, 0x19, 0x57, 0xd8, 0xa0, + 0x5e, 0x48, 0x1d, 0xdb, 0xc2, 0x8c, 0x58, 0xbd, 0xa9, 0xb5, 0x1f, 0x07, 0x61, 0x2a, 0x27, 0x55, + 0x52, 0xbe, 0x07, 0x05, 0xec, 0xba, 0x35, 0x3f, 0x5a, 0xec, 0x93, 0xf4, 0x22, 0x96, 0x5b, 0x47, + 0xf7, 0x61, 0x94, 0x06, 0xd8, 0x74, 0x88, 0xd4, 0xeb, 0x6f, 0x7c, 0x8a, 0x42, 0x43, 0x48, 0x7e, + 0x0c, 0xcf, 0x27, 0x25, 0x6b, 0x16, 0x31, 0xc5, 0xcb, 0xf6, 0xcc, 0xb2, 0x97, 0x13, 0xb2, 0x9b, + 0xc4, 0xd4, 0xe6, 0xa4, 0x3f, 0x10, 0x8f, 0x79, 0xde, 0x48, 0xfe, 0x35, 0x28, 0x4d, 0x43, 0x1c, + 0x2a, 0x7b, 0x57, 0x81, 0xa2, 0x49, 0x5d, 0xd7, 0x66, 0x2e, 0xf1, 0x58, 0xd8, 0x67, 0xf7, 0x92, + 0x12, 0x91, 0xa2, 0x45, 0x1c, 0xd2, 0x10, 0x3e, 0xa9, 0xdf, 0xfe, 0x25, 0x24, 0xd0, 0xfb, 0x00, + 0x4d, 0xaf, 0x4e, 0x3d, 0xcb, 0xf6, 0x1a, 0x61, 0x9f, 0x9d, 0x4b, 0x28, 0x44, 0x47, 0x2c, 0xdf, + 0x39, 0x24, 0x64, 0xc4, 0x1a, 0x1f, 0xea, 0x0f, 0x51, 0xbc, 0x74, 0xb8, 0x44, 0xf9, 0xdf, 0x4b, + 0x30, 0xcc, 0xdb, 0x8b, 0x0e, 0x60, 0x44, 0x98, 0x2d, 0x74, 0x33, 0xe1, 0x29, 0xb2, 0x2e, 0x4e, + 0x2d, 0x75, 0xbb, 0x2d, 0x4e, 0x46, 0xbb, 0xf3, 0xf8, 0xf7, 0x7f, 0xbe, 0x1b, 0x9c, 0x47, 0x73, + 0x46, 0x14, 0xb7, 0xe4, 0x11, 0xb6, 0x4f, 0x83, 0x1d, 0x7e, 0x61, 0xb8, 0xc4, 0xad, 0x93, 0x20, + 0x7c, 0x68, 0xfb, 0x09, 0x3b, 0x89, 0xbe, 0x55, 0xa0, 0xd0, 0x32, 0x2f, 0x68, 0xba, 0x5d, 0xbf, + 0x83, 0xcd, 0x53, 0x5f, 0xce, 0x0f, 0x92, 0x28, 0x6f, 0x70, 0x94, 0xbb, 0xa8, 0x7c, 0x0a, 0x94, + 0x38, 0xd9, 0x78, 0x14, 0xcd, 0xdd, 0x21, 0xfa, 0x4a, 0x81, 0xd1, 0x96, 0xe2, 0x9a, 0xe3, 0x64, + 0xb9, 0x3a, 0x18, 0xc1, 0x2c, 0x57, 0x27, 0x23, 0xa7, 0xad, 0x70, 0xae, 0x25, 0xb4, 0x70, 0x06, + 0x2e, 0xf4, 0xb3, 0x02, 0x57, 0x33, 0x0e, 0x0a, 0xcd, 0xb5, 0x17, 0xec, 0xe6, 0xcc, 0xd4, 0xdb, + 0xa7, 0x88, 0x94, 0x7c, 0x1b, 0x9c, 0xef, 0x2d, 0xf4, 0x66, 0x6f, 0x3e, 0x33, 0x16, 0xa9, 0xc5, + 0x86, 0x2d, 0x6e, 0xe0, 0x0f, 0x0a, 0x5c, 0x69, 0x73, 0x53, 0x68, 0xa6, 0x9d, 0xa1, 0xb3, 0x45, + 0x53, 0x67, 0x7b, 0xc6, 0x49, 0xd2, 0x55, 0x4e, 0x5a, 0x46, 0x77, 0x3a, 0x90, 0x72, 0x3e, 0x47, + 0x26, 0xd6, 0x1c, 0xbf, 0xc6, 0x07, 0x3f, 0xc6, 0xfb, 0x5a, 0x81, 0xd1, 0xa4, 0xed, 0xc9, 0x9e, + 0x6f, 0x07, 0x13, 0x95, 0x3d, 0xdf, 0x4e, 0xce, 0x49, 0xbb, 0xcb, 0xa9, 0x74, 0xb4, 0xd8, 0x8d, + 0x2a, 0x10, 0x59, 0x69, 0xa2, 0x2f, 0x14, 0x80, 0x13, 0xdf, 0x83, 0xa6, 0xda, 0x4b, 0x65, 0x1c, + 0x94, 0xaa, 0xe5, 0x85, 0x48, 0x96, 0x32, 0x67, 0x59, 0x44, 0xf3, 0xdd, 0x58, 0x42, 0x9e, 0x53, + 0xf3, 0x29, 0x6d, 0x91, 0x3c, 0x8e, 0x1e, 0xc8, 0xd8, 0xf2, 0xa0, 0xc9, 0xcc, 0x03, 0xdf, 0xe6, + 0x9d, 0xd4, 0xa9, 0x9c, 0x88, 0x53, 0xbc, 0x15, 0xc4, 0xa0, 0xc7, 0x29, 0x31, 0xc4, 0x97, 0x0a, + 0x14, 0x13, 0x46, 0x04, 0x65, 0x36, 0x9b, 0x35, 0x35, 0xea, 0x74, 0x6e, 0xcc, 0x29, 0x9e, 0x3e, + 0x31, 0x33, 0x3c, 0x29, 0x7d, 0x38, 0xdf, 0x2b, 0x50, 0x4c, 0x38, 0x8d, 0x2c, 0x4d, 0xd6, 0xd1, + 0xa8, 0xd3, 0xb9, 0x31, 0x92, 0xe6, 0x1d, 0x4e, 0xf3, 0x3a, 0x7a, 0xad, 0x1b, 0x4d, 0x83, 0xb0, + 0x5a, 0xcb, 0x26, 0x18, 0x8f, 0xb8, 0xc1, 0x38, 0x8c, 0xfe, 0x72, 0x1b, 0x74, 0x88, 0x7e, 0x51, + 0x60, 0xac, 0x93, 0xcd, 0x40, 0x0b, 0x1d, 0xca, 0x77, 0xf3, 0x31, 0xea, 0xe2, 0xe9, 0x82, 0x25, + 0xf4, 0xdb, 0x1c, 0x7a, 0x15, 0xbd, 0x9a, 0x07, 0x6d, 0x26, 0xd2, 0xd3, 0xf4, 0x68, 0x0f, 0x46, + 0xc4, 0xa8, 0x66, 0x3f, 0x36, 0x29, 0x4b, 0x90, 0xfd, 0xd8, 0xa4, 0x6d, 0x80, 0xb6, 0xc4, 0x41, + 0x66, 0xd1, 0x2b, 0xf9, 0xd3, 0x2d, 0x4f, 0x71, 0x7d, 0xe3, 0xc9, 0x51, 0x49, 0x79, 0x7a, 0x54, + 0x52, 0xfe, 0x3e, 0x2a, 0x29, 0xdf, 0x1c, 0x97, 0x06, 0x9e, 0x1e, 0x97, 0x06, 0xfe, 0x38, 0x2e, + 0x0d, 0x7c, 0x72, 0x3b, 0xf1, 0xf5, 0xcc, 0x4a, 0x7d, 0x2e, 0xc4, 0xf8, 0x47, 0xb4, 0x3e, 0xc2, + 0xff, 0xc7, 0xb1, 0xf2, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x26, 0x6d, 0x84, 0x9a, 0x11, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tradeshield/types/genesis.pb.go b/x/tradeshield/types/genesis.pb.go index 7e3420931..0069fbee7 100644 --- a/x/tradeshield/types/genesis.pb.go +++ b/x/tradeshield/types/genesis.pb.go @@ -26,10 +26,10 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the tradeshield module's genesis state. type GenesisState struct { Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` - PendingSpotOrderList []SpotOrder `protobuf:"bytes,2,rep,name=pendingSpotOrderList,proto3" json:"pendingSpotOrderList"` - PendingSpotOrderCount uint64 `protobuf:"varint,3,opt,name=pendingSpotOrderCount,proto3" json:"pendingSpotOrderCount,omitempty"` - PendingPerpetualOrderList []PerpetualOrder `protobuf:"bytes,4,rep,name=pendingPerpetualOrderList,proto3" json:"pendingPerpetualOrderList"` - PendingPerpetualOrderCount uint64 `protobuf:"varint,5,opt,name=pendingPerpetualOrderCount,proto3" json:"pendingPerpetualOrderCount,omitempty"` + PendingSpotOrderList []SpotOrder `protobuf:"bytes,2,rep,name=pending_spot_order_list,json=pendingSpotOrderList,proto3" json:"pending_spot_order_list"` + PendingSpotOrderCount uint64 `protobuf:"varint,3,opt,name=pending_spot_order_count,json=pendingSpotOrderCount,proto3" json:"pending_spot_order_count,omitempty"` + PendingPerpetualOrderList []PerpetualOrder `protobuf:"bytes,4,rep,name=pending_perpetual_order_list,json=pendingPerpetualOrderList,proto3" json:"pending_perpetual_order_list"` + PendingPerpetualOrderCount uint64 `protobuf:"varint,5,opt,name=pending_perpetual_order_count,json=pendingPerpetualOrderCount,proto3" json:"pending_perpetual_order_count,omitempty"` } func (m *GenesisState) Reset() { *m = GenesisState{} } @@ -107,27 +107,28 @@ func init() { func init() { proto.RegisterFile("elys/tradeshield/genesis.proto", fileDescriptor_da92b96d2e7e2f05) } var fileDescriptor_da92b96d2e7e2f05 = []byte{ - // 308 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcd, 0xa9, 0x2c, - 0xd6, 0x2f, 0x29, 0x4a, 0x4c, 0x49, 0x2d, 0xce, 0xc8, 0x4c, 0xcd, 0x49, 0xd1, 0x4f, 0x4f, 0xcd, - 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x00, 0xc9, 0xeb, 0x21, - 0xc9, 0x4b, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x25, 0xf5, 0x41, 0x2c, 0x88, 0x3a, 0x29, 0x59, - 0x0c, 0x73, 0x0a, 0x12, 0x8b, 0x12, 0x73, 0xa1, 0xc6, 0x48, 0xc9, 0x60, 0x48, 0x97, 0x54, 0x16, - 0xa4, 0x42, 0x65, 0x95, 0x7e, 0x32, 0x71, 0xf1, 0xb8, 0x43, 0xac, 0x0d, 0x2e, 0x49, 0x2c, 0x49, - 0x15, 0x32, 0xe3, 0x62, 0x83, 0x68, 0x97, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd0, 0x43, - 0x77, 0x86, 0x5e, 0x00, 0x58, 0xde, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x6a, 0xa1, - 0x50, 0x2e, 0x91, 0x82, 0xd4, 0xbc, 0x94, 0xcc, 0xbc, 0xf4, 0xe0, 0x82, 0xfc, 0x12, 0xff, 0xa2, - 0x94, 0xd4, 0x22, 0x9f, 0xcc, 0xe2, 0x12, 0x09, 0x26, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x69, 0x4c, - 0x53, 0xe0, 0xca, 0xa0, 0x06, 0x61, 0xd5, 0x2e, 0x64, 0xc2, 0x25, 0x8a, 0x2e, 0xee, 0x9c, 0x5f, - 0x9a, 0x57, 0x22, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0x12, 0x84, 0x5d, 0x52, 0x28, 0x85, 0x4b, 0x12, - 0x2a, 0x11, 0x90, 0x5a, 0x54, 0x90, 0x5a, 0x52, 0x9a, 0x98, 0x83, 0x70, 0x11, 0x0b, 0xd8, 0x45, - 0x0a, 0x58, 0xfc, 0x85, 0xa2, 0x16, 0xea, 0x2c, 0xdc, 0x06, 0x09, 0xd9, 0x71, 0x49, 0x61, 0x95, - 0x84, 0x38, 0x90, 0x15, 0xec, 0x40, 0x3c, 0x2a, 0x9c, 0xbc, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, - 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, - 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x20, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, - 0x1f, 0xe4, 0x4c, 0xdd, 0xbc, 0xd4, 0x92, 0xf2, 0xfc, 0xa2, 0x6c, 0x30, 0x47, 0xbf, 0x02, 0x33, - 0x36, 0x93, 0xd8, 0xc0, 0xd1, 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x77, 0x68, 0xf6, - 0x55, 0x02, 0x00, 0x00, + // 330 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0x31, 0x4f, 0xc2, 0x40, + 0x14, 0x80, 0x5b, 0x41, 0x86, 0xc3, 0xc1, 0x34, 0x18, 0x6b, 0x85, 0xb3, 0x71, 0x62, 0xb1, 0x35, + 0x98, 0xe8, 0x2c, 0x0e, 0x26, 0xc6, 0x44, 0x03, 0x8b, 0x71, 0x21, 0x85, 0xbe, 0x94, 0xc6, 0xd2, + 0xbb, 0xdc, 0x3d, 0xa2, 0xfc, 0x00, 0x77, 0x7f, 0x16, 0x23, 0xa3, 0x93, 0x31, 0xf0, 0x47, 0x4c, + 0xaf, 0x87, 0x41, 0x5a, 0xb7, 0xb6, 0xdf, 0x7b, 0xdf, 0x7d, 0xcd, 0x11, 0x0a, 0xc9, 0x4c, 0xfa, + 0x28, 0x82, 0x10, 0xe4, 0x38, 0x86, 0x24, 0xf4, 0x23, 0x48, 0x41, 0xc6, 0xd2, 0xe3, 0x82, 0x21, + 0xb3, 0xf6, 0x33, 0xee, 0x6d, 0x70, 0xa7, 0x11, 0xb1, 0x88, 0x29, 0xe8, 0x67, 0x4f, 0xf9, 0x9c, + 0xd3, 0x2a, 0x78, 0x78, 0x20, 0x82, 0x89, 0xd6, 0x38, 0xcd, 0x02, 0xc6, 0x19, 0x07, 0x4d, 0x4f, + 0xdf, 0x2b, 0x64, 0xef, 0x36, 0x3f, 0xb6, 0x8f, 0x01, 0x82, 0x75, 0x49, 0x6a, 0xf9, 0xba, 0x6d, + 0xba, 0x66, 0xbb, 0xde, 0xb1, 0xbd, 0xed, 0x0c, 0xef, 0x51, 0xf1, 0x6e, 0x75, 0xfe, 0x75, 0x62, + 0xf4, 0xf4, 0xb4, 0xf5, 0x44, 0x0e, 0x39, 0xa4, 0x61, 0x9c, 0x46, 0x03, 0xc9, 0x19, 0x0e, 0x98, + 0x08, 0x41, 0x0c, 0x92, 0x58, 0xa2, 0xbd, 0xe3, 0x56, 0xda, 0xf5, 0xce, 0x71, 0x51, 0xd4, 0xe7, + 0x0c, 0x1f, 0xb2, 0x39, 0xed, 0x6a, 0x68, 0xc3, 0xef, 0xf7, 0xfb, 0x58, 0xa2, 0x75, 0x45, 0xec, + 0x12, 0xf3, 0x88, 0x4d, 0x53, 0xb4, 0x2b, 0xae, 0xd9, 0xae, 0xf6, 0x0e, 0xb6, 0xf7, 0x6e, 0x32, + 0x68, 0x45, 0xa4, 0xb9, 0x5e, 0xe4, 0x20, 0x38, 0xe0, 0x34, 0x48, 0x36, 0xbb, 0xaa, 0xaa, 0xcb, + 0x2d, 0xf9, 0xc1, 0xf5, 0xf4, 0x66, 0xdc, 0x91, 0x76, 0xfd, 0x85, 0xaa, 0xf0, 0x9a, 0xb4, 0xfe, + 0x3b, 0x28, 0xcf, 0xdc, 0x55, 0x99, 0x4e, 0xa9, 0x41, 0xb5, 0x76, 0xef, 0xe6, 0x4b, 0x6a, 0x2e, + 0x96, 0xd4, 0xfc, 0x5e, 0x52, 0xf3, 0x63, 0x45, 0x8d, 0xc5, 0x8a, 0x1a, 0x9f, 0x2b, 0x6a, 0x3c, + 0x9f, 0x47, 0x31, 0x8e, 0xa7, 0x43, 0x6f, 0xc4, 0x26, 0x7e, 0x56, 0x7a, 0x96, 0x02, 0xbe, 0x32, + 0xf1, 0xa2, 0x5e, 0xfc, 0xb7, 0xe2, 0xcd, 0x0e, 0x6b, 0xea, 0x6a, 0x2f, 0x7e, 0x02, 0x00, 0x00, + 0xff, 0xff, 0x4a, 0xea, 0xc1, 0x2c, 0x61, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/tradeshield/types/query.pb.go b/x/tradeshield/types/query.pb.go index b4ce36663..0243f0bfc 100644 --- a/x/tradeshield/types/query.pb.go +++ b/x/tradeshield/types/query.pb.go @@ -158,7 +158,7 @@ func (m *QueryGetPendingSpotOrderRequest) GetId() uint64 { } type QueryGetPendingSpotOrderResponse struct { - PendingSpotOrder SpotOrder `protobuf:"bytes,1,opt,name=PendingSpotOrder,proto3" json:"PendingSpotOrder"` + PendingSpotOrder SpotOrder `protobuf:"bytes,1,opt,name=pending_spot_order,json=pendingSpotOrder,proto3" json:"pending_spot_order"` } func (m *QueryGetPendingSpotOrderResponse) Reset() { *m = QueryGetPendingSpotOrderResponse{} } @@ -246,7 +246,7 @@ func (m *QueryAllPendingSpotOrderRequest) GetPagination() *query.PageRequest { } type QueryAllPendingSpotOrderResponse struct { - PendingSpotOrder []SpotOrder `protobuf:"bytes,1,rep,name=PendingSpotOrder,proto3" json:"PendingSpotOrder"` + PendingSpotOrder []SpotOrder `protobuf:"bytes,1,rep,name=pending_spot_order,json=pendingSpotOrder,proto3" json:"pending_spot_order"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -342,7 +342,7 @@ func (m *QueryGetPendingPerpetualOrderRequest) GetId() uint64 { } type QueryGetPendingPerpetualOrderResponse struct { - PendingPerpetualOrder PerpetualOrder `protobuf:"bytes,1,opt,name=PendingPerpetualOrder,proto3" json:"PendingPerpetualOrder"` + PendingPerpetualOrder PerpetualOrder `protobuf:"bytes,1,opt,name=pending_perpetual_order,json=pendingPerpetualOrder,proto3" json:"pending_perpetual_order"` } func (m *QueryGetPendingPerpetualOrderResponse) Reset() { *m = QueryGetPendingPerpetualOrderResponse{} } @@ -430,7 +430,7 @@ func (m *QueryAllPendingPerpetualOrderRequest) GetPagination() *query.PageReques } type QueryAllPendingPerpetualOrderResponse struct { - PendingPerpetualOrder []PerpetualOrder `protobuf:"bytes,1,rep,name=PendingPerpetualOrder,proto3" json:"PendingPerpetualOrder"` + PendingPerpetualOrder []PerpetualOrder `protobuf:"bytes,1,rep,name=pending_perpetual_order,json=pendingPerpetualOrder,proto3" json:"pending_perpetual_order"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -497,47 +497,48 @@ func init() { func init() { proto.RegisterFile("elys/tradeshield/query.proto", fileDescriptor_0b92ce2c2fb85355) } var fileDescriptor_0b92ce2c2fb85355 = []byte{ - // 635 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xd1, 0x6a, 0x13, 0x4d, - 0x14, 0xc7, 0x33, 0x69, 0xbf, 0x7c, 0x30, 0x82, 0x94, 0x69, 0x85, 0x10, 0xeb, 0x36, 0x2c, 0x8d, - 0x15, 0xa1, 0x3b, 0x26, 0x85, 0xa8, 0x88, 0x42, 0x2b, 0x58, 0x10, 0x8a, 0x31, 0xde, 0x89, 0x50, - 0x26, 0xdd, 0x61, 0xbb, 0xb8, 0xd9, 0xd9, 0xec, 0x4e, 0xd4, 0x20, 0xde, 0x88, 0xde, 0x0b, 0xbe, - 0x81, 0x2f, 0x21, 0xfa, 0x04, 0x05, 0x51, 0x0a, 0xde, 0x78, 0x25, 0x92, 0xf8, 0x20, 0xb2, 0x33, - 0x13, 0x9b, 0x64, 0x77, 0xb2, 0xae, 0xf6, 0x2e, 0x64, 0xce, 0xf9, 0x9f, 0xdf, 0xff, 0x9c, 0x99, - 0xc3, 0xc2, 0x55, 0xea, 0x0d, 0x22, 0xcc, 0x43, 0x62, 0xd3, 0xe8, 0xd0, 0xa5, 0x9e, 0x8d, 0x7b, - 0x7d, 0x1a, 0x0e, 0xac, 0x20, 0x64, 0x9c, 0xa1, 0xa5, 0xf8, 0xd4, 0x9a, 0x38, 0xad, 0xac, 0x38, - 0xcc, 0x61, 0xe2, 0x10, 0xc7, 0xbf, 0x64, 0x5c, 0x65, 0xd5, 0x61, 0xcc, 0xf1, 0x28, 0x26, 0x81, - 0x8b, 0x89, 0xef, 0x33, 0x4e, 0xb8, 0xcb, 0xfc, 0x48, 0x9d, 0x5e, 0x3e, 0x60, 0x51, 0x97, 0x45, - 0xb8, 0x43, 0x22, 0x2a, 0xe5, 0xf1, 0x93, 0x7a, 0x87, 0x72, 0x52, 0xc7, 0x01, 0x71, 0x5c, 0x5f, - 0x04, 0xab, 0xd8, 0x0b, 0x09, 0x9e, 0x80, 0x84, 0xa4, 0x3b, 0x96, 0x4a, 0xe2, 0xf2, 0x41, 0x40, - 0xd5, 0xa9, 0xb9, 0x02, 0xd1, 0xfd, 0x58, 0xbe, 0x25, 0x52, 0xda, 0xb4, 0xd7, 0xa7, 0x11, 0x37, - 0xf7, 0xe0, 0xf2, 0xd4, 0xbf, 0x51, 0xc0, 0xfc, 0x88, 0xa2, 0x26, 0x2c, 0x49, 0xe9, 0x32, 0xa8, - 0x82, 0x4b, 0x67, 0x1a, 0x65, 0x6b, 0xd6, 0xac, 0x25, 0x33, 0x76, 0x16, 0x8f, 0xbe, 0xaf, 0x15, - 0xda, 0x2a, 0xda, 0xac, 0xc3, 0x35, 0x21, 0xb7, 0x4b, 0x79, 0x8b, 0xfa, 0xb6, 0xeb, 0x3b, 0x0f, - 0x02, 0xc6, 0xef, 0x85, 0x36, 0x0d, 0x55, 0x45, 0x74, 0x16, 0x16, 0x5d, 0x5b, 0xc8, 0x2e, 0xb6, - 0x8b, 0xae, 0x6d, 0xf6, 0x60, 0x55, 0x9f, 0xa2, 0x70, 0xf6, 0xe0, 0xd2, 0xec, 0x99, 0x02, 0x3b, - 0x9f, 0x04, 0xfb, 0x1d, 0xa2, 0xd8, 0x12, 0xa9, 0xa6, 0xab, 0x28, 0xb7, 0x3d, 0x4f, 0x47, 0x79, - 0x07, 0xc2, 0x93, 0xf6, 0xab, 0x5a, 0x17, 0x2d, 0x39, 0x2b, 0x2b, 0x9e, 0x95, 0x25, 0xaf, 0x82, - 0x9a, 0x95, 0xd5, 0x22, 0x0e, 0x55, 0xb9, 0xed, 0x89, 0x4c, 0xf3, 0x23, 0x50, 0xf6, 0x52, 0x6b, - 0xcd, 0xb5, 0xb7, 0xf0, 0x97, 0xf6, 0xd0, 0xee, 0x14, 0x7b, 0x51, 0xb0, 0x6f, 0x64, 0xb2, 0x4b, - 0x96, 0x29, 0xf8, 0x26, 0x5c, 0x9f, 0x19, 0x4d, 0x8b, 0x86, 0x01, 0xe5, 0x7d, 0xe2, 0xcd, 0x1d, - 0xe9, 0x6b, 0x00, 0x6b, 0x19, 0x89, 0xca, 0xf9, 0x23, 0x78, 0x2e, 0x35, 0x40, 0x75, 0xbc, 0x9a, - 0x72, 0xed, 0xa6, 0xe2, 0x54, 0x0f, 0xd2, 0x45, 0x4c, 0x5f, 0xf1, 0x9f, 0xf4, 0x3e, 0x9d, 0xff, - 0xb4, 0x86, 0xfd, 0x65, 0xec, 0x5b, 0x5f, 0x30, 0xdb, 0xf7, 0xc2, 0x3f, 0xfb, 0x3e, 0xb5, 0x0b, - 0xd0, 0x78, 0xf7, 0x3f, 0xfc, 0x4f, 0x18, 0x42, 0xaf, 0x00, 0x2c, 0xc9, 0x17, 0x8f, 0xd6, 0x93, - 0x70, 0xc9, 0xc5, 0x52, 0xa9, 0x65, 0x44, 0xc9, 0x6a, 0xe6, 0xe6, 0xcb, 0xaf, 0x3f, 0xdf, 0x16, - 0x37, 0x50, 0x0d, 0xc7, 0xe1, 0x9b, 0x3e, 0xe5, 0x4f, 0x59, 0xf8, 0x18, 0x6b, 0x16, 0x1d, 0xfa, - 0x00, 0x92, 0x4f, 0x05, 0xd5, 0x35, 0xa5, 0xf4, 0x4b, 0xa8, 0xd2, 0xc8, 0x93, 0xa2, 0x50, 0x6f, - 0x09, 0xd4, 0x6b, 0xa8, 0x99, 0x85, 0x2a, 0x05, 0xf6, 0xa3, 0x80, 0xf1, 0x7d, 0x16, 0x4b, 0xe0, - 0xe7, 0xae, 0xfd, 0x02, 0xbd, 0x07, 0x70, 0x79, 0x56, 0x7c, 0xdb, 0xf3, 0xb4, 0xf8, 0xfa, 0xed, - 0xa4, 0xc5, 0x9f, 0xb3, 0x64, 0xcc, 0xeb, 0x02, 0x7f, 0x0b, 0xd5, 0x73, 0xe3, 0xa3, 0xcf, 0x40, - 0x73, 0x5d, 0x51, 0x33, 0xb3, 0x8f, 0xa9, 0x2f, 0xae, 0x72, 0x35, 0x77, 0x9e, 0x72, 0x71, 0x5b, - 0xb8, 0xb8, 0x89, 0x6e, 0xfc, 0xa1, 0x8b, 0x60, 0x2c, 0x33, 0x39, 0x89, 0x4f, 0x00, 0x96, 0x53, - 0xcb, 0xc4, 0xe3, 0x68, 0x66, 0xf6, 0x36, 0x9f, 0xa5, 0xac, 0x5d, 0x90, 0xfb, 0x5e, 0xcd, 0x58, - 0xda, 0xb9, 0x7b, 0x34, 0x34, 0xc0, 0xf1, 0xd0, 0x00, 0x3f, 0x86, 0x06, 0x78, 0x33, 0x32, 0x0a, - 0xc7, 0x23, 0xa3, 0xf0, 0x6d, 0x64, 0x14, 0x1e, 0x5e, 0x71, 0x5c, 0x7e, 0xd8, 0xef, 0x58, 0x07, - 0xac, 0x9b, 0xa2, 0xfd, 0x2c, 0xf9, 0xa9, 0xd0, 0x29, 0x89, 0x6f, 0x85, 0xad, 0x5f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x1f, 0xbf, 0xf5, 0x44, 0xfa, 0x08, 0x00, 0x00, + // 646 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xdf, 0x6a, 0x13, 0x4f, + 0x14, 0xc7, 0x33, 0x69, 0x7f, 0xf9, 0xc1, 0x08, 0x12, 0xa6, 0x2d, 0x86, 0x58, 0xb7, 0x61, 0x69, + 0xac, 0x08, 0xdd, 0x35, 0x29, 0x44, 0x45, 0x14, 0x5a, 0xc1, 0x82, 0x20, 0x8d, 0xf1, 0xce, 0x0b, + 0xcb, 0xa4, 0x3b, 0x6c, 0x17, 0x37, 0x3b, 0xd3, 0x9d, 0x89, 0x1a, 0xc4, 0x1b, 0x11, 0xbc, 0x15, + 0x7c, 0x03, 0x5f, 0x42, 0x04, 0x1f, 0xa0, 0x20, 0x42, 0xc0, 0x1b, 0xaf, 0x44, 0x12, 0x1f, 0x44, + 0x76, 0x66, 0x62, 0x9b, 0xfd, 0xd3, 0x6d, 0xb4, 0x77, 0x21, 0xe7, 0x9c, 0xef, 0xf9, 0x7c, 0xe7, + 0xcc, 0x1c, 0x16, 0x2e, 0x13, 0x7f, 0xc0, 0x6d, 0x11, 0x62, 0x87, 0xf0, 0x7d, 0x8f, 0xf8, 0x8e, + 0x7d, 0xd0, 0x27, 0xe1, 0xc0, 0x62, 0x21, 0x15, 0x14, 0x95, 0xa3, 0xa8, 0x75, 0x2c, 0x5a, 0x5d, + 0x74, 0xa9, 0x4b, 0x65, 0xd0, 0x8e, 0x7e, 0xa9, 0xbc, 0xea, 0xb2, 0x4b, 0xa9, 0xeb, 0x13, 0x1b, + 0x33, 0xcf, 0xc6, 0x41, 0x40, 0x05, 0x16, 0x1e, 0x0d, 0xb8, 0x8e, 0x5e, 0xdd, 0xa3, 0xbc, 0x47, + 0xb9, 0xdd, 0xc5, 0x9c, 0x28, 0x79, 0xfb, 0x59, 0xa3, 0x4b, 0x04, 0x6e, 0xd8, 0x0c, 0xbb, 0x5e, + 0x20, 0x93, 0x75, 0xee, 0xa5, 0x04, 0x0f, 0xc3, 0x21, 0xee, 0x4d, 0xa4, 0x92, 0xb8, 0x62, 0xc0, + 0x88, 0x8e, 0x9a, 0x8b, 0x10, 0x3d, 0x8c, 0xe4, 0xdb, 0xb2, 0xa4, 0x43, 0x0e, 0xfa, 0x84, 0x0b, + 0xf3, 0x01, 0x5c, 0x98, 0xfa, 0x97, 0x33, 0x1a, 0x70, 0x82, 0x5a, 0xb0, 0xa4, 0xa4, 0x2b, 0xa0, + 0x06, 0xae, 0x9c, 0x6b, 0x56, 0xac, 0xb8, 0x59, 0x4b, 0x55, 0x6c, 0xcd, 0x1f, 0xfe, 0x58, 0x29, + 0x74, 0x74, 0xb6, 0xd9, 0x80, 0x2b, 0x52, 0x6e, 0x9b, 0x88, 0x36, 0x09, 0x1c, 0x2f, 0x70, 0x1f, + 0x31, 0x2a, 0x76, 0x42, 0x87, 0x84, 0xba, 0x23, 0x3a, 0x0f, 0x8b, 0x9e, 0x23, 0x65, 0xe7, 0x3b, + 0x45, 0xcf, 0x31, 0x39, 0xac, 0x65, 0x97, 0x68, 0x9c, 0x1d, 0x88, 0x98, 0x8a, 0xed, 0x72, 0x46, + 0xc5, 0x2e, 0x8d, 0xa2, 0x1a, 0xed, 0x62, 0x12, 0xed, 0x8f, 0x80, 0xa6, 0x2b, 0xb3, 0x98, 0xb0, + 0xe9, 0x69, 0xce, 0x4d, 0xdf, 0xcf, 0xe2, 0xbc, 0x07, 0xe1, 0xd1, 0x00, 0x74, 0xaf, 0xcb, 0x96, + 0x9a, 0x96, 0x15, 0x4d, 0xcb, 0x52, 0x97, 0x41, 0x4f, 0xcb, 0x6a, 0x63, 0x97, 0xe8, 0xda, 0xce, + 0xb1, 0x4a, 0xf3, 0x33, 0xd0, 0x06, 0x53, 0x7b, 0xe5, 0x18, 0x9c, 0xfb, 0x4b, 0x83, 0x68, 0x7b, + 0x8a, 0xbe, 0x28, 0xe9, 0xd7, 0x72, 0xe9, 0x15, 0xcd, 0x14, 0x7e, 0x0b, 0xae, 0xc6, 0xc6, 0xd3, + 0x26, 0x21, 0x23, 0xa2, 0x8f, 0xfd, 0x13, 0xc7, 0xfa, 0x16, 0xc0, 0x7a, 0x4e, 0xa1, 0xf6, 0xfe, + 0x04, 0x5e, 0x98, 0x78, 0x67, 0x93, 0x8c, 0xa9, 0x09, 0xd7, 0x52, 0x2e, 0xdf, 0x94, 0x94, 0x3e, + 0x85, 0x25, 0x96, 0xd6, 0xc7, 0x0c, 0xb4, 0x83, 0xa3, 0xf3, 0x4f, 0x77, 0x70, 0x56, 0x03, 0x1f, + 0x4e, 0x9c, 0x67, 0x37, 0x3c, 0x8d, 0xf3, 0xb9, 0x7f, 0x76, 0x7e, 0x66, 0x97, 0xa0, 0xf9, 0xe1, + 0x7f, 0xf8, 0x9f, 0xb4, 0x84, 0xde, 0x00, 0x58, 0x52, 0x2f, 0x1f, 0xad, 0x26, 0xe1, 0x92, 0x0b, + 0xa6, 0x5a, 0xcf, 0xc9, 0x52, 0xdd, 0xcc, 0xf5, 0xd7, 0xdf, 0x7e, 0xbd, 0x2f, 0xae, 0xa1, 0xba, + 0x1d, 0xa5, 0xaf, 0x07, 0x44, 0x3c, 0xa7, 0xe1, 0x53, 0x3b, 0x63, 0xe1, 0xa1, 0x4f, 0x00, 0x96, + 0xe3, 0x8f, 0x09, 0x35, 0x32, 0x5a, 0x65, 0x2f, 0xa3, 0x6a, 0x73, 0x96, 0x12, 0x8d, 0x7a, 0x47, + 0xa2, 0xde, 0x40, 0xad, 0x3c, 0xd4, 0xc4, 0x83, 0xb6, 0x5f, 0x7a, 0xce, 0x2b, 0xf4, 0x11, 0xc0, + 0x85, 0xb8, 0xf8, 0xa6, 0xef, 0x67, 0xe2, 0x67, 0xef, 0xa8, 0x4c, 0xfc, 0x13, 0x56, 0x8d, 0x79, + 0x53, 0xe2, 0x6f, 0xa0, 0xc6, 0xcc, 0xf8, 0xe8, 0x2b, 0x80, 0x4b, 0xa9, 0x37, 0x1a, 0xb5, 0x72, + 0xcf, 0x31, 0xf5, 0xcd, 0x55, 0xaf, 0xcf, 0x5c, 0xa7, 0x5d, 0xdc, 0x95, 0x2e, 0x6e, 0xa3, 0x5b, + 0xa7, 0x74, 0x11, 0x7b, 0x5f, 0x6a, 0x12, 0x5f, 0x00, 0xac, 0xa4, 0xb6, 0x89, 0xc6, 0xd1, 0xca, + 0x3d, 0xdb, 0xd9, 0x2c, 0xe5, 0x6d, 0x83, 0x99, 0xef, 0x55, 0xcc, 0xd2, 0xd6, 0xfd, 0xc3, 0x91, + 0x01, 0x86, 0x23, 0x03, 0xfc, 0x1c, 0x19, 0xe0, 0xdd, 0xd8, 0x28, 0x0c, 0xc7, 0x46, 0xe1, 0xfb, + 0xd8, 0x28, 0x3c, 0xbe, 0xe6, 0x7a, 0x62, 0xbf, 0xdf, 0xb5, 0xf6, 0x68, 0x2f, 0x45, 0xfb, 0x45, + 0xf2, 0x93, 0xa1, 0x5b, 0x92, 0xdf, 0x0c, 0x1b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x53, 0x73, + 0xbd, 0x17, 0x02, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.