63 lines
3.4 KiB
Bash
63 lines
3.4 KiB
Bash
#!/bin/bash
|
|
|
|
KEY="mykey"
|
|
CHAINID="ethermint-100"
|
|
MONIKER="localtestnet"
|
|
|
|
# stop and remove existing daemon and client data and process(es)
|
|
rm -rf ~/.ethermint*
|
|
pkill -f "ethermint*"
|
|
|
|
make build-ethermint
|
|
|
|
# if $KEY exists it should be override
|
|
"$PWD"/build/ethermintd keys add $KEY --keyring-backend test --algo "eth_secp256k1"
|
|
|
|
# Set moniker and chain-id for Ethermint (Moniker can be anything, chain-id must be an integer)
|
|
"$PWD"/build/ethermintd init $MONIKER --chain-id $CHAINID
|
|
|
|
# Change parameter token denominations to aphoton
|
|
cat $HOME/.ethermint/config/genesis.json | jq '.app_state["staking"]["params"]["bond_denom"]="stake"' > $HOME/.ethermint/config/tmp_genesis.json && mv $HOME/.ethermint/config/tmp_genesis.json $HOME/.ethermint/config/genesis.json
|
|
cat $HOME/.ethermint/config/genesis.json | jq '.app_state["crisis"]["constant_fee"]["denom"]="aphoton"' > $HOME/.ethermint/config/tmp_genesis.json && mv $HOME/.ethermint/config/tmp_genesis.json $HOME/.ethermint/config/genesis.json
|
|
cat $HOME/.ethermint/config/genesis.json | jq '.app_state["gov"]["deposit_params"]["min_deposit"][0]["denom"]="aphoton"' > $HOME/.ethermint/config/tmp_genesis.json && mv $HOME/.ethermint/config/tmp_genesis.json $HOME/.ethermint/config/genesis.json
|
|
cat $HOME/.ethermint/config/genesis.json | jq '.app_state["mint"]["params"]["mint_denom"]="aphoton"' > $HOME/.ethermint/config/tmp_genesis.json && mv $HOME/.ethermint/config/tmp_genesis.json $HOME/.ethermint/config/genesis.json
|
|
|
|
# Allocate genesis accounts (cosmos formatted addresses)
|
|
"$PWD"/build/ethermintd add-genesis-account "$("$PWD"/build/ethermintd keys show "$KEY" -a --keyring-backend test)" 100000000000000000000aphoton,10000000000000000000stake --keyring-backend test
|
|
|
|
# Sign genesis transaction
|
|
"$PWD"/build/ethermintd gentx $KEY 10000000000000000000stake --amount=100000000000000000000aphoton --keyring-backend test --chain-id $CHAINID
|
|
|
|
# Collect genesis tx
|
|
"$PWD"/build/ethermintd collect-gentxs
|
|
|
|
# Run this to ensure everything worked and that the genesis file is setup correctly
|
|
"$PWD"/build/ethermintd validate-genesis
|
|
|
|
# Start the node (remove the --pruning=nothing flag if historical queries are not needed) in background and log to file
|
|
"$PWD"/build/ethermintd start --pruning=nothing --rpc.unsafe --evm-rpc.address="0.0.0.0:8545" --keyring-backend test > ethermintd.log 2>&1 &
|
|
|
|
# Give ethermintd node enough time to launch
|
|
sleep 5
|
|
|
|
solcjs --abi "$PWD"/tests/solidity/suites/basic/contracts/Counter.sol --bin -o "$PWD"/tests/solidity/suites/basic/counter
|
|
mv "$PWD"/tests/solidity/suites/basic/counter/*.abi "$PWD"/tests/solidity/suites/basic/counter/counter_sol.abi 2> /dev/null
|
|
mv "$PWD"/tests/solidity/suites/basic/counter/*.bin "$PWD"/tests/solidity/suites/basic/counter/counter_sol.bin 2> /dev/null
|
|
|
|
# Query for the account
|
|
ACCT=$(curl --fail --silent -X POST --data '{"jsonrpc":"2.0","method":"eth_accounts","params":[],"id":1}' -H "Content-Type: application/json" http://localhost:8545 | grep -o '\0x[^"]*')
|
|
echo "$ACCT"
|
|
|
|
# Start testcases (not supported)
|
|
# curl -X POST --data '{"jsonrpc":"2.0","method":"personal_unlockAccount","params":["'$ACCT'", ""],"id":1}' -H "Content-Type: application/json" http://localhost:8545
|
|
|
|
#PRIVKEY="$("$PWD"/build/ethermintd keys export $KEY)"
|
|
|
|
## need to get the private key from the account in order to check this functionality.
|
|
cd tests/solidity/suites/basic/ && go get && go run main.go $ACCT
|
|
|
|
# After tests
|
|
# kill test ethermintd
|
|
echo "going to shutdown ethermintd in 3 seconds..."
|
|
sleep 3
|
|
pkill -f "ethermint*" |