switch cd pipelines to operate on internal testnet

This commit is contained in:
Levi Schoen 2022-12-14 12:41:53 -08:00
parent 7fb8e3005d
commit ebd4571ac8
3 changed files with 22 additions and 21 deletions

View File

@ -2,8 +2,8 @@
set -ex set -ex
# configure kava binary to talk to the desired chain endpoint # configure kava binary to talk to the desired chain endpoint
kava config node ${CHAIN_API_URL} kava config node "${CHAIN_API_URL}"
kava config chain-id ${CHAIN_ID} kava config chain-id "${CHAIN_ID}"
# use the test keyring to allow scriptng key generation # use the test keyring to allow scriptng key generation
kava config keyring-backend test kava config keyring-backend test
@ -22,26 +22,26 @@ echo "sweet ocean blush coil mobile ten floor sample nuclear power legend where
yes y | kava tx issuance issue 200000000ukava kava1van3znl6597xgwwh46jgquutnqkwvwszjg04fz --from dev-wallet --gas-prices 0.5ukava yes y | kava tx issuance issue 200000000ukava kava1van3znl6597xgwwh46jgquutnqkwvwszjg04fz --from dev-wallet --gas-prices 0.5ukava
# deploy and fund USDC ERC20 contract # deploy and fund USDC ERC20 contract
USD_CONTRACT_DEPLOY=$(npx hardhat --network demonet deploy-erc20 "USD Coin" USDC 6) USD_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "USD Coin" USDC 6)
USD_CONTRACT_ADDRESS=${USD_CONTRACT_DEPLOY: -42} USD_CONTRACT_ADDRESS=${USD_CONTRACT_DEPLOY: -42}
npx hardhat --network demonet mint-erc20 "$USD_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000 npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$USD_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
# # deploy and fund wKava ERC20 contract # # deploy and fund wKava ERC20 contract
wKAVA_CONTRACT_DEPLOY=$(npx hardhat --network demonet deploy-erc20 "Wrapped Kava" wKava 6) wKAVA_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "Wrapped Kava" wKava 6)
wKAVA_CONTRACT_ADDRESS=${wKAVA_CONTRACT_DEPLOY: -42} wKAVA_CONTRACT_ADDRESS=${wKAVA_CONTRACT_DEPLOY: -42}
npx hardhat --network demonet mint-erc20 "$wKAVA_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000 npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wKAVA_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
# deploy and fund BNB contract # deploy and fund BNB contract
BNB_CONTRACT_DEPLOY=$(npx hardhat --network demonet deploy-erc20 "Binance" BNB 8) BNB_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "Binance" BNB 8)
BNB_CONTRACT_ADDRESS=${BNB_CONTRACT_DEPLOY: -42} BNB_CONTRACT_ADDRESS=${BNB_CONTRACT_DEPLOY: -42}
npx hardhat --network demonet mint-erc20 "$BNB_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000 npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$BNB_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
# deploy and fund USDT contract # deploy and fund USDT contract
USDT_CONTRACT_DEPLOY=$(npx hardhat --network demonet deploy-erc20 "USDT" USDT 6) USDT_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "USDT" USDT 6)
USDT_CONTRACT_ADDRESS=${USDT_CONTRACT_DEPLOY: -42} USDT_CONTRACT_ADDRESS=${USDT_CONTRACT_DEPLOY: -42}
npx hardhat --network demonet mint-erc20 "$USDT_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000 npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$USDT_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
# deploy and fund DAI contract # deploy and fund DAI contract
DAI_CONTRACT_DEPLOY=$(npx hardhat --network demonet deploy-erc20 "DAI" DAI 18) DAI_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "DAI" DAI 18)
DAI_CONTRACT_ADDRESS=${DAI_CONTRACT_DEPLOY: -42} DAI_CONTRACT_ADDRESS=${DAI_CONTRACT_DEPLOY: -42}
npx hardhat --network demonet mint-erc20 "$DAI_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000 npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$DAI_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000

View File

@ -5,10 +5,6 @@ on:
workflows: [Continuous Integration (Kava Master)] workflows: [Continuous Integration (Kava Master)]
types: types:
- completed - completed
push:
# run CD on any push to the development branch
branches:
- ls-internal-testnet-cd-go-live
jobs: jobs:
# in order: # in order:
@ -23,8 +19,8 @@ jobs:
uses: ./.github/workflows/cd-reset-internal-testnet.yml uses: ./.github/workflows/cd-reset-internal-testnet.yml
with: with:
aws-region: us-east-1 aws-region: us-east-1
chain-id: demo_2221-17000 chain-id: kava_2221-17000
ssm-document-name: kava-demonet-node-update ssm-document-name: kava-testnet-internal-node-update
playbook-name: reset-internal-testnet-playbook.yml playbook-name: reset-internal-testnet-playbook.yml
playbook-infrastructure-branch: master playbook-infrastructure-branch: master
secrets: inherit secrets: inherit
@ -34,8 +30,8 @@ jobs:
uses: ./.github/workflows/cd-start-chain.yml uses: ./.github/workflows/cd-start-chain.yml
with: with:
aws-region: us-east-1 aws-region: us-east-1
chain-id: demo_2221-17000 chain-id: kava_2221-17000
ssm-document-name: kava-demonet-node-update ssm-document-name: kava-testnet-internal-node-update
playbook-name: start-chain-api-playbook.yml playbook-name: start-chain-api-playbook.yml
playbook-infrastructure-branch: master playbook-infrastructure-branch: master
secrets: inherit secrets: inherit
@ -45,8 +41,9 @@ jobs:
seed-chain-state: seed-chain-state:
uses: ./.github/workflows/cd-seed-chain.yml uses: ./.github/workflows/cd-seed-chain.yml
with: with:
chain-api-url: https://rpc.data.demonet.us-east.production.kava.io:443 chain-api-url: https://rpc.app.internal.testnet.us-east.production.kava.io:443
chain-id: kava_2221-17000 chain-id: kava_2221-17000
seed-script-filename: seed-internal-testnet.sh seed-script-filename: seed-internal-testnet.sh
erc20-deployer-network-name: internal_testnet
secrets: inherit secrets: inherit
needs: [start-chain-api] needs: [start-chain-api]

View File

@ -12,6 +12,9 @@ on:
seed-script-filename: seed-script-filename:
required: true required: true
type: string type: string
erc20-deployer-network-name:
required: true
type: string
secrets: secrets:
DEV_WALLET_MNEMONIC: DEV_WALLET_MNEMONIC:
required: true required: true
@ -66,3 +69,4 @@ jobs:
CHAIN_ID: ${{ inputs.chain-id }} CHAIN_ID: ${{ inputs.chain-id }}
DEV_WALLET_MNEMONIC: ${{ secrets.DEV_WALLET_MNEMONIC }} DEV_WALLET_MNEMONIC: ${{ secrets.DEV_WALLET_MNEMONIC }}
SEED_SCRIPT_FILENAME: ${{ inputs.seed-script-filename }} SEED_SCRIPT_FILENAME: ${{ inputs.seed-script-filename }}
ERC20_DEPLOYER_NETWORK_NAME: ${{ inputs.erc20-deployer-network-name }}