2022-12-08 18:35:20 +00:00
#!/bin/bash
set -ex
# configure kava binary to talk to the desired chain endpoint
2022-12-14 20:41:53 +00:00
kava config node " ${ CHAIN_API_URL } "
kava config chain-id " ${ CHAIN_ID } "
2022-12-08 18:35:20 +00:00
# use the test keyring to allow scriptng key generation
kava config keyring-backend test
# wait for transactions to be committed per CLI command
kava config broadcast-mode block
# setup dev wallet
echo " ${ DEV_WALLET_MNEMONIC } " | kava keys add --recover dev-wallet
2023-03-09 18:31:13 +00:00
DEV_TEST_WALLET_ADDRESS = "0x7E08fa61f22f1A40B4617b887eD24b85CDaf33c2"
2022-12-08 18:35:20 +00:00
2023-03-14 23:45:19 +00:00
# setup kava ethereum compatible account for deploying
2022-12-08 18:35:20 +00:00
# erc20 contracts to the kava chain
echo "sweet ocean blush coil mobile ten floor sample nuclear power legend where place swamp young marble grit observe enforce lake blossom lesson upon plug" | kava keys add --recover --eth dev-erc20-deployer-wallet
# fund evm-contract-deployer account (using issuance)
2022-12-21 19:51:14 +00:00
kava tx issuance issue 200000000ukava kava1van3znl6597xgwwh46jgquutnqkwvwszjg04fz --from dev-wallet --gas-prices 0.5ukava -y
2022-12-08 18:35:20 +00:00
# deploy and fund USDC ERC20 contract
2022-12-14 20:41:53 +00:00
USD_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "USD Coin" USDC 6)
2022-12-08 18:35:20 +00:00
USD_CONTRACT_ADDRESS = ${ USD_CONTRACT_DEPLOY : -42 }
2022-12-14 20:41:53 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $USD_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2022-12-08 18:35:20 +00:00
# # deploy and fund wKava ERC20 contract
2022-12-14 20:41:53 +00:00
wKAVA_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "Wrapped Kava" wKava 6)
2022-12-08 18:35:20 +00:00
wKAVA_CONTRACT_ADDRESS = ${ wKAVA_CONTRACT_DEPLOY : -42 }
2022-12-14 20:41:53 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $wKAVA_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2022-12-08 18:35:20 +00:00
# deploy and fund BNB contract
2022-12-14 20:41:53 +00:00
BNB_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "Binance" BNB 8)
2022-12-08 18:35:20 +00:00
BNB_CONTRACT_ADDRESS = ${ BNB_CONTRACT_DEPLOY : -42 }
2022-12-14 20:41:53 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $BNB_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2022-12-08 18:35:20 +00:00
# deploy and fund USDT contract
2022-12-14 20:41:53 +00:00
USDT_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "USDT" USDT 6)
2022-12-08 18:35:20 +00:00
USDT_CONTRACT_ADDRESS = ${ USDT_CONTRACT_DEPLOY : -42 }
2022-12-14 20:41:53 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $USDT_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2022-12-08 18:35:20 +00:00
# deploy and fund DAI contract
2022-12-14 20:41:53 +00:00
DAI_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "DAI" DAI 18)
2022-12-08 18:35:20 +00:00
DAI_CONTRACT_ADDRESS = ${ DAI_CONTRACT_DEPLOY : -42 }
2022-12-14 20:41:53 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $DAI_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2022-12-21 19:51:14 +00:00
2023-03-08 22:49:22 +00:00
# deploy and fund wBTC ERC20 contract
wBTC_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "Wrapped BTC" BTC 8)
wBTC_CONTRACT_ADDRESS = ${ wBTC_CONTRACT_DEPLOY : -42 }
2023-03-14 18:38:39 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $wBTC_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 100000000000000
2023-03-08 22:49:22 +00:00
# deploy and fund wETH ERC20 contract
wETH_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "Wrapped wETH" ETH 18)
2023-03-09 18:31:13 +00:00
wETH_CONTRACT_ADDRESS = ${ wETH_CONTRACT_DEPLOY : -42 }
2023-03-08 22:49:22 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $wETH_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000000000000
2023-03-14 23:45:19 +00:00
# deploy and fund axlUSDC ERC20 contract
AXLUSD_CONTRACT_DEPLOY = $( npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " deploy-erc20 "USD Coin" USDC 6)
2023-03-15 01:45:04 +00:00
AXLUSD_CONTRACT_ADDRESS = ${ AXLUSD_CONTRACT_DEPLOY : -42 }
2023-03-14 23:45:19 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $AXLUSD_CONTRACT_ADDRESS " 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
2023-03-09 18:31:13 +00:00
# seed some evm wallets
2023-03-14 18:38:39 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $wBTC_CONTRACT_ADDRESS " " $DEV_TEST_WALLET_ADDRESS " 10000000000000
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $USD_CONTRACT_ADDRESS " " $DEV_TEST_WALLET_ADDRESS " 100000000000
2023-03-09 18:31:13 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $wETH_CONTRACT_ADDRESS " " $DEV_TEST_WALLET_ADDRESS " 1000000000000000000000
2023-03-14 23:45:19 +00:00
npx hardhat --network " ${ ERC20_DEPLOYER_NETWORK_NAME } " mint-erc20 " $AXLUSD_CONTRACT_ADDRESS " " $DEV_TEST_WALLET_ADDRESS " 100000000000
2023-03-09 18:31:13 +00:00
2022-12-21 19:51:14 +00:00
# give dev-wallet enough delegation power to pass proposals by itself
# enumerate all genesis validators
2022-12-21 21:06:02 +00:00
GENTX_VALIDATORS = ( "kavavaloper1xcgtffvv2yeqmgs3yz4gv29kgjrj8usxrnrlwp" "kavavaloper1w66m9hdzwgd6uc8g93zqkcumgwzrpcw958sh3s" )
2022-12-21 19:51:14 +00:00
# issue 300KAVA to delegate to each validator
2022-12-21 21:06:02 +00:00
kava tx issuance issue 600000000ukava kava1vlpsrmdyuywvaqrv7rx6xga224sqfwz3fyfhwq \
2022-12-21 19:51:14 +00:00
--from dev-wallet --gas-prices 0.5ukava -y
# delegate 300KAVA to each validator
for validator in " ${ GENTX_VALIDATORS [@] } "
do
kava tx staking delegate " ${ validator } " 300000000ukava --from dev-wallet --gas-prices 0.5ukava -y
done
2023-01-23 19:56:51 +00:00
# create a text proposal
2023-01-30 18:09:26 +00:00
kava tx gov submit-proposal --deposit 1000000000ukava --type "Text" --title "Example Proposal" --description "This is an example proposal" --gas auto --gas-adjustment 1.2 --from dev-wallet --gas-prices 0.01ukava -y