From 9b0a348239cf3bde2971bc7804f884d40358c3b3 Mon Sep 17 00:00:00 2001 From: Paul Downing Date: Tue, 18 Apr 2023 18:55:57 -0500 Subject: [PATCH] Update protonet json earn vaults (#1564) * Update protonet json earn vaults Currently our `/kava/incentive/v1beta1/apy` endpoint is expecting there to be an earn vault for each `earn_reward_period` returned by `kava/incentive/v1beta1/params`. Right now, the genesis state for testnet (and protonet) aren't providing all the vaults as options. Our two choices are: 1. Remove the incentive params for the vaults not included 2 Add the vaults so there is a vault for each incentive param Going with option 2 here because mainnet has vaults for the denoms which are currently missing * update protonet genesis earn vaults --- ci/env/kava-internal-testnet/genesis.json | 16 ++++++++++++++++ ci/env/kava-protonet/genesis.json | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/ci/env/kava-internal-testnet/genesis.json b/ci/env/kava-internal-testnet/genesis.json index bb1b9bd0..ef905a6c 100644 --- a/ci/env/kava-internal-testnet/genesis.json +++ b/ci/env/kava-internal-testnet/genesis.json @@ -1112,6 +1112,22 @@ "strategies": [ "STRATEGY_TYPE_SAVINGS" ] + }, + { + "denom": "bnb", + "strategies": [ + "STRATEGY_TYPE_SAVINGS" + ], + "is_private_vault": false, + "allowed_depositors": [] + }, + { + "denom": "erc20/multichain/usdt", + "strategies": [ + "STRATEGY_TYPE_SAVINGS" + ], + "is_private_vault": false, + "allowed_depositors": [] } ] }, diff --git a/ci/env/kava-protonet/genesis.json b/ci/env/kava-protonet/genesis.json index aeddd925..df9ea753 100644 --- a/ci/env/kava-protonet/genesis.json +++ b/ci/env/kava-protonet/genesis.json @@ -1135,6 +1135,22 @@ "strategies": [ "STRATEGY_TYPE_SAVINGS" ] + }, + { + "denom": "bnb", + "strategies": [ + "STRATEGY_TYPE_SAVINGS" + ], + "is_private_vault": false, + "allowed_depositors": [] + }, + { + "denom": "erc20/multichain/usdt", + "strategies": [ + "STRATEGY_TYPE_SAVINGS" + ], + "is_private_vault": false, + "allowed_depositors": [] } ] },