mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 06:59:41 +00:00 
			
		
		
		
	add and use separate seed scripts for internal testnet and protonet
This commit is contained in:
		
							parent
							
								
									b9bd2c5173
								
							
						
					
					
						commit
						91e7933a55
					
				
							
								
								
									
										2
									
								
								.github/scripts/seed-internal-testnet.sh
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/scripts/seed-internal-testnet.sh
									
									
									
									
										vendored
									
									
								
							@ -92,4 +92,4 @@ do
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
# create a text proposal
 | 
			
		||||
kava tx gov submit-legacy-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
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										95
									
								
								.github/scripts/seed-protonet.sh
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										95
									
								
								.github/scripts/seed-protonet.sh
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@ -0,0 +1,95 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
set -ex
 | 
			
		||||
 | 
			
		||||
# configure kava binary to talk to the desired chain endpoint
 | 
			
		||||
kava config node "${CHAIN_API_URL}"
 | 
			
		||||
kava config chain-id "${CHAIN_ID}"
 | 
			
		||||
 | 
			
		||||
# 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
 | 
			
		||||
DEV_TEST_WALLET_ADDRESS="0x7E08fa61f22f1A40B4617b887eD24b85CDaf33c2"
 | 
			
		||||
WEBAPP_E2E_WHALE_ADDRESS="0x0252284098b19036F81bd22851f8699042fafac2"
 | 
			
		||||
 | 
			
		||||
# setup kava ethereum compatible account for deploying
 | 
			
		||||
# 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)
 | 
			
		||||
kava tx issuance issue 200000000ukava kava1van3znl6597xgwwh46jgquutnqkwvwszjg04fz --from dev-wallet --gas-prices 0.5ukava -y
 | 
			
		||||
 | 
			
		||||
# deploy and fund USDC ERC20 contract
 | 
			
		||||
USD_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "USD Coin" USDC 6)
 | 
			
		||||
USD_CONTRACT_ADDRESS=${USD_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$USD_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# # deploy and fund wKava ERC20 contract
 | 
			
		||||
wKAVA_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "Wrapped Kava" wKava 6)
 | 
			
		||||
wKAVA_CONTRACT_ADDRESS=${wKAVA_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wKAVA_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# deploy and fund BNB contract
 | 
			
		||||
BNB_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "Binance" BNB 8)
 | 
			
		||||
BNB_CONTRACT_ADDRESS=${BNB_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$BNB_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# deploy and fund USDT contract
 | 
			
		||||
USDT_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "USDT" USDT 6)
 | 
			
		||||
USDT_CONTRACT_ADDRESS=${USDT_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$USDT_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# deploy and fund DAI contract
 | 
			
		||||
DAI_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "DAI" DAI 18)
 | 
			
		||||
DAI_CONTRACT_ADDRESS=${DAI_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$DAI_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# 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}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wBTC_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 100000000000000
 | 
			
		||||
 | 
			
		||||
# deploy and fund wETH ERC20 contract
 | 
			
		||||
wETH_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "Wrapped wETH" ETH 18)
 | 
			
		||||
wETH_CONTRACT_ADDRESS=${wETH_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wETH_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000000000000
 | 
			
		||||
 | 
			
		||||
# deploy and fund axlUSDC ERC20 contract
 | 
			
		||||
AXLUSD_CONTRACT_DEPLOY=$(npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" deploy-erc20 "USD Coin" USDC 6)
 | 
			
		||||
AXLUSD_CONTRACT_ADDRESS=${AXLUSD_CONTRACT_DEPLOY: -42}
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$AXLUSD_CONTRACT_ADDRESS" 0x6767114FFAA17C6439D7AEA480738B982CE63A02 1000000000000
 | 
			
		||||
 | 
			
		||||
# seed some evm wallets
 | 
			
		||||
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
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wETH_CONTRACT_ADDRESS" "$DEV_TEST_WALLET_ADDRESS" 1000000000000000000000
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$AXLUSD_CONTRACT_ADDRESS" "$DEV_TEST_WALLET_ADDRESS" 100000000000
 | 
			
		||||
 | 
			
		||||
# seed webapp E2E whale account
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wBTC_CONTRACT_ADDRESS" "$WEBAPP_E2E_WHALE_ADDRESS" 100000000000000
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$USD_CONTRACT_ADDRESS" "$WEBAPP_E2E_WHALE_ADDRESS" 1000000000000
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$wETH_CONTRACT_ADDRESS" "$WEBAPP_E2E_WHALE_ADDRESS" 10000000000000000000000
 | 
			
		||||
npx hardhat --network "${ERC20_DEPLOYER_NETWORK_NAME}" mint-erc20 "$AXLUSD_CONTRACT_ADDRESS" "$WEBAPP_E2E_WHALE_ADDRESS" 10000000000000
 | 
			
		||||
 | 
			
		||||
# give dev-wallet enough delegation power to pass proposals by itself
 | 
			
		||||
 | 
			
		||||
# issue kava to dev wallet for delegating to each validator
 | 
			
		||||
kava tx issuance issue 6000000000ukava kava1vlpsrmdyuywvaqrv7rx6xga224sqfwz3fyfhwq \
 | 
			
		||||
  --from dev-wallet --gas-prices 0.5ukava -y
 | 
			
		||||
 | 
			
		||||
# parse space seperated list of validators
 | 
			
		||||
# into bash array
 | 
			
		||||
read -r -a GENESIS_VALIDATOR_ADDRESS_ARRAY <<< "$GENESIS_VALIDATOR_ADDRESSES"
 | 
			
		||||
 | 
			
		||||
# delegate 300KAVA to each validator
 | 
			
		||||
for validator in "${GENESIS_VALIDATOR_ADDRESS_ARRAY[@]}"
 | 
			
		||||
do
 | 
			
		||||
  kava tx staking delegate "${validator}" 300000000ukava --from dev-wallet --gas-prices 0.5ukava -y
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
# create a text proposal
 | 
			
		||||
kava tx gov submit-legacy-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
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/cd-protonet.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/cd-protonet.yml
									
									
									
									
										vendored
									
									
								
							@ -43,7 +43,7 @@ jobs:
 | 
			
		||||
    with:
 | 
			
		||||
      chain-api-url: https://rpc.app.protonet.us-east.production.kava.io:443
 | 
			
		||||
      chain-id: proto_2221-17000
 | 
			
		||||
      seed-script-filename: seed-internal-testnet.sh
 | 
			
		||||
      seed-script-filename: seed-protonet.sh
 | 
			
		||||
      erc20-deployer-network-name: protonet
 | 
			
		||||
      genesis_validator_addresses: "kavavaloper14w4avgdvqrlpww6l5dhgj4egfn6ln7gmtp7r2m"
 | 
			
		||||
    secrets: inherit
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user