From 88b9c92c6cfb559470f8b6bace299d8272c05bc4 Mon Sep 17 00:00:00 2001 From: Benjamin DENEUX Date: Fri, 3 May 2024 12:11:04 +0200 Subject: [PATCH] refactor(renaming)!: change denom name from uknow to uaxone --- Makefile | 10 ++-- README.md | 2 +- starship/configs/ci.yaml | 4 +- starship/configs/devnet.yaml | 4 +- starship/configs/local.yaml | 4 +- x/logic/predicate/bank_test.go | 102 ++++++++++++++++----------------- x/logic/types/genesis.pb.go | 13 +++-- x/logic/types/params.pb.go | 98 +++++++++++++++---------------- x/logic/types/query.pb.go | 74 ++++++++++++------------ x/logic/types/query.pb.gw.go | 4 +- x/logic/types/tx.pb.go | 12 ++-- x/logic/types/types.pb.go | 54 ++++++++--------- x/mint/types/genesis.pb.go | 11 ++-- x/mint/types/mint.pb.go | 50 ++++++++-------- x/mint/types/query.pb.go | 60 +++++++++---------- x/mint/types/tx.pb.go | 12 ++-- x/vesting/types/tx.pb.go | 90 ++++++++++++++--------------- x/vesting/types/vesting.pb.go | 81 +++++++++++++------------- 18 files changed, 344 insertions(+), 341 deletions(-) diff --git a/Makefile b/Makefile index 90fc903f..2a732d6d 100644 --- a/Makefile +++ b/Makefile @@ -203,7 +203,7 @@ chain-init: build ## Initialize the blockchain with default settings. --chain-id=axone-${CHAIN} \ --home "${CHAIN_HOME}"; \ \ - sed -i $(SED_FLAG) "s/\"stake\"/\"uknow\"/g" "${CHAIN_HOME}/config/genesis.json"; \ + sed -i $(SED_FLAG) "s/\"stake\"/\"uaxone\"/g" "${CHAIN_HOME}/config/genesis.json"; \ \ MNEMONIC_VALIDATOR="island position immense mom cross enemy grab little deputy tray hungry detect state helmet \ tomorrow trap expect admit inhale present vault reveal scene atom"; \ @@ -213,12 +213,12 @@ chain-init: build ## Initialize the blockchain with default settings. --keyring-backend test \ --home "${CHAIN_HOME}"; \ \ - ${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uknow \ + ${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uaxone \ --keyring-backend test \ --home "${CHAIN_HOME}"; \ \ NODE_ID=`${CHAIN_BINARY} tendermint show-node-id --home ${CHAIN_HOME}`; \ - ${CHAIN_BINARY} genesis gentx validator 1000000uknow \ + ${CHAIN_BINARY} genesis gentx validator 1000000uaxone \ --node-id $$NODE_ID \ --chain-id=axone-${CHAIN} \ --keyring-backend test \ @@ -256,7 +256,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th PROPOSAL=${PROPOSAL}; \ if [[ ! -f "$$PROPOSAL" ]]; then \ echo "${COLOR_CYAN} 👩‍🚀 No proposal given ${COLOR_RESET}"; \ - echo '{"messages": [{"@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority": "axone10d07y265gmmuvt4z0w9aw880jnsr700jh7kd2g","plan": {"name": "","time": "0001-01-01T00:00:00Z","height": "10","info": "","upgraded_client_state": null}}],"title": "Software update", "summary": "Update the binary", "metadata": "ipfs://CID","deposit": "1uknow"}' | \ + echo '{"messages": [{"@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority": "axone10d07y265gmmuvt4z0w9aw880jnsr700jh7kd2g","plan": {"name": "","time": "0001-01-01T00:00:00Z","height": "10","info": "","upgraded_client_state": null}}],"title": "Software update", "summary": "Update the binary", "metadata": "ipfs://CID","deposit": "1uaxone"}' | \ jq --arg name "${TO_VERSION}" '.messages[].plan.name = $$name' > ${TARGET_FOLDER}/proposal.json; \ PROPOSAL=${TARGET_FOLDER}/proposal.json; \ fi; \ @@ -276,7 +276,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th -b sync; \ \ sleep 5;\ - $$BINARY_OLD tx gov deposit 1 10000000uknow \ + $$BINARY_OLD tx gov deposit 1 10000000uaxone \ --from validator \ --yes \ --home ${CHAIN_HOME} \ diff --git a/README.md b/README.md index 01968e6b..15c28b7b 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Read more in the [introduction blog post](https://blog.axone.xyz/). For a high-l ## Want to become a validator? -Validators are responsible for securing the axone network. Validator responsibilities include maintaining a functional [node](https://docs.axone.xyz/docs/nodes/run-node) with constant uptime and providing a sufficient amount of $KNOW as stake. In exchange for this service, validators receive block rewards and transaction fees. +Validators are responsible for securing the axone network. Validator responsibilities include maintaining a functional [node](https://docs.axone.xyz/docs/nodes/run-node) with constant uptime and providing a sufficient amount of $AXONE as stake. In exchange for this service, validators receive block rewards and transaction fees. Want to become a validator? 👉 [Checkout the documentation!](https://docs.axone.xyz/docs/nodes/introduction) diff --git a/starship/configs/ci.yaml b/starship/configs/ci.yaml index d8c82708..2c767da7 100644 --- a/starship/configs/ci.yaml +++ b/starship/configs/ci.yaml @@ -6,8 +6,8 @@ chains: home: /root/.axoned binary: axoned prefix: axone - denom: uknow - coins: 100000000000000uknow + denom: uaxone + coins: 100000000000000uaxone hdPath: m/44'/118'/0'/0/0 coinType: 118 repo: https://github.com/axone-protocol/axoned diff --git a/starship/configs/devnet.yaml b/starship/configs/devnet.yaml index 52e88a2e..15bed0f3 100644 --- a/starship/configs/devnet.yaml +++ b/starship/configs/devnet.yaml @@ -6,8 +6,8 @@ chains: home: /root/.axoned binary: axoned prefix: axone - denom: uknow - coins: 100000000000000uknow + denom: uaxone + coins: 100000000000000uaxone hdPath: m/44'/118'/0'/0/0 coinType: 118 repo: https://github.com/axone-protocol/axoned diff --git a/starship/configs/local.yaml b/starship/configs/local.yaml index 9b7cbfc5..efa36cf0 100644 --- a/starship/configs/local.yaml +++ b/starship/configs/local.yaml @@ -6,8 +6,8 @@ chains: home: /root/.axoned binary: axoned prefix: axone - denom: uknow - coins: 100000000000000uknow + denom: uaxone + coins: 100000000000000uaxone hdPath: m/44'/118'/0'/0/0 coinType: 118 repo: https://github.com/axone-protocol/axoned diff --git a/x/logic/predicate/bank_test.go b/x/logic/predicate/bank_test.go index 4f6845a9..dfa7248b 100644 --- a/x/logic/predicate/bank_test.go +++ b/x/logic/predicate/bank_test.go @@ -44,11 +44,11 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(100))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(100))), }, }, query: `bank_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-100]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-100]"}}, }, { balances: []bank.Balance{ @@ -64,17 +64,17 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [X, Y]).`, - wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uknow-420"}}, + wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uaxone-420"}}, }, { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [-(D, A) | _]).`, @@ -84,29 +84,29 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, query: `bank_balances('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', [_, X]).`, - wantResult: []testutil.TermResults{{"X": "uknow-589"}}, + wantResult: []testutil.TermResults{{"X": "uaxone-589"}}, }, { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, program: `bank_balances_has_coin(A, D, V) :- bank_balances(A, R), member(D-V, R).`, - query: `bank_balances_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uknow', V).`, + query: `bank_balances_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uaxone', V).`, wantResult: []testutil.TermResults{{"V": "589"}}, }, { @@ -114,7 +114,7 @@ func TestBank(t *testing.T) { { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", Coins: sdk.NewCoins( - sdk.NewCoin("uknow", math.NewInt(589)), + sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693)), sdk.NewCoin("uband", math.NewInt(4282)), sdk.NewCoin("uakt", math.NewInt(4099)), @@ -131,7 +131,7 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -140,14 +140,14 @@ func TestBank(t *testing.T) { }, query: `bank_balances(Accounts, Balances).`, wantResult: []testutil.TermResults{ - {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "Balances": "[uknow-420]"}, + {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "Balances": "[uaxone-420]"}, {"Accounts": "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", "Balances": "[uatom-589]"}, }, }, { balances: []bank.Balance{}, query: `bank_balances('foo', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-100]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-100]"}}, wantError: fmt.Errorf("error(resource_error(resource_module(bank)),[%s],bank_balances/2)", strings.Join(strings.Split("decoding bech32 failed: invalid bech32 string length 3", ""), ",")), }, @@ -155,17 +155,17 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(1000))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(1000))), }, }, spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(100))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(100))), }, }, query: `bank_spendable_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-100]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-100]"}}, }, { spendableCoins: []bank.Balance{ @@ -181,17 +181,17 @@ func TestBank(t *testing.T) { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_spendable_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [X, Y]).`, - wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uknow-420"}}, + wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uaxone-420"}}, }, { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_spendable_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [-(D, A) | _]).`, @@ -201,29 +201,29 @@ func TestBank(t *testing.T) { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, query: `bank_spendable_balances('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', [_, X]).`, - wantResult: []testutil.TermResults{{"X": "uknow-589"}}, + wantResult: []testutil.TermResults{{"X": "uaxone-589"}}, }, { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, program: `bank_spendable_has_coin(A, D, V) :- bank_spendable_balances(A, R), member(D-V, R).`, - query: `bank_spendable_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uknow', V).`, + query: `bank_spendable_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uaxone', V).`, wantResult: []testutil.TermResults{{"V": "589"}}, }, { @@ -231,7 +231,7 @@ func TestBank(t *testing.T) { { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", Coins: sdk.NewCoins( - sdk.NewCoin("uknow", math.NewInt(589)), + sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693)), sdk.NewCoin("uband", math.NewInt(4282)), sdk.NewCoin("uakt", math.NewInt(4099)), @@ -249,7 +249,7 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(1220))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(1220))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -259,7 +259,7 @@ func TestBank(t *testing.T) { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -268,14 +268,14 @@ func TestBank(t *testing.T) { }, query: `bank_spendable_balances(Accounts, SpendableCoins).`, wantResult: []testutil.TermResults{ - {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "SpendableCoins": "[uknow-420]"}, + {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "SpendableCoins": "[uaxone-420]"}, {"Accounts": "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", "SpendableCoins": "[uatom-589]"}, }, }, { spendableCoins: []bank.Balance{}, query: `bank_spendable_balances('foo', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-100]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-100]"}}, wantError: fmt.Errorf("error(resource_error(resource_module(bank)),[%s],bank_spendable_balances/2)", strings.Join(strings.Split("decoding bech32 failed: invalid bech32 string length 3", ""), ",")), }, @@ -284,23 +284,23 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(1000))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(1000))), }, }, spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(100))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(100))), }, }, lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(900))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(900))), }, }, query: `bank_locked_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-900]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-900]"}}, }, { lockedCoins: []bank.Balance{ @@ -316,17 +316,17 @@ func TestBank(t *testing.T) { lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_locked_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [X, Y]).`, - wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uknow-420"}}, + wantResult: []testutil.TermResults{{"X": "uatom-589", "Y": "uaxone-420"}}, }, { lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(589))), }, }, query: `bank_locked_balances('axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa', [-(D, A) | _]).`, @@ -336,29 +336,29 @@ func TestBank(t *testing.T) { lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, query: `bank_locked_balances('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', [_, X]).`, - wantResult: []testutil.TermResults{{"X": "uknow-589"}}, + wantResult: []testutil.TermResults{{"X": "uaxone-589"}}, }, { lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420)), sdk.NewCoin("uatom", math.NewInt(493))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693))), }, }, program: `bank_locked_has_coin(A, D, V) :- bank_locked_balances(A, R), member(D-V, R).`, - query: `bank_locked_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uknow', V).`, + query: `bank_locked_has_coin('axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep', 'uaxone', V).`, wantResult: []testutil.TermResults{{"V": "589"}}, }, { @@ -366,7 +366,7 @@ func TestBank(t *testing.T) { { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", Coins: sdk.NewCoins( - sdk.NewCoin("uknow", math.NewInt(589)), + sdk.NewCoin("uaxone", math.NewInt(589)), sdk.NewCoin("uatom", math.NewInt(693)), sdk.NewCoin("uband", math.NewInt(4282)), sdk.NewCoin("uakt", math.NewInt(4099)), @@ -384,7 +384,7 @@ func TestBank(t *testing.T) { balances: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(1220))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(1220))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -394,7 +394,7 @@ func TestBank(t *testing.T) { spendableCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(420))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(420))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -404,7 +404,7 @@ func TestBank(t *testing.T) { lockedCoins: []bank.Balance{ { Address: "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", - Coins: sdk.NewCoins(sdk.NewCoin("uknow", math.NewInt(800))), + Coins: sdk.NewCoins(sdk.NewCoin("uaxone", math.NewInt(800))), }, { Address: "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", @@ -413,14 +413,14 @@ func TestBank(t *testing.T) { }, query: `bank_locked_balances(Accounts, LockedCoins).`, wantResult: []testutil.TermResults{ - {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "LockedCoins": "[uknow-800]"}, + {"Accounts": "axone1ffd5wx65l407yvm478cxzlgygw07h79sw4jwpa", "LockedCoins": "[uaxone-800]"}, {"Accounts": "axone1wze8mn5nsgl9qrgazq6a92fvh7m5e6ps372aep", "LockedCoins": "[uatom-7411]"}, }, }, { lockedCoins: []bank.Balance{}, query: `bank_locked_balances('foo', X).`, - wantResult: []testutil.TermResults{{"X": "[uknow-100]"}}, + wantResult: []testutil.TermResults{{"X": "[uaxone-100]"}}, wantError: fmt.Errorf("error(resource_error(resource_module(bank)),[%s],bank_locked_balances/2)", strings.Join(strings.Split("decoding bech32 failed: invalid bech32 string length 3", ""), ",")), }, diff --git a/x/logic/types/genesis.pb.go b/x/logic/types/genesis.pb.go index dcd77782..0b2904e5 100644 --- a/x/logic/types/genesis.pb.go +++ b/x/logic/types/genesis.pb.go @@ -76,7 +76,7 @@ func init() { func init() { proto.RegisterFile("logic/v1beta2/genesis.proto", fileDescriptor_712b71f2a5cb208f) } var fileDescriptor_712b71f2a5cb208f = []byte{ - // 190 bytes of a gzipped FileDescriptorProto + // 196 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xce, 0xc9, 0x4f, 0xcf, 0x4c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x05, 0x4b, 0xea, 0x41, 0x25, 0xa5, 0x44, @@ -84,11 +84,12 @@ var fileDescriptor_712b71f2a5cb208f = []byte{ 0x89, 0x45, 0x89, 0xb9, 0x50, 0x03, 0x94, 0x9c, 0xb9, 0x78, 0xdc, 0x21, 0x26, 0x06, 0x97, 0x24, 0x96, 0xa4, 0x0a, 0x19, 0x73, 0xb1, 0x41, 0xe4, 0x25, 0x18, 0x15, 0x18, 0x35, 0xb8, 0x8d, 0x44, 0xf5, 0x50, 0x6c, 0xd0, 0x0b, 0x00, 0x4b, 0x3a, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0x55, - 0xea, 0x64, 0x7f, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, - 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xaa, 0xe9, 0x99, - 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x89, 0x15, 0xf9, 0x79, 0xa9, 0x10, 0x32, - 0x45, 0xbf, 0x42, 0x1f, 0xe2, 0xa8, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x63, 0x8c, - 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x1b, 0x6f, 0xa0, 0xec, 0x00, 0x00, 0x00, + 0xea, 0xe4, 0x71, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, + 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x7a, 0xe9, 0x99, + 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x89, 0x15, 0xf9, 0x79, 0xa9, 0xba, 0x60, + 0x6b, 0x93, 0xf3, 0x73, 0x20, 0xdc, 0x14, 0xfd, 0x0a, 0x7d, 0x88, 0xeb, 0x4a, 0x2a, 0x0b, 0x52, + 0x8b, 0x93, 0xd8, 0xc0, 0xd2, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1e, 0xa2, 0x99, 0xdd, + 0xf5, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/logic/types/params.pb.go b/x/logic/types/params.pb.go index ad8a0565..3950e0ef 100644 --- a/x/logic/types/params.pb.go +++ b/x/logic/types/params.pb.go @@ -395,55 +395,55 @@ func init() { func init() { proto.RegisterFile("logic/v1beta2/params.proto", fileDescriptor_3af0daa241de0fa3) } var fileDescriptor_3af0daa241de0fa3 = []byte{ - // 754 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0x41, 0x6b, 0xdb, 0x48, - 0x18, 0xb5, 0x6c, 0xe3, 0x5d, 0x8d, 0x49, 0xe2, 0x0c, 0x4e, 0x56, 0xeb, 0xdd, 0xd8, 0x66, 0x60, - 0x21, 0x87, 0xc5, 0x26, 0x59, 0xc8, 0xb2, 0x81, 0x25, 0xa0, 0x2c, 0x09, 0x4b, 0x03, 0x0d, 0x0a, - 0x81, 0xd2, 0x8b, 0x19, 0xcb, 0x13, 0x79, 0x88, 0xe4, 0x11, 0x9a, 0x51, 0x62, 0xe7, 0xd8, 0x43, - 0xcf, 0x3d, 0xf4, 0xd0, 0x43, 0x0f, 0xfd, 0x39, 0x39, 0x95, 0x1c, 0x4b, 0x0f, 0xa6, 0x24, 0xff, - 0x20, 0xbf, 0xa0, 0xcc, 0x68, 0x2c, 0xd9, 0x6a, 0xc0, 0xed, 0xc5, 0x88, 0xef, 0x7d, 0xef, 0x7d, - 0x4f, 0xdf, 0xbc, 0xb1, 0x40, 0xc3, 0x67, 0x1e, 0x75, 0xbb, 0x57, 0x3b, 0x7d, 0x22, 0xf0, 0x6e, - 0x37, 0xc4, 0x11, 0x0e, 0x78, 0x27, 0x8c, 0x98, 0x60, 0x70, 0x45, 0x61, 0x1d, 0x8d, 0x35, 0xea, - 0x1e, 0xf3, 0x98, 0x42, 0xba, 0xf2, 0x29, 0x69, 0x42, 0xaf, 0x8a, 0xa0, 0x72, 0xaa, 0x58, 0xf0, - 0x05, 0xa8, 0xd2, 0x91, 0x20, 0x51, 0x18, 0x11, 0x41, 0x22, 0xcb, 0x68, 0x1b, 0xdb, 0xd5, 0xdd, - 0x46, 0x67, 0x41, 0xa5, 0xf3, 0x7f, 0xd6, 0x61, 0x37, 0x6e, 0xa7, 0xad, 0xc2, 0xe3, 0xb4, 0x05, - 0x27, 0x38, 0xf0, 0xf7, 0xd1, 0x1c, 0x19, 0x39, 0xf3, 0x52, 0xf0, 0x3f, 0x50, 0xf1, 0x69, 0x40, - 0x05, 0xb7, 0x8a, 0x4a, 0x74, 0x23, 0x27, 0x7a, 0xa2, 0x40, 0x7b, 0x43, 0xeb, 0xad, 0x24, 0x7a, - 0x09, 0x05, 0x39, 0x9a, 0x0b, 0x1d, 0x00, 0x3c, 0xcc, 0x7b, 0x21, 0xf3, 0xa9, 0x3b, 0xb1, 0x4a, - 0x4a, 0xc9, 0xca, 0x29, 0x1d, 0x63, 0x7e, 0xaa, 0x70, 0xfb, 0x57, 0x2d, 0xb6, 0x9e, 0x88, 0x65, - 0x4c, 0xe4, 0x98, 0xde, 0xac, 0x6b, 0xbf, 0xfc, 0xee, 0x43, 0xab, 0x80, 0x5e, 0x97, 0x40, 0x25, - 0xf1, 0x00, 0xcf, 0xc0, 0x4f, 0x01, 0x1e, 0xf7, 0x3c, 0xcc, 0xd5, 0x02, 0x4c, 0x7b, 0xff, 0x76, - 0xda, 0x32, 0x3e, 0x4f, 0x5b, 0x9b, 0x2e, 0xe3, 0x01, 0xe3, 0x7c, 0x70, 0xd9, 0xa1, 0xac, 0x1b, - 0x60, 0x31, 0xec, 0x9c, 0xd3, 0x91, 0x78, 0x9c, 0xb6, 0xac, 0x64, 0x82, 0xa6, 0xa1, 0x3f, 0x59, - 0x40, 0x05, 0x09, 0x42, 0x31, 0x71, 0x2a, 0x01, 0x1e, 0x1f, 0x63, 0x0e, 0x4f, 0xc0, 0xcf, 0x12, - 0xe5, 0xf4, 0x86, 0x28, 0xdf, 0xa6, 0xbd, 0xb3, 0x54, 0x75, 0x2d, 0x53, 0x95, 0x3c, 0xe4, 0x48, - 0x5f, 0x67, 0xf4, 0x86, 0x40, 0x17, 0xd4, 0x64, 0x35, 0x22, 0x3c, 0xf6, 0x45, 0xcf, 0x65, 0xf1, - 0x48, 0xa8, 0xbd, 0x9a, 0xf6, 0x3f, 0x4b, 0x55, 0x7f, 0xc9, 0x54, 0xe7, 0xf9, 0xc8, 0x59, 0x0d, - 0xf0, 0xd8, 0x51, 0x95, 0x43, 0x59, 0x80, 0x23, 0x50, 0x97, 0x4d, 0x31, 0x27, 0x51, 0x8f, 0xc5, - 0x22, 0x8c, 0x45, 0x62, 0xbf, 0xac, 0x06, 0xfd, 0xbb, 0x74, 0xd0, 0x6f, 0xd9, 0xa0, 0xbc, 0x06, - 0x72, 0xd6, 0x03, 0x3c, 0x3e, 0xe7, 0x24, 0x7a, 0xae, 0x8a, 0xf2, 0xa5, 0xd4, 0x41, 0x18, 0x68, - 0x0c, 0x2a, 0x47, 0xd4, 0x97, 0x91, 0xd9, 0x03, 0xe6, 0xf5, 0x90, 0x0a, 0xe2, 0x53, 0x2e, 0x2c, - 0xa3, 0x5d, 0xda, 0x36, 0x6d, 0x4b, 0x0e, 0x7d, 0x9c, 0xb6, 0x6a, 0x89, 0x74, 0x0a, 0x23, 0x27, - 0x6b, 0x95, 0xbc, 0xbe, 0x8f, 0xdd, 0x4b, 0xc5, 0x2b, 0x3e, 0xc5, 0x4b, 0x61, 0xe4, 0x64, 0xad, - 0xe8, 0x7d, 0x11, 0x54, 0xe7, 0xb2, 0x0d, 0x07, 0x60, 0x3d, 0x8c, 0xc8, 0x80, 0xba, 0x58, 0x10, - 0xde, 0xbb, 0x50, 0xa6, 0xf4, 0x95, 0xc8, 0xa7, 0x37, 0x71, 0x6c, 0xb7, 0x75, 0xe0, 0x74, 0x1c, - 0xbe, 0x61, 0x23, 0xa7, 0x96, 0xd5, 0xb2, 0xb7, 0xec, 0x33, 0x26, 0xb8, 0x88, 0x70, 0xa8, 0x93, - 0x91, 0x77, 0x3b, 0x83, 0xa5, 0xdb, 0xd9, 0x33, 0xa4, 0xa0, 0x7e, 0x45, 0x23, 0x11, 0x63, 0x5f, - 0x8a, 0x67, 0x06, 0xcb, 0x3f, 0x60, 0x50, 0x11, 0x27, 0x5c, 0x90, 0x20, 0x35, 0x08, 0xb5, 0xe8, - 0x91, 0x84, 0x12, 0x96, 0x3e, 0x98, 0x8f, 0x45, 0x60, 0xa6, 0x77, 0x0b, 0x0e, 0x40, 0xed, 0x9a, - 0x50, 0x6f, 0x28, 0xe8, 0xc8, 0xeb, 0x5d, 0x60, 0x57, 0xb0, 0x48, 0xdf, 0x96, 0xef, 0x4e, 0x60, - 0x9e, 0x8f, 0x9c, 0xb5, 0xb4, 0x74, 0xa4, 0x2a, 0x30, 0x06, 0x9b, 0x03, 0x72, 0x81, 0x65, 0x48, - 0xd3, 0xc5, 0xf5, 0x5c, 0xc6, 0x67, 0x69, 0x3f, 0x58, 0x3a, 0x6b, 0x2b, 0x99, 0xf5, 0xb4, 0x0a, - 0x72, 0xea, 0x1a, 0x38, 0x9d, 0xd5, 0x0f, 0x19, 0x17, 0x70, 0x00, 0xd6, 0x16, 0x1b, 0xb9, 0x55, - 0x6a, 0x97, 0xb6, 0xab, 0xbb, 0xbf, 0xe7, 0xd6, 0xba, 0x40, 0xb3, 0xb7, 0xf4, 0x76, 0x37, 0x72, - 0xc7, 0xaf, 0x67, 0xad, 0x86, 0xf3, 0xdd, 0x1c, 0xbd, 0x35, 0xc0, 0xca, 0xe2, 0xdc, 0x3d, 0x60, - 0xa6, 0x3d, 0x7a, 0x9b, 0xb9, 0x2c, 0xa4, 0x30, 0x72, 0xb2, 0x56, 0xf8, 0x0c, 0x94, 0xe7, 0x96, - 0xf2, 0xf7, 0xd2, 0xa5, 0x68, 0x83, 0xca, 0xd6, 0xdc, 0x7f, 0x95, 0x12, 0xb1, 0x0f, 0x6e, 0xef, - 0x9b, 0xc6, 0xdd, 0x7d, 0xd3, 0xf8, 0x72, 0xdf, 0x34, 0xde, 0x3c, 0x34, 0x0b, 0x77, 0x0f, 0xcd, - 0xc2, 0xa7, 0x87, 0x66, 0xe1, 0xe5, 0x1f, 0x1e, 0x15, 0xc3, 0xb8, 0xdf, 0x71, 0x59, 0xd0, 0xc5, - 0x63, 0x36, 0x22, 0xc9, 0xef, 0xa0, 0x3b, 0xee, 0x26, 0xdf, 0x20, 0x31, 0x09, 0x09, 0xef, 0x57, - 0xd4, 0x67, 0xe5, 0xaf, 0xaf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x6d, 0x96, 0x71, 0x99, 0x06, - 0x00, 0x00, + // 756 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0xc1, 0x6a, 0xdb, 0x4a, + 0x14, 0xb5, 0x6c, 0xe3, 0xf7, 0x34, 0x26, 0x89, 0x33, 0x38, 0x79, 0x7a, 0x7e, 0x2f, 0xb6, 0x99, + 0x55, 0x16, 0xad, 0x4c, 0x52, 0x48, 0x69, 0xa0, 0x14, 0x94, 0x92, 0xb4, 0x34, 0xd0, 0xa0, 0x10, + 0x28, 0xdd, 0x98, 0xb1, 0x3c, 0x91, 0x87, 0x48, 0x1e, 0xa1, 0x19, 0x25, 0x76, 0x96, 0x5d, 0x74, + 0xdd, 0x45, 0x17, 0x5d, 0x74, 0xd1, 0xcf, 0xc9, 0xaa, 0x64, 0x59, 0xba, 0x30, 0x25, 0xf9, 0x83, + 0x7c, 0x41, 0xd1, 0x68, 0x2c, 0xd9, 0x6a, 0xc0, 0xed, 0x4e, 0xbe, 0xe7, 0x9e, 0x73, 0x8f, 0xee, + 0x9c, 0xb1, 0x40, 0xc3, 0x63, 0x2e, 0x75, 0x3a, 0xe7, 0x5b, 0x3d, 0x22, 0xf0, 0x76, 0x27, 0xc0, + 0x21, 0xf6, 0xb9, 0x19, 0x84, 0x4c, 0x30, 0xb8, 0x24, 0x31, 0x53, 0x61, 0x8d, 0xba, 0xcb, 0x5c, + 0x26, 0x91, 0x4e, 0xfc, 0x94, 0x34, 0xa1, 0x77, 0x45, 0x50, 0x39, 0x92, 0x2c, 0xf8, 0x06, 0x54, + 0xe9, 0x50, 0x90, 0x30, 0x08, 0x89, 0x20, 0xa1, 0xa1, 0xb5, 0xb5, 0xcd, 0xea, 0x76, 0xc3, 0x9c, + 0x53, 0x31, 0x5f, 0x66, 0x1d, 0x56, 0xe3, 0x6a, 0xd2, 0x2a, 0xdc, 0x4d, 0x5a, 0x70, 0x8c, 0x7d, + 0x6f, 0x17, 0xcd, 0x90, 0x91, 0x3d, 0x2b, 0x05, 0x9f, 0x83, 0x8a, 0x47, 0x7d, 0x2a, 0xb8, 0x51, + 0x94, 0xa2, 0x6b, 0x39, 0xd1, 0x43, 0x09, 0x5a, 0x6b, 0x4a, 0x6f, 0x29, 0xd1, 0x4b, 0x28, 0xc8, + 0x56, 0x5c, 0x68, 0x03, 0xe0, 0x62, 0xde, 0x0d, 0x98, 0x47, 0x9d, 0xb1, 0x51, 0x92, 0x4a, 0x46, + 0x4e, 0xe9, 0x00, 0xf3, 0x23, 0x89, 0x5b, 0xff, 0x2a, 0xb1, 0xd5, 0x44, 0x2c, 0x63, 0x22, 0x5b, + 0x77, 0xa7, 0x5d, 0xbb, 0xe5, 0x4f, 0x5f, 0x5a, 0x05, 0xf4, 0xbe, 0x04, 0x2a, 0x89, 0x07, 0x78, + 0x0c, 0xfe, 0xf2, 0xf1, 0xa8, 0xeb, 0x62, 0x2e, 0x17, 0xa0, 0x5b, 0xbb, 0x57, 0x93, 0x96, 0xf6, + 0x7d, 0xd2, 0x5a, 0x77, 0x18, 0xf7, 0x19, 0xe7, 0xfd, 0x33, 0x93, 0xb2, 0x8e, 0x8f, 0xc5, 0xc0, + 0x3c, 0xa1, 0x43, 0x71, 0x37, 0x69, 0x19, 0xc9, 0x04, 0x45, 0x43, 0x0f, 0x98, 0x4f, 0x05, 0xf1, + 0x03, 0x31, 0xb6, 0x2b, 0x3e, 0x1e, 0x1d, 0x60, 0x0e, 0x0f, 0xc1, 0xdf, 0x31, 0xca, 0xe9, 0x25, + 0x91, 0xbe, 0x75, 0x6b, 0x6b, 0xa1, 0xea, 0x4a, 0xa6, 0x1a, 0xf3, 0x90, 0x1d, 0xfb, 0x3a, 0xa6, + 0x97, 0x04, 0x3a, 0xa0, 0x16, 0x57, 0x43, 0xc2, 0x23, 0x4f, 0x74, 0x1d, 0x16, 0x0d, 0x85, 0xdc, + 0xab, 0x6e, 0x3d, 0x59, 0xa8, 0xfa, 0x4f, 0xa6, 0x3a, 0xcb, 0x47, 0xf6, 0xb2, 0x8f, 0x47, 0xb6, + 0xac, 0xec, 0xc5, 0x05, 0x38, 0x04, 0xf5, 0xb8, 0x29, 0xe2, 0x24, 0xec, 0xb2, 0x48, 0x04, 0x91, + 0x48, 0xec, 0x97, 0xe5, 0xa0, 0xa7, 0x0b, 0x07, 0xfd, 0x97, 0x0d, 0xca, 0x6b, 0x20, 0x7b, 0xd5, + 0xc7, 0xa3, 0x13, 0x4e, 0xc2, 0xd7, 0xb2, 0x18, 0xbf, 0x94, 0x3c, 0x08, 0x0d, 0x8d, 0x40, 0x65, + 0x9f, 0x7a, 0x71, 0x64, 0x76, 0x80, 0x7e, 0x31, 0xa0, 0x82, 0x78, 0x94, 0x0b, 0x43, 0x6b, 0x97, + 0x36, 0x75, 0xcb, 0x88, 0x87, 0xde, 0x4d, 0x5a, 0xb5, 0x44, 0x3a, 0x85, 0x91, 0x9d, 0xb5, 0xc6, + 0xbc, 0x9e, 0x87, 0x9d, 0x33, 0xc9, 0x2b, 0xde, 0xc7, 0x4b, 0x61, 0x64, 0x67, 0xad, 0xe8, 0x73, + 0x11, 0x54, 0x67, 0xb2, 0x0d, 0xfb, 0x60, 0x35, 0x08, 0x49, 0x9f, 0x3a, 0x58, 0x10, 0xde, 0x3d, + 0x95, 0xa6, 0xd4, 0x95, 0xc8, 0xa7, 0x37, 0x71, 0x6c, 0xb5, 0x55, 0xe0, 0x54, 0x1c, 0x7e, 0x61, + 0x23, 0xbb, 0x96, 0xd5, 0xb2, 0xb7, 0xec, 0x31, 0x26, 0xb8, 0x08, 0x71, 0xa0, 0x92, 0x91, 0x77, + 0x3b, 0x85, 0x63, 0xb7, 0xd3, 0x67, 0x48, 0x41, 0xfd, 0x9c, 0x86, 0x22, 0xc2, 0x5e, 0x2c, 0x9e, + 0x19, 0x2c, 0xff, 0x81, 0x41, 0x49, 0x1c, 0x73, 0x41, 0xfc, 0xd4, 0x20, 0x54, 0xa2, 0xfb, 0x31, + 0x94, 0xb0, 0xd4, 0xc1, 0x7c, 0x2d, 0x02, 0x3d, 0xbd, 0x5b, 0xb0, 0x0f, 0x6a, 0x17, 0x84, 0xba, + 0x03, 0x41, 0x87, 0x6e, 0xf7, 0x14, 0x3b, 0x82, 0x85, 0xea, 0xb6, 0xfc, 0x76, 0x02, 0xf3, 0x7c, + 0x64, 0xaf, 0xa4, 0xa5, 0x7d, 0x59, 0x81, 0x11, 0x58, 0xef, 0x93, 0x53, 0x1c, 0x87, 0x34, 0x5d, + 0x5c, 0xd7, 0x61, 0x7c, 0x9a, 0xf6, 0x67, 0x0b, 0x67, 0x6d, 0x24, 0xb3, 0xee, 0x57, 0x41, 0x76, + 0x5d, 0x01, 0x47, 0xd3, 0xfa, 0x1e, 0xe3, 0x02, 0xf6, 0xc1, 0xca, 0x7c, 0x23, 0x37, 0x4a, 0xed, + 0xd2, 0x66, 0x75, 0xfb, 0xff, 0xdc, 0x5a, 0xe7, 0x68, 0xd6, 0x86, 0xda, 0xee, 0x5a, 0xee, 0xf8, + 0xd5, 0xac, 0xe5, 0x60, 0xb6, 0x9b, 0xa3, 0x8f, 0x1a, 0x58, 0x9a, 0x9f, 0xbb, 0x03, 0xf4, 0xb4, + 0x47, 0x6d, 0x33, 0x97, 0x85, 0x14, 0x46, 0x76, 0xd6, 0x0a, 0x5f, 0x81, 0xf2, 0xcc, 0x52, 0x1e, + 0x2f, 0x5c, 0x8a, 0x32, 0x28, 0x6d, 0xcd, 0xfc, 0x57, 0x49, 0x11, 0xeb, 0xc5, 0xd5, 0x4d, 0x53, + 0xbb, 0xbe, 0x69, 0x6a, 0x3f, 0x6e, 0x9a, 0xda, 0x87, 0xdb, 0x66, 0xe1, 0xfa, 0xb6, 0x59, 0xf8, + 0x76, 0xdb, 0x2c, 0xbc, 0x35, 0x5d, 0x2a, 0x06, 0x51, 0xcf, 0x74, 0x98, 0xdf, 0xc1, 0x23, 0x36, + 0x24, 0x0f, 0xe5, 0x07, 0xc4, 0x61, 0x5e, 0xf2, 0xb3, 0xdf, 0x19, 0x75, 0x92, 0x8f, 0x91, 0x18, + 0x07, 0x84, 0xf7, 0x2a, 0x12, 0x7e, 0xf4, 0x33, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x71, 0xc9, 0x6e, + 0xa2, 0x06, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/logic/types/query.pb.go b/x/logic/types/query.pb.go index 54456f86..7952e16d 100644 --- a/x/logic/types/query.pb.go +++ b/x/logic/types/query.pb.go @@ -256,43 +256,43 @@ func init() { func init() { proto.RegisterFile("logic/v1beta2/query.proto", fileDescriptor_008a54e610b23239) } var fileDescriptor_008a54e610b23239 = []byte{ - // 567 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0x8e, 0xd3, 0x34, 0xc0, 0x15, 0x96, 0x13, 0xe4, 0x87, 0x1b, 0x7c, 0x95, 0xa5, 0xa2, 0x22, - 0x21, 0x1b, 0x52, 0x09, 0x55, 0x5d, 0x50, 0x3c, 0x32, 0x14, 0x28, 0xea, 0xc2, 0x52, 0x5d, 0x92, - 0xd3, 0xe5, 0x14, 0xdb, 0xe7, 0xfa, 0xce, 0xa5, 0x19, 0x61, 0x63, 0x43, 0x62, 0x61, 0x41, 0xe2, - 0xcf, 0xc9, 0x58, 0x89, 0xa5, 0x62, 0xb0, 0x50, 0xc2, 0x5f, 0xe0, 0xbf, 0x00, 0xe5, 0xce, 0x51, - 0xec, 0xb6, 0x40, 0x97, 0x28, 0x7a, 0xdf, 0xfb, 0xbe, 0xef, 0xbd, 0xcf, 0xef, 0x40, 0xdb, 0xe7, - 0x94, 0x0d, 0xdc, 0xd3, 0x67, 0x7d, 0x22, 0x71, 0xd7, 0x3d, 0x49, 0x48, 0x3c, 0x71, 0xa2, 0x98, - 0x4b, 0x0e, 0xef, 0x29, 0xc8, 0xc9, 0x21, 0xf3, 0x3e, 0xe5, 0x94, 0x2b, 0xc4, 0x5d, 0xfc, 0xd3, - 0x4d, 0x66, 0x87, 0x72, 0x4e, 0x7d, 0xe2, 0xe2, 0x88, 0xb9, 0x38, 0x0c, 0xb9, 0xc4, 0x92, 0xf1, - 0x50, 0xe4, 0xa8, 0x59, 0x56, 0x8f, 0x70, 0x8c, 0x83, 0x25, 0x76, 0xc9, 0x59, 0x4e, 0x22, 0x92, - 0x43, 0xf6, 0x26, 0x68, 0xbf, 0x59, 0x0c, 0xf2, 0x96, 0xc4, 0xa7, 0x6c, 0x40, 0x5e, 0x2b, 0xda, - 0x21, 0x39, 0x49, 0x88, 0x90, 0xb6, 0x0f, 0xcc, 0xeb, 0x40, 0x11, 0xf1, 0x50, 0x10, 0x78, 0x00, - 0xea, 0xda, 0xa5, 0x65, 0x6c, 0x19, 0x3b, 0x1b, 0xdd, 0x07, 0x4e, 0x69, 0x0b, 0x47, 0xb7, 0x7b, - 0x68, 0x9a, 0xa2, 0x4a, 0x96, 0xa2, 0xe6, 0x04, 0x07, 0xfe, 0xbe, 0xad, 0x29, 0xf6, 0x13, 0x1e, - 0x30, 0x49, 0x82, 0x48, 0x4e, 0x0e, 0x73, 0x15, 0xfb, 0xc2, 0x00, 0x8d, 0xa2, 0x5d, 0x4f, 0x8c, - 0xf3, 0x41, 0xe0, 0x73, 0x70, 0x2b, 0x8a, 0x39, 0x8d, 0x71, 0xa0, 0xbc, 0xee, 0x78, 0x9d, 0x2c, - 0x45, 0xad, 0x5c, 0x50, 0x03, 0x45, 0xc5, 0x65, 0x33, 0x7c, 0x0a, 0xd6, 0x55, 0xcc, 0xad, 0xaa, - 0x62, 0x99, 0x59, 0x8a, 0x1a, 0x9a, 0xa5, 0xca, 0x45, 0x8e, 0x6e, 0x84, 0x07, 0x60, 0xdd, 0x67, - 0x01, 0x93, 0xad, 0x35, 0xc5, 0xd8, 0x9b, 0xa6, 0xc8, 0xf8, 0x99, 0xa2, 0xc6, 0x80, 0x8b, 0x80, - 0x0b, 0x31, 0x1c, 0x3b, 0x8c, 0xbb, 0x01, 0x96, 0x23, 0xe7, 0x88, 0x85, 0x72, 0xa5, 0xa7, 0x48, - 0x25, 0x3d, 0x55, 0xd9, 0xaf, 0x7d, 0xfd, 0x8e, 0x0c, 0xfb, 0x5b, 0x15, 0x34, 0xaf, 0xac, 0x96, - 0xc7, 0xb8, 0x0b, 0xea, 0x23, 0xc2, 0xe8, 0x48, 0xaa, 0xd5, 0x6a, 0xde, 0xe6, 0x2a, 0x2b, 0x5d, - 0x2f, 0x65, 0xa5, 0x4b, 0x70, 0x0f, 0xdc, 0xa6, 0x58, 0x1c, 0x27, 0x82, 0x0c, 0xd5, 0x6e, 0x35, - 0xef, 0x61, 0x96, 0xa2, 0xb6, 0xa6, 0x2d, 0x91, 0x52, 0x24, 0x14, 0x8b, 0x23, 0x41, 0x86, 0xf0, - 0x25, 0xa8, 0xe3, 0x50, 0xbc, 0x27, 0xb1, 0xda, 0xf0, 0xea, 0x57, 0xeb, 0x29, 0xb0, 0x38, 0x85, - 0x6e, 0x2f, 0x4d, 0xa1, 0x4b, 0xb0, 0x07, 0x36, 0x12, 0x41, 0xe2, 0x63, 0x9e, 0xc8, 0x28, 0x91, - 0xad, 0x9a, 0x8a, 0x6c, 0x2b, 0x4b, 0x51, 0x47, 0x33, 0x0b, 0x60, 0x91, 0x0e, 0x16, 0xf5, 0x57, - 0xaa, 0xac, 0xf3, 0xe9, 0x7e, 0xaa, 0x82, 0xbb, 0xc5, 0x7c, 0xe0, 0x07, 0x03, 0xd4, 0xf5, 0xfd, - 0xc0, 0x9d, 0x4b, 0x03, 0xfe, 0xf5, 0x5c, 0xcd, 0xc7, 0x37, 0xe8, 0xd4, 0xa1, 0xdb, 0xf6, 0xc7, - 0x1f, 0xbf, 0xbf, 0x54, 0x3b, 0xd0, 0x74, 0xf1, 0x19, 0x0f, 0x89, 0xfe, 0x1d, 0xba, 0xfa, 0x9d, - 0xe8, 0x7b, 0x84, 0x09, 0x58, 0xeb, 0x89, 0x31, 0xdc, 0xfe, 0x87, 0xea, 0xea, 0x44, 0xcd, 0x47, - 0xff, 0x6b, 0xcb, 0x9d, 0x91, 0x72, 0x6e, 0xc3, 0xe6, 0x75, 0xce, 0x58, 0x8c, 0xbd, 0x17, 0xd3, - 0x99, 0x65, 0x9c, 0xcf, 0x2c, 0xe3, 0xd7, 0xcc, 0x32, 0x3e, 0xcf, 0xad, 0xca, 0xf9, 0xdc, 0xaa, - 0x5c, 0xcc, 0xad, 0xca, 0xbb, 0x6d, 0xca, 0xe4, 0x28, 0xe9, 0x3b, 0x03, 0x1e, 0x94, 0xc9, 0x67, - 0x39, 0x5d, 0x3d, 0xec, 0x7e, 0x5d, 0xbd, 0xec, 0xdd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb4, - 0x04, 0x6e, 0x00, 0x70, 0x04, 0x00, 0x00, + // 574 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0x8e, 0xd3, 0x34, 0xc0, 0x15, 0x96, 0x13, 0xb4, 0x89, 0x1b, 0xec, 0xc8, 0xa8, 0x28, 0x08, + 0xb0, 0x21, 0x95, 0x50, 0xd5, 0x2d, 0x99, 0x10, 0x43, 0x81, 0xa2, 0x2e, 0x2c, 0xd5, 0x25, 0x39, + 0x39, 0xa7, 0xd8, 0x3e, 0xd7, 0x77, 0x2e, 0xcd, 0xc2, 0xc0, 0xc8, 0x84, 0xc4, 0x82, 0x84, 0x90, + 0xf8, 0x39, 0x19, 0x2b, 0xb1, 0x54, 0x0c, 0x16, 0x4a, 0xf8, 0x05, 0xfe, 0x05, 0x28, 0xef, 0x1c, + 0xc5, 0x6e, 0x69, 0x61, 0x4b, 0xde, 0xf7, 0xbe, 0xef, 0x7d, 0xef, 0xf3, 0x3b, 0x54, 0xf7, 0xb8, + 0xcb, 0xfa, 0xce, 0xf1, 0xd3, 0x1e, 0x95, 0xa4, 0xed, 0x1c, 0xc5, 0x34, 0x1a, 0xdb, 0x61, 0xc4, + 0x25, 0xc7, 0xb7, 0x00, 0xb2, 0x33, 0x48, 0xbf, 0xed, 0x72, 0x97, 0x03, 0xe2, 0xcc, 0x7f, 0xa9, + 0x26, 0xbd, 0xe1, 0x72, 0xee, 0x7a, 0xd4, 0x21, 0x21, 0x73, 0x48, 0x10, 0x70, 0x49, 0x24, 0xe3, + 0x81, 0xc8, 0x50, 0xbd, 0xa8, 0x1e, 0x92, 0x88, 0xf8, 0x0b, 0xec, 0xdc, 0x64, 0x39, 0x0e, 0x69, + 0x06, 0x59, 0x9b, 0xa8, 0xfe, 0x7a, 0x6e, 0xe4, 0x0d, 0x8d, 0x8e, 0x59, 0x9f, 0xbe, 0x02, 0xda, + 0x3e, 0x3d, 0x8a, 0xa9, 0x90, 0x96, 0x87, 0xf4, 0xbf, 0x81, 0x22, 0xe4, 0x81, 0xa0, 0x78, 0x0f, + 0x55, 0xd5, 0x94, 0x9a, 0xd6, 0xd4, 0x5a, 0x6b, 0xed, 0x3b, 0x76, 0x61, 0x0b, 0x5b, 0xb5, 0x77, + 0xcd, 0x49, 0x62, 0x96, 0xd2, 0xc4, 0xdc, 0x18, 0x13, 0xdf, 0xdb, 0xb5, 0x14, 0xc5, 0x7a, 0xc4, + 0x7d, 0x26, 0xa9, 0x1f, 0xca, 0xf1, 0x7e, 0xa6, 0x62, 0x9d, 0x69, 0x68, 0x3d, 0x3f, 0xae, 0x23, + 0x46, 0x99, 0x11, 0xfc, 0x0c, 0x5d, 0x0b, 0x23, 0xee, 0x46, 0xc4, 0x87, 0x59, 0x37, 0xba, 0x8d, + 0x34, 0x31, 0x6b, 0x99, 0xa0, 0x02, 0xf2, 0x8a, 0x8b, 0x66, 0xfc, 0x04, 0xad, 0x42, 0xcc, 0xb5, + 0x32, 0xb0, 0xf4, 0x34, 0x31, 0xd7, 0x15, 0x0b, 0xca, 0x79, 0x8e, 0x6a, 0xc4, 0x7b, 0x68, 0xd5, + 0x63, 0x3e, 0x93, 0xb5, 0x15, 0x60, 0xec, 0x4c, 0x12, 0x53, 0xfb, 0x99, 0x98, 0xeb, 0x7d, 0x2e, + 0x7c, 0x2e, 0xc4, 0x60, 0x64, 0x33, 0xee, 0xf8, 0x44, 0x0e, 0xed, 0x03, 0x16, 0xc8, 0xa5, 0x1e, + 0x90, 0x0a, 0x7a, 0x50, 0xd9, 0xad, 0x7c, 0xf9, 0x6e, 0x6a, 0xd6, 0xb7, 0x32, 0xda, 0xb8, 0xb0, + 0x5a, 0x16, 0xe3, 0x36, 0xaa, 0x0e, 0x29, 0x73, 0x87, 0x12, 0x56, 0xab, 0x74, 0x37, 0x97, 0x59, + 0xa9, 0x7a, 0x21, 0x2b, 0x55, 0xc2, 0x3b, 0xe8, 0xba, 0x4b, 0xc4, 0x61, 0x2c, 0xe8, 0x00, 0x76, + 0xab, 0x74, 0xef, 0xa6, 0x89, 0x59, 0x57, 0xb4, 0x05, 0x52, 0x88, 0xc4, 0x25, 0xe2, 0x40, 0xd0, + 0x01, 0x7e, 0x81, 0xaa, 0x24, 0x10, 0xef, 0x68, 0x04, 0x1b, 0x5e, 0xfc, 0x6a, 0x1d, 0x00, 0xf3, + 0x2e, 0x54, 0x7b, 0xc1, 0x85, 0x2a, 0xe1, 0x0e, 0x5a, 0x8b, 0x05, 0x8d, 0x0e, 0x79, 0x2c, 0xc3, + 0x58, 0xd6, 0x2a, 0x10, 0x59, 0x33, 0x4d, 0xcc, 0x86, 0x62, 0xe6, 0xc0, 0x3c, 0x1d, 0xcd, 0xeb, + 0x2f, 0xa1, 0xac, 0xf2, 0x69, 0x7f, 0x2d, 0xa3, 0x9b, 0xf9, 0x7c, 0xf0, 0x47, 0x0d, 0x55, 0xd5, + 0xfd, 0xe0, 0xd6, 0x39, 0x83, 0x97, 0x9e, 0xab, 0xfe, 0xe0, 0x3f, 0x3a, 0x55, 0xe8, 0xd6, 0xc3, + 0x0f, 0x3f, 0x7e, 0x7f, 0x2e, 0x6f, 0xe1, 0x7b, 0x0e, 0x39, 0xe1, 0x01, 0x7d, 0x0c, 0x8f, 0xa1, + 0xcf, 0x3d, 0xf5, 0x77, 0xe0, 0xa8, 0x07, 0xa3, 0x0e, 0x13, 0xbf, 0x47, 0x2b, 0x1d, 0x31, 0xc2, + 0x5b, 0x57, 0xc8, 0x2f, 0x6f, 0x55, 0xbf, 0xff, 0xaf, 0xb6, 0xcc, 0x42, 0x0b, 0x2c, 0x58, 0xb8, + 0x79, 0xa5, 0x05, 0x22, 0x46, 0xdd, 0xe7, 0x93, 0xa9, 0xa1, 0x9d, 0x4e, 0x0d, 0xed, 0xd7, 0xd4, + 0xd0, 0x3e, 0xcd, 0x8c, 0xd2, 0xe9, 0xcc, 0x28, 0x9d, 0xcd, 0x8c, 0xd2, 0x5b, 0xdb, 0x65, 0x72, + 0x18, 0xf7, 0xec, 0x3e, 0xf7, 0x2f, 0x51, 0x39, 0xc9, 0x74, 0xe0, 0xcd, 0xf7, 0xaa, 0x00, 0x6f, + 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x11, 0xe0, 0xce, 0x9b, 0x8b, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/logic/types/query.pb.gw.go b/x/logic/types/query.pb.gw.go index 1d7f5467..f0e2f11d 100644 --- a/x/logic/types/query.pb.gw.go +++ b/x/logic/types/query.pb.gw.go @@ -224,9 +224,9 @@ func RegisterQueryServiceHandlerClient(ctx context.Context, mux *runtime.ServeMu } var ( - pattern_QueryService_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"axone", "axoned", "logic", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_QueryService_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"axone-protocol", "axoned", "logic", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_QueryService_Ask_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"axone", "axoned", "logic", "ask"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_QueryService_Ask_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"axone-protocol", "axoned", "logic", "ask"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/logic/types/tx.pb.go b/x/logic/types/tx.pb.go index 9f5d300a..599b1f50 100644 --- a/x/logic/types/tx.pb.go +++ b/x/logic/types/tx.pb.go @@ -132,7 +132,7 @@ func init() { func init() { proto.RegisterFile("logic/v1beta2/tx.proto", fileDescriptor_19bfd5fc1a0735fe) } var fileDescriptor_19bfd5fc1a0735fe = []byte{ - // 314 bytes of a gzipped FileDescriptorProto + // 320 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcb, 0xc9, 0x4f, 0xcf, 0x4c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x05, 0x8b, 0xeb, 0x41, 0xc5, 0xa5, 0xc4, 0x93, 0xf3, 0x8b, 0x73, 0xf3, @@ -147,12 +147,12 @@ var fileDescriptor_19bfd5fc1a0735fe = []byte{ 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x52, 0x2b, 0xbe, 0xa6, 0xe7, 0x1b, 0xb4, 0x10, 0x86, 0x28, 0x49, 0x72, 0x89, 0xa3, 0xb9, 0x27, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0xd5, 0x28, 0x85, 0x8b, 0xcb, 0xb7, 0x38, 0x3d, 0x38, 0xb5, 0xa8, 0x2c, 0x33, 0x39, 0x55, 0x28, 0x8c, 0x8b, 0x07, 0xc5, - 0xd5, 0x72, 0x68, 0xb6, 0xa1, 0x99, 0x22, 0xa5, 0x86, 0x5f, 0x1e, 0x66, 0x8b, 0x93, 0xfd, 0x89, + 0xd5, 0x72, 0x68, 0xb6, 0xa1, 0x99, 0x22, 0xa5, 0x86, 0x5f, 0x1e, 0x66, 0x8b, 0x93, 0xc7, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, - 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xa9, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, - 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0x56, 0xe4, 0xe7, 0xa5, 0x42, 0xc8, 0x14, 0xfd, 0x0a, 0x7d, - 0x48, 0x08, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x43, 0xd6, 0x18, 0x10, 0x00, 0x00, - 0xff, 0xff, 0xb2, 0x2b, 0x3e, 0x9b, 0xe8, 0x01, 0x00, 0x00, + 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, + 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0x56, 0xe4, 0xe7, 0xa5, 0xea, 0x82, 0xc3, 0x30, 0x39, 0x3f, + 0x07, 0xc2, 0x4d, 0xd1, 0xaf, 0xd0, 0x87, 0x04, 0x75, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, + 0x58, 0xda, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x06, 0xfc, 0x7f, 0xed, 0xf1, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/logic/types/types.pb.go b/x/logic/types/types.pb.go index d501fd87..a3c23e75 100644 --- a/x/logic/types/types.pb.go +++ b/x/logic/types/types.pb.go @@ -206,33 +206,33 @@ func init() { func init() { proto.RegisterFile("logic/v1beta2/types.proto", fileDescriptor_f3c73c95465ca7a8) } var fileDescriptor_f3c73c95465ca7a8 = []byte{ - // 407 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x92, 0xb1, 0x8e, 0xd3, 0x30, - 0x1c, 0xc6, 0xe3, 0xeb, 0x5d, 0xaf, 0x67, 0xb8, 0xc5, 0x02, 0x94, 0xbb, 0x0a, 0x3b, 0x8a, 0x04, - 0xea, 0x80, 0x12, 0x51, 0x18, 0xa0, 0x42, 0xaa, 0xc8, 0xce, 0x40, 0xd9, 0x58, 0x50, 0x52, 0xac, - 0xd4, 0x52, 0x12, 0x47, 0xb6, 0x53, 0xda, 0xb7, 0xe8, 0xc8, 0xc8, 0x1b, 0xf0, 0x1a, 0x1d, 0x3b, - 0xc2, 0x12, 0xa1, 0xf6, 0x0d, 0xf2, 0x04, 0xa8, 0x76, 0x4a, 0x1d, 0x96, 0x28, 0xca, 0xf7, 0xff, - 0xbe, 0xfc, 0xbf, 0x9f, 0xfe, 0xf0, 0x2e, 0xe3, 0x29, 0x9b, 0x87, 0xcb, 0x97, 0x09, 0x55, 0xf1, - 0x38, 0x54, 0xeb, 0x92, 0xca, 0xa0, 0x14, 0x5c, 0x71, 0x74, 0xab, 0xa5, 0xa0, 0x95, 0xee, 0x1f, - 0xa5, 0x3c, 0xe5, 0x5a, 0x09, 0x8f, 0x6f, 0x66, 0xc8, 0xdf, 0x00, 0xf8, 0xf0, 0x53, 0x95, 0x48, - 0xc5, 0x54, 0xa5, 0x18, 0x2f, 0xd0, 0x5b, 0x38, 0x58, 0xc6, 0x82, 0xc5, 0x49, 0x46, 0x5d, 0xe0, - 0x81, 0xd1, 0x4d, 0xf4, 0xb4, 0xa9, 0xc9, 0xdd, 0x3a, 0xce, 0xb3, 0x89, 0x7f, 0x52, 0xfc, 0x17, - 0x3c, 0x67, 0x8a, 0xe6, 0xa5, 0x5a, 0xcf, 0xfe, 0x8d, 0xa3, 0x29, 0x84, 0x74, 0x55, 0x0a, 0x2a, - 0x25, 0xe3, 0x85, 0x7b, 0xa1, 0xcd, 0xa4, 0xa9, 0xc9, 0xd0, 0x98, 0xcf, 0x9a, 0x6d, 0xb7, 0x2c, - 0x93, 0xcb, 0xef, 0x3f, 0x08, 0xf0, 0x7f, 0x02, 0xd8, 0x9f, 0x51, 0x59, 0x65, 0x0a, 0xbd, 0x86, - 0x57, 0x54, 0x08, 0x2e, 0xdc, 0x2b, 0x1d, 0x86, 0xb7, 0x35, 0x01, 0x4d, 0x4d, 0x9e, 0xb4, 0x81, - 0x47, 0xc9, 0xce, 0x32, 0xc3, 0x88, 0xc1, 0x5b, 0x69, 0x55, 0x92, 0xee, 0x85, 0xd7, 0x1b, 0x3d, - 0x18, 0x0f, 0x83, 0x0e, 0x90, 0xc0, 0xae, 0x1d, 0x3d, 0xdf, 0xd6, 0xc4, 0x69, 0x6a, 0x82, 0x4d, - 0x74, 0xc7, 0x6f, 0xff, 0xa2, 0x9b, 0xdc, 0x6e, 0xfc, 0x1b, 0xc0, 0xfe, 0xfb, 0x42, 0x7e, 0xa3, - 0x02, 0xbd, 0x81, 0x83, 0x45, 0x2c, 0xbf, 0xe4, 0x5c, 0x50, 0x4d, 0x60, 0x60, 0xe3, 0x3b, 0x29, - 0x76, 0xe0, 0xf5, 0x22, 0x96, 0x1f, 0xb8, 0xa0, 0xe8, 0x1d, 0xbc, 0x39, 0x91, 0x94, 0x6e, 0xcf, - 0xeb, 0x1d, 0xfb, 0x36, 0x35, 0xb9, 0xef, 0x92, 0xef, 0x2c, 0x73, 0x36, 0xa0, 0x8f, 0xf0, 0x5a, - 0x68, 0x66, 0xd2, 0xbd, 0xd4, 0x6d, 0x1f, 0xff, 0xd7, 0xd6, 0x10, 0x8d, 0xbc, 0xb6, 0xa7, 0x6b, - 0x62, 0x5b, 0x4f, 0x67, 0xa1, 0xf6, 0x9b, 0xe9, 0x16, 0x4d, 0xb7, 0x7b, 0x0c, 0x76, 0x7b, 0x0c, - 0xfe, 0xec, 0x31, 0xd8, 0x1c, 0xb0, 0xb3, 0x3b, 0x60, 0xe7, 0xd7, 0x01, 0x3b, 0x9f, 0x9f, 0xa5, - 0x4c, 0x2d, 0xaa, 0x24, 0x98, 0xf3, 0x3c, 0x8c, 0x57, 0xbc, 0xa0, 0xe6, 0xf9, 0x35, 0x5c, 0x85, - 0xe6, 0x28, 0xf5, 0x31, 0x26, 0x7d, 0x7d, 0x68, 0xaf, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0xaf, - 0xe5, 0xc7, 0x03, 0xaa, 0x02, 0x00, 0x00, + // 411 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x92, 0xb1, 0xae, 0xd3, 0x30, + 0x18, 0x85, 0xe3, 0xdb, 0x7b, 0x7b, 0x7b, 0x0d, 0x77, 0xb1, 0x00, 0xe5, 0xb6, 0xc2, 0x8e, 0x32, + 0xa0, 0x0e, 0x90, 0x88, 0xc2, 0x00, 0x15, 0x12, 0x22, 0x13, 0x0b, 0x03, 0x65, 0x63, 0x41, 0x49, + 0xb1, 0x52, 0x4b, 0x49, 0x1c, 0xd9, 0x4e, 0x69, 0xdf, 0xa2, 0x23, 0x23, 0x6f, 0xc0, 0x6b, 0x74, + 0xec, 0x08, 0x4b, 0x84, 0xda, 0x37, 0xc8, 0x13, 0xa0, 0xda, 0x29, 0x75, 0xd8, 0x92, 0x7c, 0xff, + 0x39, 0xf9, 0xcf, 0xd1, 0x0f, 0xef, 0x32, 0x9e, 0xb2, 0x79, 0xb8, 0x7c, 0x9e, 0x50, 0x15, 0x4f, + 0x42, 0xb5, 0x2e, 0xa9, 0x0c, 0x4a, 0xc1, 0x15, 0x47, 0xb7, 0x1a, 0x05, 0x2d, 0x1a, 0x3e, 0x48, + 0x79, 0xca, 0x35, 0x09, 0x8f, 0x4f, 0x66, 0xc8, 0xdf, 0x00, 0x78, 0xff, 0x53, 0x95, 0x48, 0xc5, + 0x54, 0xa5, 0x18, 0x2f, 0xd0, 0x6b, 0x38, 0x58, 0xc6, 0x82, 0xc5, 0x49, 0x46, 0x5d, 0xe0, 0x81, + 0xf1, 0x4d, 0xf4, 0xb8, 0xa9, 0xc9, 0xdd, 0x3a, 0xce, 0xb3, 0xa9, 0x7f, 0x22, 0xfe, 0x53, 0x9e, + 0x33, 0x45, 0xf3, 0x52, 0xad, 0x67, 0xff, 0xc6, 0xd1, 0x5b, 0x08, 0xe9, 0xaa, 0x14, 0x54, 0x4a, + 0xc6, 0x0b, 0xf7, 0x42, 0x8b, 0x49, 0x53, 0x93, 0x91, 0x11, 0x9f, 0x99, 0x2d, 0xb7, 0x24, 0xd3, + 0xcb, 0xef, 0x3f, 0x08, 0xf0, 0x7f, 0x02, 0xd8, 0x9f, 0x51, 0x59, 0x65, 0x0a, 0xbd, 0x84, 0x57, + 0x54, 0x08, 0x2e, 0xdc, 0x2b, 0x6d, 0x86, 0xb7, 0x35, 0x01, 0x4d, 0x4d, 0x1e, 0xb5, 0x86, 0x47, + 0x64, 0x7b, 0x99, 0x61, 0xc4, 0xe0, 0xad, 0xb4, 0x22, 0x49, 0xf7, 0xc2, 0xeb, 0x8d, 0xef, 0x4d, + 0x46, 0x41, 0xa7, 0x90, 0xc0, 0x8e, 0x1d, 0x3d, 0xd9, 0xd6, 0xc4, 0x69, 0x6a, 0x82, 0x8d, 0x75, + 0x47, 0x6f, 0xff, 0xa2, 0xeb, 0xdc, 0x6e, 0xfc, 0x1b, 0xc0, 0xfe, 0xbb, 0x42, 0x7e, 0xa3, 0x02, + 0xbd, 0x82, 0x83, 0x45, 0x2c, 0xbf, 0xe4, 0x5c, 0x50, 0xdd, 0xc0, 0xc0, 0xae, 0xef, 0x44, 0x6c, + 0xc3, 0xeb, 0x45, 0x2c, 0x3f, 0x70, 0x41, 0xd1, 0x1b, 0x78, 0x73, 0x6a, 0x52, 0xba, 0x3d, 0xaf, + 0x77, 0xcc, 0xdb, 0xd4, 0x64, 0xd8, 0x6d, 0xbe, 0xb3, 0xcc, 0x59, 0x80, 0x3e, 0xc2, 0x6b, 0xa1, + 0x3b, 0x93, 0xee, 0xa5, 0x4e, 0xfb, 0xf0, 0xbf, 0xb4, 0xa6, 0xd1, 0xc8, 0x6b, 0x73, 0xba, 0xc6, + 0xb6, 0xd5, 0x74, 0x16, 0x6a, 0xbf, 0x99, 0x6c, 0xd1, 0xfb, 0xed, 0x1e, 0x83, 0xdd, 0x1e, 0x83, + 0x3f, 0x7b, 0x0c, 0x36, 0x07, 0xec, 0xec, 0x0e, 0xd8, 0xf9, 0x75, 0xc0, 0xce, 0xe7, 0x20, 0x65, + 0x6a, 0x51, 0x25, 0xc1, 0x9c, 0xe7, 0x61, 0xbc, 0xe2, 0x05, 0x7d, 0xa6, 0x4f, 0x6a, 0xce, 0x33, + 0xf3, 0xfa, 0x35, 0x5c, 0x85, 0xe6, 0x3a, 0xf5, 0x55, 0x26, 0x7d, 0x8d, 0x5f, 0xfc, 0x0d, 0x00, + 0x00, 0xff, 0xff, 0x01, 0xe7, 0x0f, 0xdf, 0xb3, 0x02, 0x00, 0x00, } func (m *Substitution) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index 43ef1c73..acc6cfe6 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -86,7 +86,7 @@ func init() { func init() { proto.RegisterFile("mint/v1beta1/genesis.proto", fileDescriptor_1dfa75836a5d5f23) } var fileDescriptor_1dfa75836a5d5f23 = []byte{ - // 224 bytes of a gzipped FileDescriptorProto + // 230 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe9, 0x41, 0xe5, 0xa4, 0x04, 0x13, @@ -96,11 +96,12 @@ var fileDescriptor_1dfa75836a5d5f23 = []byte{ 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0xd1, 0x43, 0xb6, 0x51, 0xcf, 0x17, 0x2c, 0xe7, 0xc4, 0x79, 0xe2, 0x9e, 0x3c, 0xc3, 0x8a, 0xe7, 0x1b, 0xb4, 0x18, 0x83, 0xa0, 0xca, 0x41, 0x1a, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0x25, 0x98, 0xb0, 0x69, 0x0c, 0x00, 0xcb, 0xa1, 0x68, - 0x84, 0x28, 0x77, 0xb2, 0x3b, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, - 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x95, + 0x84, 0x28, 0x77, 0x72, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, + 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xdd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xc4, 0x8a, 0xfc, 0xbc, 0x54, - 0x08, 0x99, 0xa2, 0x5f, 0x01, 0xf6, 0x82, 0x7e, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, - 0x27, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x21, 0xd6, 0x3b, 0xd4, 0x37, 0x01, 0x00, 0x00, + 0x5d, 0xb0, 0xa3, 0x93, 0xf3, 0x73, 0x20, 0xdc, 0x14, 0xfd, 0x0a, 0xb0, 0x5f, 0xf4, 0x4b, 0x2a, + 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xb2, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x39, + 0xf0, 0x3d, 0x40, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index a09eaf3f..5e0e6821 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -135,31 +135,31 @@ func init() { func init() { proto.RegisterFile("mint/v1beta1/mint.proto", fileDescriptor_06339c129491fd39) } var fileDescriptor_06339c129491fd39 = []byte{ - // 376 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xcf, 0x4e, 0xea, 0x40, - 0x14, 0x87, 0x3b, 0x5c, 0x2e, 0x09, 0x13, 0xb8, 0x7f, 0x1a, 0x13, 0x2b, 0xc6, 0x42, 0x88, 0x31, - 0x6c, 0x6c, 0x43, 0xdc, 0xb9, 0x70, 0x81, 0x2c, 0x25, 0x12, 0x16, 0x46, 0x5d, 0xd8, 0x4c, 0xcb, - 0x50, 0x26, 0xd0, 0x39, 0xa4, 0x33, 0x90, 0xf2, 0x16, 0x2e, 0x5d, 0xfa, 0x10, 0x6e, 0x7c, 0x03, - 0x96, 0xc4, 0x95, 0x71, 0x81, 0x06, 0x5e, 0xc4, 0xb4, 0x43, 0x4a, 0xe2, 0x4e, 0xe2, 0xa6, 0x39, - 0xe7, 0x77, 0x3a, 0xdf, 0x7c, 0x99, 0x1c, 0xbc, 0x1b, 0x30, 0x2e, 0xed, 0x49, 0xdd, 0xa5, 0x92, - 0xd4, 0xed, 0xb8, 0xb1, 0x46, 0x21, 0x48, 0xd0, 0x0b, 0x49, 0xbd, 0x1e, 0x94, 0xf6, 0x3c, 0x10, - 0x01, 0x08, 0x27, 0x99, 0xd9, 0xaa, 0x51, 0x3f, 0x96, 0x76, 0x7c, 0xf0, 0x41, 0xe5, 0x71, 0xa5, - 0xd2, 0xea, 0x33, 0xc2, 0xb9, 0x16, 0xe3, 0x92, 0x86, 0xfa, 0x25, 0xce, 0x33, 0xde, 0x1b, 0x12, - 0xc9, 0x80, 0x1b, 0xa8, 0x82, 0x6a, 0xf9, 0x46, 0x7d, 0xb6, 0x28, 0x6b, 0x6f, 0x8b, 0xf2, 0xbe, - 0x22, 0x89, 0xee, 0xc0, 0x62, 0x60, 0x07, 0x44, 0xf6, 0xad, 0x0b, 0xea, 0x13, 0x6f, 0xda, 0xa4, - 0xde, 0xcb, 0xd3, 0x31, 0x5e, 0x5f, 0xd4, 0xa4, 0x5e, 0x67, 0xc3, 0xd0, 0xef, 0xf0, 0x7f, 0xc2, - 0xf9, 0x98, 0x0c, 0x63, 0x9d, 0x09, 0x13, 0x0c, 0xb8, 0x30, 0x32, 0xdb, 0x82, 0xff, 0x29, 0x56, - 0x3b, 0x45, 0x55, 0xdf, 0x33, 0x38, 0xd7, 0x26, 0x21, 0x09, 0x84, 0x7e, 0x80, 0x71, 0xfc, 0x0e, - 0x4e, 0x97, 0x72, 0x08, 0x94, 0x7c, 0x27, 0x1f, 0x27, 0xcd, 0x38, 0xd0, 0xaf, 0xf1, 0x9f, 0x54, - 0xcb, 0xf1, 0x80, 0xf6, 0xb6, 0xd7, 0x28, 0xa6, 0xa0, 0x73, 0xa0, 0x3d, 0xfd, 0x08, 0xff, 0x75, - 0x87, 0xe0, 0x0d, 0x84, 0x33, 0xa2, 0xa1, 0x33, 0xa5, 0x24, 0x34, 0x7e, 0x55, 0x50, 0x2d, 0xdb, - 0x29, 0xaa, 0xb8, 0x4d, 0xc3, 0x1b, 0x4a, 0x42, 0xfd, 0x0a, 0x6f, 0x0e, 0x3a, 0x01, 0x89, 0x8c, - 0x6c, 0x2a, 0x80, 0xbe, 0x27, 0x50, 0x48, 0x39, 0x2d, 0x12, 0x7d, 0xe1, 0x32, 0x6e, 0xfc, 0xfe, - 0x01, 0x2e, 0xe3, 0xa7, 0xd9, 0x87, 0xc7, 0xb2, 0xd6, 0x38, 0x9b, 0x2d, 0x4d, 0x34, 0x5f, 0x9a, - 0xe8, 0x63, 0x69, 0xa2, 0xfb, 0x95, 0xa9, 0xcd, 0x57, 0xa6, 0xf6, 0xba, 0x32, 0xb5, 0xdb, 0x43, - 0x9f, 0xc9, 0xfe, 0xd8, 0xb5, 0x3c, 0x08, 0x6c, 0x12, 0x01, 0xa7, 0xea, 0xdb, 0xb5, 0xa3, 0x64, - 0x39, 0x6d, 0x39, 0x1d, 0x51, 0xe1, 0xe6, 0x92, 0x25, 0x3b, 0xf9, 0x0c, 0x00, 0x00, 0xff, 0xff, - 0xaf, 0x0f, 0xfe, 0x22, 0xbe, 0x02, 0x00, 0x00, + // 382 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x4f, 0x6b, 0xe2, 0x40, + 0x18, 0x87, 0x33, 0xae, 0x2b, 0x38, 0xe8, 0xfe, 0x09, 0x0b, 0x9b, 0x75, 0xd9, 0x28, 0x1e, 0x16, + 0x2f, 0x26, 0xc8, 0xde, 0xf6, 0xe8, 0x0a, 0x7b, 0x59, 0x59, 0xf1, 0x50, 0xda, 0x1e, 0x1a, 0x26, + 0xe3, 0x18, 0x07, 0x93, 0x79, 0x25, 0x33, 0x4a, 0xfc, 0x16, 0x3d, 0xf6, 0xd8, 0x0f, 0xd1, 0x4b, + 0xbf, 0x81, 0x47, 0xe9, 0xa9, 0xf4, 0x60, 0x8b, 0x7e, 0x91, 0x92, 0x8c, 0x44, 0xe8, 0xad, 0xd2, + 0xdb, 0xfb, 0xfe, 0xde, 0x99, 0x67, 0x1e, 0x86, 0x17, 0x7f, 0x8d, 0xb8, 0x50, 0xee, 0xa2, 0xe3, + 0x33, 0x45, 0x3a, 0x6e, 0xda, 0x38, 0xb3, 0x18, 0x14, 0x98, 0x95, 0xac, 0xde, 0x0f, 0x6a, 0xdf, + 0x28, 0xc8, 0x08, 0xa4, 0x97, 0xcd, 0x5c, 0xdd, 0xe8, 0x83, 0xb5, 0x2f, 0x01, 0x04, 0xa0, 0xf3, + 0xb4, 0xd2, 0x69, 0xf3, 0x16, 0xe1, 0x52, 0x9f, 0x0b, 0xc5, 0x62, 0xf3, 0x3f, 0x2e, 0x73, 0x31, + 0x0e, 0x89, 0xe2, 0x20, 0x2c, 0xd4, 0x40, 0xad, 0x72, 0xb7, 0xb3, 0xda, 0xd4, 0x8d, 0x87, 0x4d, + 0xfd, 0xbb, 0x26, 0xc9, 0xd1, 0xd4, 0xe1, 0xe0, 0x46, 0x44, 0x4d, 0x9c, 0x7f, 0x2c, 0x20, 0x74, + 0xd9, 0x63, 0xf4, 0xee, 0xa6, 0x8d, 0xf7, 0x0f, 0xf5, 0x18, 0x1d, 0x1e, 0x18, 0xe6, 0x05, 0xfe, + 0x4c, 0x84, 0x98, 0x93, 0x30, 0xd5, 0x59, 0x70, 0xc9, 0x41, 0x48, 0xab, 0x70, 0x2c, 0xf8, 0x93, + 0x66, 0x0d, 0x72, 0x54, 0xf3, 0xb1, 0x80, 0x4b, 0x03, 0x12, 0x93, 0x48, 0x9a, 0x3f, 0x30, 0x4e, + 0xff, 0xc1, 0x1b, 0x31, 0x01, 0x91, 0x96, 0x1f, 0x96, 0xd3, 0xa4, 0x97, 0x06, 0xe6, 0x29, 0xfe, + 0x90, 0x6b, 0x79, 0x14, 0xd8, 0xf8, 0x78, 0x8d, 0x6a, 0x0e, 0xfa, 0x03, 0x6c, 0x6c, 0xfe, 0xc4, + 0x1f, 0xfd, 0x10, 0xe8, 0x54, 0x7a, 0x33, 0x16, 0x7b, 0x4b, 0x46, 0x62, 0xeb, 0x5d, 0x03, 0xb5, + 0x8a, 0xc3, 0xaa, 0x8e, 0x07, 0x2c, 0x3e, 0x63, 0x24, 0x36, 0x4f, 0xf0, 0xe1, 0xa2, 0x17, 0x91, + 0xc4, 0x2a, 0xe6, 0x02, 0xe8, 0x75, 0x02, 0x95, 0x9c, 0xd3, 0x27, 0xc9, 0x0b, 0x2e, 0x17, 0xd6, + 0xfb, 0x37, 0xe0, 0x72, 0xf1, 0xbb, 0x78, 0x75, 0x5d, 0x37, 0xba, 0x7f, 0x57, 0x5b, 0x1b, 0xad, + 0xb7, 0x36, 0x7a, 0xda, 0xda, 0xe8, 0x72, 0x67, 0x1b, 0xeb, 0x9d, 0x6d, 0xdc, 0xef, 0x6c, 0xe3, + 0xbc, 0x1d, 0x70, 0x35, 0x99, 0xfb, 0x0e, 0x85, 0xc8, 0x25, 0x09, 0x08, 0xd6, 0xce, 0xf6, 0x89, + 0x42, 0xa8, 0xdb, 0x91, 0x9b, 0x64, 0x5b, 0xea, 0xaa, 0xe5, 0x8c, 0x49, 0xbf, 0x94, 0x4d, 0x7f, + 0x3d, 0x07, 0x00, 0x00, 0xff, 0xff, 0x31, 0xc5, 0xdb, 0xd7, 0xc7, 0x02, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index 762435a1..b4e116fa 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -281,37 +281,37 @@ func init() { func init() { proto.RegisterFile("mint/v1beta1/query.proto", fileDescriptor_b0718dda172d2cb4) } var fileDescriptor_b0718dda172d2cb4 = []byte{ - // 468 bytes of a gzipped FileDescriptorProto + // 473 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x41, 0x6b, 0x13, 0x41, - 0x18, 0x86, 0xb3, 0x8a, 0x81, 0x8c, 0x3d, 0xb4, 0x63, 0xb4, 0x65, 0xdb, 0x4e, 0xe3, 0xb6, 0x94, - 0x50, 0x61, 0x86, 0xd6, 0x83, 0x37, 0xc1, 0x20, 0x82, 0x20, 0x52, 0x0b, 0x5e, 0xbc, 0xe8, 0x24, - 0x1d, 0xb7, 0x83, 0xd9, 0xf9, 0xb6, 0x3b, 0x93, 0xd0, 0x5c, 0x3c, 0xf8, 0x0b, 0x04, 0x4f, 0xe2, - 0x1f, 0xf0, 0xe8, 0xcf, 0xe8, 0xb1, 0xe0, 0x45, 0x3c, 0x14, 0x49, 0x04, 0xff, 0x86, 0xec, 0xcc, - 0x24, 0xba, 0xdb, 0x6d, 0xd0, 0xcb, 0x32, 0x7c, 0xef, 0x9b, 0xef, 0x79, 0xf9, 0x5e, 0x82, 0x56, - 0x12, 0xa9, 0x0c, 0x1b, 0xee, 0x76, 0x85, 0xe1, 0xbb, 0xec, 0x78, 0x20, 0xb2, 0x11, 0x4d, 0x33, - 0x30, 0x80, 0x17, 0x72, 0x85, 0x7a, 0x25, 0x5c, 0xe2, 0x89, 0x54, 0xc0, 0xec, 0xd7, 0x19, 0xc2, - 0x66, 0x0c, 0x31, 0xd8, 0x27, 0xcb, 0x5f, 0x7e, 0xba, 0x16, 0x03, 0xc4, 0x7d, 0xc1, 0x78, 0x2a, - 0x19, 0x57, 0x0a, 0x0c, 0x37, 0x12, 0x94, 0xf6, 0xea, 0x72, 0x01, 0x67, 0x09, 0x56, 0x88, 0x9a, - 0x08, 0x3f, 0xcb, 0xe1, 0xfb, 0x3c, 0xe3, 0x89, 0x3e, 0x10, 0xc7, 0x03, 0xa1, 0x4d, 0xf4, 0x14, - 0xdd, 0x28, 0x4c, 0x75, 0x0a, 0x4a, 0x0b, 0x7c, 0x0f, 0xd5, 0x53, 0x3b, 0x59, 0x09, 0x5a, 0x41, - 0xfb, 0xfa, 0x5e, 0x93, 0xfe, 0x9d, 0x95, 0x3a, 0x77, 0xa7, 0x71, 0x7a, 0xbe, 0x51, 0xfb, 0xfc, - 0xeb, 0xcb, 0x4e, 0x70, 0xe0, 0xed, 0xd1, 0x32, 0xba, 0x69, 0xf7, 0x3d, 0x56, 0xaf, 0xfb, 0x36, - 0xd7, 0x14, 0xf4, 0x0a, 0xdd, 0x2a, 0x0b, 0x9e, 0xf5, 0x08, 0x35, 0xe4, 0x74, 0x68, 0x71, 0x0b, - 0x9d, 0x76, 0xbe, 0xf8, 0xfb, 0xf9, 0xc6, 0x6a, 0x0f, 0x74, 0x02, 0x5a, 0x1f, 0xbe, 0xa1, 0x12, - 0x58, 0xc2, 0xcd, 0x11, 0x7d, 0x22, 0x62, 0xde, 0x1b, 0x3d, 0x14, 0x3d, 0xc7, 0xfd, 0xf3, 0xd3, - 0x88, 0xa0, 0x35, 0x4b, 0x78, 0xa0, 0xd4, 0x80, 0xf7, 0xf7, 0x33, 0x18, 0x4a, 0x9d, 0x1f, 0x66, - 0x9a, 0x60, 0x88, 0xd6, 0x2f, 0xd1, 0x7d, 0x90, 0xe7, 0x68, 0x89, 0x5b, 0xed, 0x65, 0x3a, 0x13, - 0xff, 0x3b, 0xd0, 0x22, 0x2f, 0xad, 0xdf, 0xfb, 0x78, 0x15, 0x5d, 0xb3, 0x60, 0x9c, 0xa1, 0xba, - 0xbb, 0x1c, 0x6e, 0x15, 0xef, 0x79, 0xb1, 0x98, 0xf0, 0xf6, 0x1c, 0x87, 0xcb, 0x1b, 0x6d, 0xbe, - 0xfb, 0xfa, 0xf3, 0xc3, 0x95, 0x75, 0xbc, 0xca, 0x5c, 0x2a, 0x56, 0xa8, 0xde, 0x15, 0x82, 0xdf, - 0xa2, 0xc6, 0xec, 0xe4, 0x78, 0xb3, 0x62, 0x69, 0xb9, 0xa9, 0x70, 0x6b, 0xbe, 0xc9, 0xc3, 0xb7, - 0x2d, 0xbc, 0x85, 0x49, 0x25, 0x7c, 0xd6, 0x0a, 0xfe, 0x14, 0xa0, 0xc5, 0xf2, 0xc5, 0xf1, 0x4e, - 0x05, 0xe2, 0x92, 0xda, 0xc2, 0x3b, 0xff, 0xe4, 0xf5, 0xa9, 0xa8, 0x4d, 0xd5, 0xc6, 0xdb, 0x95, - 0xa9, 0x2e, 0xb4, 0xdb, 0xb9, 0x7f, 0x3a, 0x26, 0xc1, 0xd9, 0x98, 0x04, 0x3f, 0xc6, 0x24, 0x78, - 0x3f, 0x21, 0xb5, 0xb3, 0x09, 0xa9, 0x7d, 0x9b, 0x90, 0xda, 0x8b, 0xad, 0x58, 0x9a, 0xa3, 0x41, - 0x97, 0xf6, 0x20, 0x61, 0xfc, 0x04, 0x94, 0x70, 0xdf, 0x43, 0x76, 0xe2, 0x76, 0x9a, 0x51, 0x2a, - 0x74, 0xb7, 0x6e, 0xff, 0x5b, 0x77, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x44, 0xfa, 0x87, 0x0f, - 0xe5, 0x03, 0x00, 0x00, + 0x18, 0x86, 0xb3, 0x8a, 0x81, 0x8c, 0x3d, 0xb4, 0x63, 0xb4, 0x65, 0xdb, 0x4e, 0xe3, 0x56, 0x4a, + 0xa8, 0x74, 0x86, 0xd6, 0x83, 0x67, 0x83, 0x28, 0x82, 0x48, 0x2d, 0x78, 0xf1, 0xa2, 0x93, 0xed, + 0xb8, 0x1d, 0xcc, 0xce, 0xb7, 0xdd, 0x99, 0x84, 0xe6, 0xe2, 0xc1, 0x5f, 0x20, 0x78, 0x12, 0xff, + 0x80, 0x47, 0x7f, 0x46, 0x8f, 0x05, 0x2f, 0xe2, 0xa1, 0x48, 0x22, 0xf8, 0x37, 0x64, 0x67, 0x26, + 0xd1, 0x6c, 0xb7, 0xc5, 0x5e, 0xc2, 0xe4, 0x7b, 0xdf, 0x7c, 0xcf, 0xcb, 0xf7, 0x12, 0xb4, 0x94, + 0x4a, 0x65, 0xd8, 0x60, 0xbb, 0x2b, 0x0c, 0xdf, 0x66, 0x87, 0x7d, 0x91, 0x0f, 0x69, 0x96, 0x83, + 0x01, 0x3c, 0x57, 0x28, 0xd4, 0x2b, 0xe1, 0x02, 0x4f, 0xa5, 0x02, 0x66, 0x3f, 0x9d, 0x21, 0x6c, + 0x26, 0x90, 0x80, 0x7d, 0xb2, 0xe2, 0xe5, 0xa7, 0x2b, 0x09, 0x40, 0xd2, 0x13, 0x8c, 0x67, 0x92, + 0x71, 0xa5, 0xc0, 0x70, 0x23, 0x41, 0x69, 0xaf, 0x2e, 0xce, 0xe0, 0x2c, 0xc1, 0x0a, 0x51, 0x13, + 0xe1, 0xe7, 0x05, 0x7c, 0x97, 0xe7, 0x3c, 0xd5, 0x7b, 0xe2, 0xb0, 0x2f, 0xb4, 0x89, 0x9e, 0xa1, + 0x1b, 0x33, 0x53, 0x9d, 0x81, 0xd2, 0x02, 0xdf, 0x47, 0xf5, 0xcc, 0x4e, 0x96, 0x82, 0x56, 0xd0, + 0xbe, 0xbe, 0xd3, 0xa4, 0xff, 0x66, 0xa5, 0xce, 0xdd, 0x69, 0x1c, 0x9f, 0xae, 0xd5, 0xbe, 0xfc, + 0xfe, 0xba, 0x19, 0xec, 0x79, 0x7b, 0xb4, 0x88, 0x6e, 0xda, 0x7d, 0x4f, 0xd4, 0x9b, 0x9e, 0xcd, + 0x35, 0x01, 0xbd, 0x46, 0xb7, 0xca, 0x82, 0x67, 0x3d, 0x42, 0x0d, 0x39, 0x19, 0x5a, 0xdc, 0x5c, + 0xa7, 0x5d, 0x2c, 0xfe, 0x71, 0xba, 0xb6, 0x1c, 0x83, 0x4e, 0x41, 0xeb, 0xfd, 0xb7, 0x54, 0x02, + 0x4b, 0xb9, 0x39, 0xa0, 0x4f, 0x45, 0xc2, 0xe3, 0xe1, 0x43, 0x11, 0x3b, 0xee, 0xdf, 0x9f, 0x46, + 0x04, 0xad, 0x58, 0xc2, 0x03, 0xa5, 0xfa, 0xbc, 0xb7, 0x9b, 0xc3, 0x40, 0xea, 0xe2, 0x30, 0x93, + 0x04, 0x03, 0xb4, 0x7a, 0x8e, 0xee, 0x83, 0xbc, 0x40, 0x0b, 0xdc, 0x6a, 0xaf, 0xb2, 0xa9, 0x78, + 0xe9, 0x40, 0xf3, 0xbc, 0xb4, 0x7e, 0xe7, 0xd3, 0x55, 0x74, 0xcd, 0x82, 0x71, 0x8e, 0xea, 0xee, + 0x72, 0xb8, 0x35, 0x7b, 0xcf, 0xb3, 0xc5, 0x84, 0xb7, 0x2f, 0x70, 0xb8, 0xbc, 0xd1, 0xfa, 0xfb, + 0x6f, 0xbf, 0x3e, 0x5e, 0x59, 0xc5, 0xcb, 0xcc, 0xa5, 0x62, 0x33, 0xd5, 0xbb, 0x42, 0xf0, 0x3b, + 0xd4, 0x98, 0x9e, 0x1c, 0xaf, 0x57, 0x2c, 0x2d, 0x37, 0x15, 0xde, 0xb9, 0xd8, 0xe4, 0xe1, 0x1b, + 0x16, 0xde, 0xc2, 0xa4, 0x12, 0x3e, 0x6d, 0x05, 0x7f, 0x0e, 0xd0, 0x7c, 0xf9, 0xe2, 0x78, 0xb3, + 0x02, 0x71, 0x4e, 0x6d, 0xe1, 0xdd, 0xff, 0xf2, 0xfa, 0x54, 0xd4, 0xa6, 0x6a, 0xe3, 0x8d, 0xca, + 0x54, 0x67, 0xda, 0xed, 0x3c, 0x3e, 0x1e, 0x91, 0xe0, 0x64, 0x44, 0x82, 0x9f, 0x23, 0x12, 0x7c, + 0x18, 0x93, 0xda, 0xc9, 0x98, 0xd4, 0xbe, 0x8f, 0x49, 0xed, 0xe5, 0x56, 0x22, 0xcd, 0x41, 0xbf, + 0x4b, 0x63, 0x48, 0x19, 0x3f, 0x02, 0x25, 0xb6, 0xec, 0xdf, 0x28, 0x86, 0x9e, 0xfb, 0xba, 0xcf, + 0x8e, 0xdc, 0x72, 0x33, 0xcc, 0x84, 0xee, 0xd6, 0xad, 0x7a, 0xef, 0x4f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x39, 0x43, 0xf1, 0x1a, 0xee, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/mint/types/tx.pb.go b/x/mint/types/tx.pb.go index 3be76c2e..8d1af402 100644 --- a/x/mint/types/tx.pb.go +++ b/x/mint/types/tx.pb.go @@ -138,7 +138,7 @@ func init() { func init() { proto.RegisterFile("mint/v1beta1/tx.proto", fileDescriptor_79e41a47c726ee2e) } var fileDescriptor_79e41a47c726ee2e = []byte{ - // 344 bytes of a gzipped FileDescriptorProto + // 350 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcd, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0x09, 0xeb, 0x41, 0x85, 0xa5, 0x04, 0x13, 0x73, 0x33, 0xf3, 0xf2, 0xf5, @@ -155,12 +155,12 @@ var fileDescriptor_79e41a47c726ee2e = []byte{ 0x0d, 0x5a, 0x8a, 0x10, 0xcb, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0xc0, 0x0e, 0xd6, 0x47, 0x73, 0xa6, 0x92, 0x24, 0x97, 0x38, 0x9a, 0x50, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x51, 0x12, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x08, 0x17, 0x0f, 0x8a, 0xc7, 0x64, 0x51, 0x1d, 0x84, - 0xa6, 0x5b, 0x4a, 0x15, 0xaf, 0x34, 0xcc, 0x70, 0x29, 0xd6, 0x06, 0x90, 0xe3, 0x9d, 0xec, 0x4e, + 0xa6, 0x5b, 0x4a, 0x15, 0xaf, 0x34, 0xcc, 0x70, 0x29, 0xd6, 0x06, 0x90, 0xe3, 0x9d, 0xdc, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, - 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x25, 0x3d, 0xb3, 0x24, 0xa3, 0x34, - 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0xb1, 0x22, 0x3f, 0x2f, 0x15, 0x42, 0xa6, 0xc0, 0x3c, 0x52, - 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x8e, 0x00, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xe3, 0x2f, 0x2e, 0xf1, 0x1d, 0x02, 0x00, 0x00, + 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, + 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0xb1, 0x22, 0x3f, 0x2f, 0x55, 0x17, 0x1c, 0xd6, 0xc9, 0xf9, + 0x39, 0x10, 0x6e, 0x0a, 0xcc, 0x47, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x59, 0x63, + 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb0, 0x3a, 0x62, 0x29, 0x26, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/vesting/types/tx.pb.go b/x/vesting/types/tx.pb.go index 90bc8c4b..3ccee803 100644 --- a/x/vesting/types/tx.pb.go +++ b/x/vesting/types/tx.pb.go @@ -497,53 +497,53 @@ func init() { func init() { proto.RegisterFile("vesting/v1beta1/tx.proto", fileDescriptor_c66d8e2aee35e411) } var fileDescriptor_c66d8e2aee35e411 = []byte{ - // 723 bytes of a gzipped FileDescriptorProto + // 728 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x96, 0x3d, 0x6c, 0xd3, 0x40, 0x14, 0xc7, 0xe3, 0xa4, 0x5f, 0xb9, 0x22, 0x50, 0x4d, 0x51, 0x9c, 0xa8, 0xb1, 0x53, 0x0b, 0x68, - 0x88, 0x54, 0x9b, 0x16, 0x2a, 0x50, 0x40, 0x42, 0x49, 0xd9, 0xa0, 0x12, 0x0a, 0x88, 0x81, 0x25, - 0x72, 0xec, 0xab, 0x6b, 0xb5, 0xbe, 0x8b, 0x7c, 0xd7, 0xaa, 0xdd, 0x80, 0xb1, 0x13, 0x0b, 0x2b, - 0xea, 0x88, 0x98, 0x3a, 0x30, 0x33, 0x77, 0xac, 0x98, 0x98, 0x0a, 0x6a, 0x87, 0x76, 0x60, 0xea, - 0xc2, 0x8a, 0xec, 0x3b, 0x87, 0x24, 0x3d, 0xa7, 0x74, 0x42, 0x62, 0xb1, 0x73, 0xf7, 0x7f, 0xef, - 0xee, 0xe5, 0xf7, 0x3e, 0x64, 0xa0, 0x6c, 0x40, 0x42, 0x3d, 0xe4, 0x9a, 0x1b, 0x73, 0x2d, 0x48, - 0xad, 0x39, 0x93, 0x6e, 0x1a, 0xed, 0x00, 0x53, 0x2c, 0x5f, 0xe1, 0x8a, 0xc1, 0x95, 0xc2, 0x84, - 0xe5, 0x7b, 0x08, 0x9b, 0xd1, 0x93, 0xd9, 0x14, 0x54, 0x1b, 0x13, 0x1f, 0x13, 0xb3, 0x65, 0x11, - 0xd8, 0x39, 0xc1, 0xc6, 0x1e, 0xe2, 0x7a, 0x8e, 0xeb, 0x3e, 0x09, 0x2f, 0x08, 0x5f, 0x5c, 0xc8, - 0x33, 0xa1, 0x19, 0xad, 0x4c, 0xb6, 0xe0, 0xd2, 0xa4, 0x8b, 0x5d, 0xcc, 0xf6, 0xc3, 0x5f, 0x7c, - 0xb7, 0xd8, 0x1f, 0x67, 0x1c, 0x5d, 0x24, 0xeb, 0x3f, 0xd3, 0x20, 0xb7, 0x44, 0xdc, 0xc5, 0x00, - 0x5a, 0x14, 0xbe, 0x64, 0x52, 0xcd, 0xb6, 0xf1, 0x3a, 0xa2, 0xf2, 0x03, 0x70, 0x69, 0x39, 0xc0, - 0x7e, 0xd3, 0x72, 0x9c, 0x00, 0x12, 0xa2, 0x48, 0x25, 0xa9, 0x9c, 0xad, 0x2b, 0x5f, 0x3f, 0xcf, - 0x4e, 0xf2, 0x8b, 0x6b, 0x4c, 0x79, 0x4e, 0x03, 0x0f, 0xb9, 0x8d, 0xf1, 0xd0, 0x9a, 0x6f, 0xc9, - 0xf7, 0x00, 0xa0, 0xb8, 0xe3, 0x9a, 0x3e, 0xc7, 0x35, 0x4b, 0x71, 0xec, 0xb8, 0x02, 0x46, 0x2c, - 0x3f, 0xbc, 0x5f, 0xc9, 0x94, 0x32, 0xe5, 0xf1, 0xf9, 0xbc, 0xc1, 0x3d, 0x42, 0x56, 0x31, 0x53, - 0x63, 0x11, 0x7b, 0xa8, 0xbe, 0xb0, 0x77, 0xa0, 0xa5, 0x3e, 0x7d, 0xd7, 0xca, 0xae, 0x47, 0x57, - 0xd6, 0x5b, 0x86, 0x8d, 0x7d, 0x8e, 0x84, 0xbf, 0x66, 0x89, 0xb3, 0x6a, 0xd2, 0xad, 0x36, 0x24, - 0x91, 0x03, 0xf9, 0x78, 0xbc, 0x5b, 0x91, 0x1a, 0xfc, 0x7c, 0x39, 0x0f, 0xc6, 0x20, 0x72, 0x9a, - 0xd4, 0xf3, 0xa1, 0x32, 0x54, 0x92, 0xca, 0x99, 0xc6, 0x28, 0x44, 0xce, 0x0b, 0xcf, 0x87, 0xb2, - 0x02, 0x46, 0x1d, 0xb8, 0x66, 0x6d, 0x41, 0x47, 0x19, 0x29, 0x49, 0xe5, 0xb1, 0x46, 0xbc, 0xac, - 0x3e, 0x3c, 0xd9, 0xd1, 0xa4, 0xb7, 0xc7, 0xbb, 0x95, 0x1e, 0x36, 0xdb, 0xc7, 0xbb, 0x15, 0xbd, - 0xeb, 0xce, 0x04, 0xa4, 0xfa, 0x34, 0xd0, 0x12, 0xa4, 0x06, 0x24, 0x6d, 0x8c, 0x08, 0xd4, 0xbf, - 0xa4, 0xbb, 0x6c, 0x9e, 0xc1, 0xc0, 0xb7, 0x10, 0x44, 0xf4, 0x29, 0xb6, 0x57, 0xa1, 0x13, 0x67, - 0xa6, 0x2a, 0xcc, 0x4c, 0xee, 0xf4, 0x40, 0xbb, 0xba, 0x65, 0xf9, 0x6b, 0x55, 0xbd, 0x5b, 0xd5, - 0x7b, 0x13, 0x73, 0x57, 0x90, 0x98, 0x6b, 0xa7, 0x07, 0xda, 0x04, 0xf3, 0xfc, 0xa3, 0xe9, 0xff, - 0x24, 0x2b, 0xd5, 0x47, 0x89, 0x80, 0x6f, 0x88, 0x00, 0x87, 0x84, 0x7a, 0xe0, 0xe8, 0xb7, 0xc0, - 0xcc, 0x39, 0xfc, 0x3a, 0xac, 0xdf, 0xf7, 0xb1, 0xf6, 0xb0, 0xe3, 0xd9, 0x7d, 0x5d, 0x30, 0x2d, - 0x62, 0xdd, 0x8b, 0xb4, 0x78, 0x16, 0x69, 0x37, 0xbb, 0x22, 0x00, 0x84, 0x5a, 0x01, 0x65, 0x95, - 0x96, 0x89, 0x2a, 0x2d, 0x1b, 0xed, 0x44, 0xb5, 0xf6, 0x04, 0xc4, 0x13, 0xa3, 0xd9, 0x8e, 0x42, - 0x20, 0xca, 0x50, 0xc4, 0x38, 0x67, 0xf4, 0x4d, 0x12, 0x83, 0x85, 0x58, 0xcf, 0x86, 0x84, 0x19, - 0xb5, 0xcb, 0xdc, 0x84, 0x29, 0xa4, 0xfa, 0xf8, 0x64, 0x47, 0x4b, 0x09, 0xe9, 0x55, 0x12, 0xe8, - 0x09, 0xfe, 0x73, 0x3f, 0x42, 0x81, 0x49, 0x07, 0xe1, 0xaf, 0x34, 0x98, 0xea, 0xd8, 0x2e, 0xae, - 0x79, 0xcb, 0xcb, 0x7d, 0xfc, 0xfe, 0xe3, 0x5a, 0x1d, 0x34, 0x41, 0x8a, 0x00, 0xd8, 0x21, 0x0d, - 0x26, 0x0e, 0xb3, 0xa4, 0x47, 0x3b, 0xa1, 0x5c, 0xad, 0x25, 0x56, 0xf9, 0x8c, 0x28, 0x4f, 0x02, - 0xb0, 0xfa, 0x4d, 0x70, 0x7d, 0x90, 0x1e, 0x67, 0x68, 0xfe, 0xc3, 0x10, 0xc8, 0x2c, 0x11, 0x57, - 0x0e, 0xc0, 0xa4, 0x70, 0xcc, 0x97, 0xcf, 0x94, 0x59, 0xc2, 0x88, 0x2a, 0xdc, 0xfe, 0x5b, 0xcb, - 0xf8, 0x6e, 0x79, 0x5b, 0x02, 0x53, 0x03, 0x27, 0xd9, 0x80, 0x23, 0xc5, 0x1e, 0x85, 0xfb, 0x17, - 0xf5, 0x10, 0x07, 0x23, 0x6a, 0xf5, 0xc1, 0xc1, 0x08, 0x3c, 0xce, 0x09, 0x66, 0x40, 0xdf, 0xc8, - 0x6f, 0x24, 0x90, 0x4f, 0x6e, 0x9a, 0xd9, 0xe4, 0x73, 0x05, 0xe6, 0x85, 0x85, 0x0b, 0x99, 0xc7, - 0x31, 0x14, 0x86, 0x5f, 0x87, 0xd5, 0x5c, 0xaf, 0xed, 0x1d, 0xaa, 0xd2, 0xfe, 0xa1, 0x2a, 0xfd, - 0x38, 0x54, 0xa5, 0x77, 0x47, 0x6a, 0x6a, 0xff, 0x48, 0x4d, 0x7d, 0x3b, 0x52, 0x53, 0xaf, 0x66, - 0xba, 0xda, 0xc2, 0xda, 0xc4, 0x08, 0xb2, 0xa7, 0x63, 0x6e, 0xc6, 0x9f, 0x11, 0xac, 0x37, 0x5a, - 0x23, 0xd1, 0xd7, 0xc4, 0x9d, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x32, 0x15, 0x1f, 0x2d, 0x16, - 0x09, 0x00, 0x00, + 0x88, 0x14, 0xbb, 0x2d, 0x54, 0xa0, 0x80, 0x84, 0x9a, 0x32, 0x01, 0x95, 0x50, 0x40, 0x0c, 0x2c, + 0x91, 0x63, 0x5f, 0x5d, 0xab, 0xb1, 0x2f, 0xf2, 0x5d, 0xab, 0x76, 0x03, 0xc6, 0x4e, 0x2c, 0xac, + 0xa8, 0x23, 0x62, 0xea, 0xc0, 0xcc, 0xdc, 0xb1, 0x62, 0x62, 0x2a, 0xa8, 0x1d, 0xda, 0x81, 0xa9, + 0x0b, 0x2b, 0xb2, 0xef, 0x1c, 0x92, 0xf4, 0xec, 0xd2, 0x09, 0x89, 0x25, 0xce, 0xdd, 0xff, 0xbd, + 0xbb, 0xe7, 0xdf, 0xfb, 0x90, 0x81, 0xb4, 0x01, 0x31, 0x71, 0x3c, 0x5b, 0xdf, 0x98, 0x6b, 0x41, + 0x62, 0xcc, 0xe9, 0x64, 0x53, 0xeb, 0xf8, 0x88, 0x20, 0xf1, 0x0a, 0x53, 0x34, 0xa6, 0x14, 0x26, + 0x0c, 0xd7, 0xf1, 0x90, 0x1e, 0xfe, 0x52, 0x9b, 0x82, 0x6c, 0x22, 0xec, 0x22, 0xac, 0xb7, 0x0c, + 0x0c, 0xbb, 0x27, 0x98, 0xc8, 0xf1, 0x98, 0x9e, 0x63, 0xba, 0x8b, 0x83, 0x0b, 0x82, 0x07, 0x13, + 0xf2, 0x54, 0x68, 0x86, 0x2b, 0x9d, 0x2e, 0x98, 0x34, 0x69, 0x23, 0x1b, 0xd1, 0xfd, 0xe0, 0x1f, + 0xdb, 0x2d, 0x0e, 0xc6, 0x19, 0x45, 0x17, 0xca, 0xea, 0xcf, 0x34, 0xc8, 0x2d, 0x63, 0x7b, 0xc9, + 0x87, 0x06, 0x81, 0x2f, 0xa9, 0xb4, 0x68, 0x9a, 0x68, 0xdd, 0x23, 0xe2, 0x7d, 0x70, 0x69, 0xc5, + 0x47, 0x6e, 0xd3, 0xb0, 0x2c, 0x1f, 0x62, 0x2c, 0x09, 0x25, 0xa1, 0x9c, 0xad, 0x4b, 0x5f, 0x3f, + 0x57, 0x27, 0xd9, 0xc5, 0x8b, 0x54, 0x79, 0x4e, 0x7c, 0xc7, 0xb3, 0x1b, 0xe3, 0x81, 0x35, 0xdb, + 0x12, 0xef, 0x02, 0x40, 0x50, 0xd7, 0x35, 0x7d, 0x8e, 0x6b, 0x96, 0xa0, 0xc8, 0x71, 0x15, 0x8c, + 0x18, 0x6e, 0x70, 0xbf, 0x94, 0x29, 0x65, 0xca, 0xe3, 0xf3, 0x79, 0x8d, 0x79, 0x04, 0xac, 0x22, + 0xa6, 0xda, 0x12, 0x72, 0xbc, 0xfa, 0xc2, 0xde, 0x81, 0x92, 0xfa, 0xf4, 0x5d, 0x29, 0xdb, 0x0e, + 0x59, 0x5d, 0x6f, 0x69, 0x26, 0x72, 0x19, 0x12, 0xf6, 0xa8, 0x62, 0x6b, 0x4d, 0x27, 0x5b, 0x1d, + 0x88, 0x43, 0x07, 0xfc, 0xf1, 0x78, 0xb7, 0x22, 0x34, 0xd8, 0xf9, 0x62, 0x1e, 0x8c, 0x41, 0xcf, + 0x6a, 0x12, 0xc7, 0x85, 0xd2, 0x50, 0x49, 0x28, 0x67, 0x1a, 0xa3, 0xd0, 0xb3, 0x5e, 0x38, 0x2e, + 0x14, 0x25, 0x30, 0x6a, 0xc1, 0xb6, 0xb1, 0x05, 0x2d, 0x69, 0xa4, 0x24, 0x94, 0xc7, 0x1a, 0xd1, + 0xb2, 0xf6, 0xe0, 0x64, 0x47, 0x11, 0xde, 0x1e, 0xef, 0x56, 0xfa, 0xd8, 0x6c, 0x1f, 0xef, 0x56, + 0xd4, 0x9e, 0x3b, 0x63, 0x90, 0xaa, 0xd3, 0x40, 0x89, 0x91, 0x1a, 0x10, 0x77, 0x90, 0x87, 0xa1, + 0xfa, 0x25, 0xdd, 0x63, 0xf3, 0x0c, 0xfa, 0xae, 0xe1, 0x41, 0x8f, 0x3c, 0x45, 0xe6, 0x1a, 0xb4, + 0xa2, 0xcc, 0xd4, 0xb8, 0x99, 0xc9, 0x9d, 0x1e, 0x28, 0x57, 0xb7, 0x0c, 0xb7, 0x5d, 0x53, 0x7b, + 0x55, 0xb5, 0x3f, 0x31, 0x77, 0x38, 0x89, 0xb9, 0x76, 0x7a, 0xa0, 0x4c, 0x50, 0xcf, 0x3f, 0x9a, + 0xfa, 0x4f, 0xb2, 0x52, 0x7b, 0x18, 0x0b, 0xf8, 0x06, 0x0f, 0x70, 0x40, 0xa8, 0x0f, 0x8e, 0x7a, + 0x0b, 0xcc, 0x9c, 0xc3, 0xaf, 0xcb, 0xfa, 0xfd, 0x00, 0x6b, 0x07, 0x59, 0x8e, 0x39, 0xd0, 0x05, + 0xd3, 0x3c, 0xd6, 0xfd, 0x48, 0x8b, 0x67, 0x91, 0xf6, 0xb2, 0x2b, 0x02, 0x80, 0x89, 0xe1, 0x13, + 0x5a, 0x69, 0x99, 0xb0, 0xd2, 0xb2, 0xe1, 0x4e, 0x58, 0x6b, 0x4f, 0x40, 0x34, 0x31, 0x9a, 0x9d, + 0x30, 0x04, 0x2c, 0x0d, 0x85, 0x8c, 0x73, 0xda, 0xc0, 0x24, 0xd1, 0x68, 0x88, 0xf5, 0x6c, 0x40, + 0x98, 0x52, 0xbb, 0xcc, 0x4c, 0xa8, 0x82, 0x6b, 0x8f, 0x4e, 0x76, 0x94, 0x14, 0x97, 0x5e, 0x25, + 0x86, 0x1e, 0xe7, 0x9d, 0x07, 0x11, 0x72, 0x4c, 0xba, 0x08, 0x7f, 0xa5, 0xc1, 0x54, 0xd7, 0x76, + 0xa9, 0xed, 0xac, 0xac, 0x0c, 0xf0, 0xfb, 0x8f, 0x6b, 0x35, 0x69, 0x82, 0x14, 0x01, 0x30, 0x03, + 0x1a, 0x54, 0x1c, 0xa6, 0x49, 0x0f, 0x77, 0x02, 0xb9, 0xb6, 0x18, 0x5b, 0xe5, 0x33, 0xbc, 0x3c, + 0x71, 0xc0, 0xaa, 0x37, 0xc1, 0xf5, 0x24, 0x3d, 0xca, 0xd0, 0xfc, 0x87, 0x21, 0x90, 0x59, 0xc6, + 0xb6, 0xe8, 0x83, 0x49, 0xee, 0x98, 0x2f, 0x9f, 0x29, 0xb3, 0x98, 0x11, 0x55, 0x98, 0xfd, 0x5b, + 0xcb, 0xe8, 0x6e, 0x71, 0x5b, 0x00, 0x53, 0x89, 0x93, 0x2c, 0xe1, 0x48, 0xbe, 0x47, 0xe1, 0xde, + 0x45, 0x3d, 0xf8, 0xc1, 0xf0, 0x5a, 0x3d, 0x39, 0x18, 0x8e, 0xc7, 0x39, 0xc1, 0x24, 0xf4, 0x8d, + 0xf8, 0x46, 0x00, 0xf9, 0xf8, 0xa6, 0xa9, 0xc6, 0x9f, 0xcb, 0x31, 0x2f, 0x2c, 0x5c, 0xc8, 0x3c, + 0x8a, 0xa1, 0x30, 0xfc, 0x3a, 0xa8, 0xe6, 0xfa, 0xe3, 0xbd, 0x43, 0x59, 0xd8, 0x3f, 0x94, 0x85, + 0x1f, 0x87, 0xb2, 0xf0, 0xee, 0x48, 0x4e, 0xed, 0x1f, 0xc9, 0xa9, 0x6f, 0x47, 0x72, 0xea, 0xd5, + 0x6c, 0x4f, 0x5b, 0x18, 0x9b, 0xc8, 0x83, 0xd5, 0xf0, 0xab, 0xc1, 0x44, 0x6d, 0xba, 0xb4, 0xf4, + 0xcd, 0xe8, 0x7b, 0x82, 0x36, 0x49, 0x6b, 0x24, 0x34, 0xb8, 0xfd, 0x3b, 0x00, 0x00, 0xff, 0xff, + 0x66, 0x5a, 0xdc, 0x17, 0x1f, 0x09, 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { diff --git a/x/vesting/types/vesting.pb.go b/x/vesting/types/vesting.pb.go index 733502a6..c64b6084 100644 --- a/x/vesting/types/vesting.pb.go +++ b/x/vesting/types/vesting.pb.go @@ -338,47 +338,48 @@ func init() { func init() { proto.RegisterFile("vesting/v1beta1/vesting.proto", fileDescriptor_eac461ec52018387) } var fileDescriptor_eac461ec52018387 = []byte{ - // 639 bytes of a gzipped FileDescriptorProto + // 644 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0x3f, 0x6f, 0xd3, 0x4e, - 0x18, 0xf6, 0x35, 0xf9, 0xe5, 0x47, 0xaf, 0xd0, 0x3f, 0xa6, 0x94, 0xb4, 0x52, 0x9c, 0xe0, 0x0e, - 0x44, 0x45, 0xb5, 0x69, 0x11, 0x4b, 0xb6, 0xa6, 0x08, 0x09, 0xc1, 0x80, 0x22, 0xc4, 0x00, 0x43, - 0x74, 0xb6, 0xaf, 0xce, 0xa9, 0xf1, 0x5d, 0xe5, 0xbb, 0x94, 0x56, 0x88, 0x1d, 0x31, 0x95, 0x0d, - 0x89, 0xa5, 0x12, 0x42, 0x42, 0x4c, 0xfd, 0x18, 0x1d, 0x3b, 0xb2, 0x50, 0x50, 0x33, 0xf4, 0x6b, - 0x20, 0xdf, 0x9d, 0x5d, 0x2b, 0x09, 0x6c, 0xa9, 0xba, 0x38, 0x7e, 0xef, 0xbd, 0x7b, 0x9f, 0xe7, - 0x79, 0xfd, 0xbc, 0x39, 0x58, 0xd9, 0xc5, 0x5c, 0x10, 0x1a, 0xba, 0xbb, 0x6b, 0x1e, 0x16, 0x68, - 0xcd, 0xd5, 0xb1, 0xb3, 0x13, 0x33, 0xc1, 0xcc, 0x99, 0x34, 0xd4, 0xe9, 0xa5, 0x39, 0x14, 0x11, - 0xca, 0x5c, 0xf9, 0x54, 0x7b, 0x96, 0x2c, 0x9f, 0xf1, 0x88, 0x71, 0x17, 0xf5, 0x44, 0x27, 0x2b, - 0x93, 0x04, 0x03, 0x79, 0x0f, 0x71, 0x9c, 0xe5, 0x7d, 0x46, 0xa8, 0xce, 0xcf, 0x87, 0x2c, 0x64, - 0xf2, 0xd5, 0x4d, 0xde, 0xd4, 0xaa, 0xfd, 0xb9, 0x08, 0xcd, 0x26, 0xe2, 0xf8, 0xa5, 0x22, 0xb0, - 0xe1, 0xfb, 0xac, 0x47, 0x85, 0xf9, 0x04, 0x5e, 0x4f, 0xea, 0xb4, 0x91, 0x8a, 0xcb, 0xa0, 0x06, - 0xea, 0x53, 0xeb, 0x35, 0x47, 0x61, 0x38, 0x12, 0x56, 0x63, 0x38, 0xc9, 0x71, 0x7d, 0xae, 0x59, - 0x3c, 0x39, 0xad, 0x82, 0xd6, 0x94, 0x77, 0xb1, 0x64, 0xbe, 0x85, 0xb3, 0x2c, 0x26, 0x21, 0xa1, - 0xa8, 0xdb, 0xd6, 0x32, 0xcb, 0x13, 0xb5, 0x42, 0x7d, 0x6a, 0x7d, 0x31, 0x2d, 0x97, 0x6c, 0xcf, - 0xca, 0x6d, 0x32, 0x42, 0x9b, 0x0f, 0x8f, 0x4f, 0xab, 0xc6, 0xf7, 0x5f, 0xd5, 0x7a, 0x48, 0x44, - 0xa7, 0xe7, 0x39, 0x3e, 0x8b, 0x5c, 0xad, 0x4f, 0xfd, 0xac, 0xf2, 0x60, 0xdb, 0x15, 0xfb, 0x3b, - 0x98, 0xcb, 0x03, 0xfc, 0xdb, 0xf9, 0xd1, 0x0a, 0x68, 0xcd, 0xa4, 0x48, 0x5a, 0x8e, 0xf9, 0x06, - 0x4e, 0x07, 0xb8, 0x8b, 0x43, 0x24, 0x70, 0xd0, 0xde, 0x8a, 0x31, 0x2e, 0x17, 0xc6, 0x04, 0x7d, - 0x23, 0xc3, 0x79, 0x1c, 0x63, 0x6c, 0xbe, 0x83, 0x73, 0x17, 0xc0, 0xa9, 0xec, 0xe2, 0x98, 0xb0, - 0x67, 0x33, 0xa8, 0x54, 0xf7, 0x22, 0xbc, 0x86, 0x69, 0xd0, 0x16, 0x24, 0xc2, 0xe5, 0xff, 0x6a, - 0xa0, 0x5e, 0x68, 0xfd, 0x8f, 0x69, 0xf0, 0x82, 0x44, 0xb8, 0xb1, 0xf2, 0xfe, 0xb0, 0x6a, 0x7c, - 0x3a, 0xac, 0x1a, 0x1f, 0xce, 0x8f, 0x56, 0x2a, 0xb9, 0xb2, 0xc3, 0x36, 0xb0, 0x8f, 0x01, 0x2c, - 0x6f, 0x32, 0x2a, 0x08, 0xed, 0xb1, 0x1e, 0x1f, 0xf0, 0xc8, 0x6b, 0x38, 0x2f, 0x3d, 0xa2, 0xd5, - 0x0d, 0x78, 0x65, 0xd9, 0x19, 0xf0, 0xb4, 0x33, 0x5c, 0x5f, 0xdb, 0xc5, 0xf4, 0x86, 0x0d, 0x58, - 0x81, 0x90, 0x0b, 0x14, 0x0b, 0x25, 0x61, 0x42, 0x4a, 0x98, 0x94, 0x2b, 0x52, 0xc4, 0xfd, 0xbc, - 0x88, 0xe5, 0x9c, 0x88, 0xbf, 0xb1, 0xb5, 0xbf, 0x00, 0x78, 0xeb, 0x11, 0xee, 0xa2, 0xfd, 0xac, - 0x49, 0x97, 0xa1, 0xa3, 0xb1, 0x9a, 0x27, 0x5a, 0xcb, 0x11, 0x1d, 0xc9, 0xc5, 0x3e, 0x00, 0xb0, - 0xf4, 0x1c, 0xc7, 0x84, 0x05, 0xe6, 0x02, 0x2c, 0x75, 0x31, 0x0d, 0x45, 0x47, 0x12, 0x29, 0xb4, - 0x74, 0x64, 0x76, 0x60, 0x09, 0x45, 0x92, 0xe0, 0xb8, 0xa6, 0x48, 0xd7, 0x6f, 0x14, 0x13, 0xde, - 0xf6, 0xc7, 0x09, 0xb8, 0xa0, 0x28, 0x11, 0xff, 0xea, 0x38, 0xc0, 0x7c, 0x0a, 0xd3, 0x3f, 0xcd, - 0xf6, 0x8e, 0x64, 0xc7, 0xf5, 0x68, 0xdf, 0x1e, 0x82, 0x55, 0xec, 0x9b, 0x93, 0x49, 0x37, 0x94, - 0xc2, 0x69, 0xbd, 0x45, 0x65, 0x78, 0xc3, 0xc9, 0x7f, 0xa5, 0x3b, 0xb9, 0xde, 0x8c, 0x16, 0x6e, - 0x7f, 0x05, 0xb2, 0x27, 0x11, 0xa2, 0x98, 0x8a, 0x67, 0xcc, 0xdf, 0xc6, 0xc1, 0xa5, 0xb8, 0xe9, - 0x5f, 0x3c, 0x47, 0x90, 0xb1, 0x7f, 0x02, 0x78, 0x73, 0xb3, 0x4b, 0xb6, 0xb6, 0xae, 0xd0, 0x87, - 0xab, 0x40, 0xe8, 0x27, 0x94, 0x54, 0xba, 0xa0, 0xd2, 0x72, 0x45, 0x4e, 0xf6, 0xbd, 0xbc, 0x44, - 0x2b, 0x3f, 0xd9, 0xc3, 0x3a, 0x9a, 0x1b, 0xc7, 0x67, 0x16, 0x38, 0x39, 0xb3, 0xc0, 0xef, 0x33, - 0x0b, 0x1c, 0xf4, 0x2d, 0xe3, 0xa4, 0x6f, 0x19, 0x3f, 0xfa, 0x96, 0xf1, 0xea, 0x6e, 0xce, 0xf2, - 0x68, 0x8f, 0x51, 0xac, 0x9e, 0x81, 0xbb, 0x97, 0x5e, 0xbd, 0xca, 0xf7, 0x5e, 0x49, 0xde, 0x83, - 0x0f, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x79, 0xdf, 0x65, 0x2e, 0xa2, 0x07, 0x00, 0x00, + 0x18, 0xf6, 0x35, 0xf9, 0xe5, 0x47, 0xaf, 0xd0, 0x3f, 0xa6, 0x94, 0xb4, 0x52, 0x9c, 0xe0, 0x2e, + 0x51, 0x51, 0xed, 0xb6, 0x88, 0x25, 0x1b, 0x29, 0x42, 0xe2, 0xcf, 0x80, 0x22, 0xc4, 0x00, 0x43, + 0x74, 0xb6, 0xaf, 0xce, 0xa9, 0xf6, 0x5d, 0xe5, 0xbb, 0x94, 0x56, 0x88, 0x1d, 0x31, 0x95, 0x0d, + 0x89, 0xa5, 0x12, 0x42, 0x42, 0x4c, 0xfd, 0x18, 0x1d, 0x3b, 0xb2, 0x50, 0x50, 0x3b, 0xf4, 0x6b, + 0x20, 0xdf, 0x9d, 0x5d, 0x2b, 0x29, 0x6c, 0xa9, 0xba, 0x24, 0x7e, 0xef, 0xbd, 0x7b, 0x9f, 0xe7, + 0x79, 0xfd, 0xbc, 0x3e, 0x58, 0xdb, 0xc6, 0x5c, 0x10, 0x1a, 0xba, 0xdb, 0xab, 0x1e, 0x16, 0x68, + 0xd5, 0xd5, 0xb1, 0xb3, 0x95, 0x30, 0xc1, 0xcc, 0xa9, 0x2c, 0xd4, 0xe9, 0x85, 0x19, 0x14, 0x13, + 0xca, 0x5c, 0xf9, 0xab, 0xf6, 0x2c, 0x58, 0x3e, 0xe3, 0x31, 0xe3, 0x2e, 0xea, 0x8b, 0x5e, 0x5e, + 0x26, 0x0d, 0x06, 0xf2, 0x1e, 0xe2, 0x38, 0xcf, 0xfb, 0x8c, 0x50, 0x9d, 0x9f, 0x0d, 0x59, 0xc8, + 0xe4, 0xa3, 0x9b, 0x3e, 0xa9, 0x55, 0xfb, 0x73, 0x19, 0x9a, 0x6d, 0xc4, 0xf1, 0x4b, 0x45, 0xe0, + 0x81, 0xef, 0xb3, 0x3e, 0x15, 0xe6, 0x63, 0x78, 0x3d, 0xad, 0xd3, 0x45, 0x2a, 0xae, 0x82, 0x06, + 0x68, 0x4e, 0xac, 0x35, 0x1c, 0x85, 0xe1, 0x48, 0x58, 0x8d, 0xe1, 0xa4, 0xc7, 0xf5, 0xb9, 0x76, + 0xf9, 0xe8, 0xb8, 0x0e, 0x3a, 0x13, 0xde, 0xf9, 0x92, 0xf9, 0x16, 0x4e, 0xb3, 0x84, 0x84, 0x84, + 0xa2, 0xa8, 0xab, 0x65, 0x56, 0xc7, 0x1a, 0xa5, 0xe6, 0xc4, 0xda, 0x7c, 0x56, 0x2e, 0xdd, 0x9e, + 0x97, 0x5b, 0x67, 0x84, 0xb6, 0xef, 0x1f, 0x1e, 0xd7, 0x8d, 0xef, 0xbf, 0xea, 0xcd, 0x90, 0x88, + 0x5e, 0xdf, 0x73, 0x7c, 0x16, 0xbb, 0x5a, 0x9f, 0xfa, 0x5b, 0xe6, 0xc1, 0xa6, 0x2b, 0x76, 0xb7, + 0x30, 0x97, 0x07, 0xf8, 0xb7, 0xb3, 0x83, 0x25, 0xd0, 0x99, 0xca, 0x90, 0xb4, 0x1c, 0xf3, 0x0d, + 0x9c, 0x0c, 0x70, 0x84, 0x43, 0x24, 0x70, 0xd0, 0xdd, 0x48, 0x30, 0xae, 0x96, 0x46, 0x04, 0x7d, + 0x23, 0xc7, 0x79, 0x94, 0x60, 0x6c, 0xbe, 0x83, 0x33, 0xe7, 0xc0, 0x99, 0xec, 0xf2, 0x88, 0xb0, + 0xa7, 0x73, 0xa8, 0x4c, 0xf7, 0x3c, 0xbc, 0x86, 0x69, 0xd0, 0x15, 0x24, 0xc6, 0xd5, 0xff, 0x1a, + 0xa0, 0x59, 0xea, 0xfc, 0x8f, 0x69, 0xf0, 0x82, 0xc4, 0xb8, 0xb5, 0xf4, 0x7e, 0xbf, 0x6e, 0x7c, + 0xda, 0xaf, 0x1b, 0x1f, 0xce, 0x0e, 0x96, 0x6a, 0x85, 0xb2, 0xc3, 0x36, 0xb0, 0x0f, 0x01, 0xac, + 0xae, 0x33, 0x2a, 0x08, 0xed, 0xb3, 0x3e, 0x1f, 0xf0, 0xc8, 0x6b, 0x38, 0x2b, 0x3d, 0xa2, 0xd5, + 0x0d, 0x78, 0x65, 0xd1, 0x19, 0xf0, 0xb4, 0x33, 0x5c, 0x5f, 0xdb, 0xc5, 0xf4, 0x86, 0x0d, 0x58, + 0x83, 0x90, 0x0b, 0x94, 0x08, 0x25, 0x61, 0x4c, 0x4a, 0x18, 0x97, 0x2b, 0x52, 0xc4, 0x4a, 0x51, + 0xc4, 0x62, 0x41, 0xc4, 0xdf, 0xd8, 0xda, 0x5f, 0x00, 0xbc, 0xf5, 0x10, 0x47, 0x68, 0x37, 0x6f, + 0xd2, 0x65, 0xe8, 0x68, 0x2d, 0x17, 0x89, 0x36, 0x0a, 0x44, 0x2f, 0xe4, 0x62, 0xef, 0x01, 0x58, + 0x79, 0x8e, 0x13, 0xc2, 0x02, 0x73, 0x0e, 0x56, 0x22, 0x4c, 0x43, 0xd1, 0x93, 0x44, 0x4a, 0x1d, + 0x1d, 0x99, 0x3d, 0x58, 0x41, 0xb1, 0x24, 0x38, 0xaa, 0x29, 0xd2, 0xf5, 0x5b, 0xe5, 0x94, 0xb7, + 0xfd, 0x71, 0x0c, 0xce, 0x29, 0x4a, 0xc4, 0xbf, 0x3a, 0x0e, 0x30, 0x9f, 0xc2, 0xec, 0xa3, 0xd9, + 0xdd, 0x92, 0xec, 0xb8, 0x1e, 0xed, 0xdb, 0x43, 0xb0, 0x8a, 0x7d, 0x7b, 0x3c, 0xed, 0x86, 0x52, + 0x38, 0xa9, 0xb7, 0xa8, 0x0c, 0x6f, 0x39, 0xc5, 0xb7, 0x74, 0xa7, 0xd0, 0x9b, 0x8b, 0x85, 0xdb, + 0x5f, 0x81, 0xec, 0x49, 0x8c, 0x28, 0xa6, 0xe2, 0x19, 0xf3, 0x37, 0x71, 0x70, 0x29, 0x6e, 0xfa, + 0x17, 0xcf, 0x0b, 0xc8, 0xd8, 0x3f, 0x01, 0xbc, 0xb9, 0x1e, 0x91, 0x8d, 0x8d, 0x2b, 0xf4, 0xe2, + 0x6a, 0x10, 0xfa, 0x29, 0x25, 0x95, 0x2e, 0xa9, 0xb4, 0x5c, 0x91, 0x93, 0x7d, 0xb7, 0x28, 0xd1, + 0x2a, 0x4e, 0xf6, 0xb0, 0x8e, 0xf6, 0x93, 0xc3, 0x13, 0x0b, 0x1c, 0x9d, 0x58, 0xe0, 0xf7, 0x89, + 0x05, 0xf6, 0x4e, 0x2d, 0xe3, 0xe8, 0xd4, 0x32, 0x7e, 0x9c, 0x5a, 0xc6, 0xab, 0x95, 0x82, 0xe5, + 0xd1, 0x0e, 0xa3, 0x78, 0x59, 0xde, 0x77, 0x3e, 0x8b, 0x54, 0x18, 0xb8, 0x3b, 0xd9, 0x1d, 0xac, + 0x06, 0xc0, 0xab, 0xc8, 0x0d, 0xf7, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x88, 0x61, 0xf1, 0x6e, + 0xab, 0x07, 0x00, 0x00, } func (m *BaseVestingAccount) Marshal() (dAtA []byte, err error) {