forked from ComposableFi/picasso
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kien/setup test upgrade 08 wasms (#19)
* feat: add env package * test: update localnode scripts * feat: running old node * feat: scripts to run old node * feat: run preupgrade * perf: tweak blocktime, and run upgrade * test: migrate 08 wasm data * feat: check if code exist
- Loading branch information
Showing
13 changed files
with
381 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,74 @@ | ||
#!/bin/bash | ||
|
||
echo "starting localnode" | ||
|
||
BINARY=$1 | ||
KEY="mykey" | ||
CHAINID="localpica" | ||
MONIKER="localtestnet" | ||
KEYALGO="secp256k1" | ||
KEYRING="test" | ||
LOGLEVEL="info" | ||
CONTINUE=${CONTINUE:-"false"} | ||
# to trace evm | ||
#TRACE="--trace" | ||
TRACE="" | ||
|
||
HOME_DIR=mytestnet | ||
ENV=${ENV:-""} | ||
DENOM=${2:-ppica} | ||
|
||
|
||
if [ "$CONTINUE" == "true" ]; then | ||
echo "\n ->> continuing from previous state" | ||
$BINARY start --home $HOME_DIR --log_level debug | ||
exit 0 | ||
fi | ||
|
||
|
||
# remove existing daemon | ||
rm -rf $HOME_DIR | ||
pkill centaurid | ||
|
||
# check DENOM is set. If not, set to upica | ||
DENOM=${2:-ppica} | ||
echo "denom: $DENOM" | ||
COMMISSION_RATE=0.01 | ||
COMMISSION_MAX_RATE=0.02 | ||
|
||
SED_BINARY=sed | ||
# check if this is OS X | ||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
# check if gsed is installed | ||
if ! command -v gsed &> /dev/null | ||
then | ||
echo "gsed could not be found. Please install it with 'brew install gnu-sed'" | ||
exit | ||
else | ||
SED_BINARY=gsed | ||
fi | ||
fi | ||
# centaurid config keyring-backend $KEYRING | ||
# centaurid config chain-id $CHAINID | ||
|
||
# check BINARY is set. If not, build centaurid and set BINARY | ||
if [ -z "$BINARY" ]; then | ||
make build | ||
BINARY=centaurid | ||
fi | ||
# if $KEY exists it should be deleted | ||
$BINARY init $MONIKER --chain-id $CHAINID --home $HOME_DIR > /dev/null 2>&1 | ||
|
||
CHAIN_ID="localpica" | ||
KEYRING="test" | ||
KEY="test0" | ||
KEY1="test1" | ||
KEY2="test2" | ||
echo "decorate bright ozone fork gallery riot bus exhaust worth way bone indoor calm squirrel merry zero scheme cotton until shop any excess stage laundry" | $BINARY keys add $KEY --keyring-backend $KEYRING --algo $KEYALGO --recover --home $HOME_DIR | ||
|
||
# Function updates the config based on a jq argument as a string | ||
update_test_genesis () { | ||
# update_test_genesis '.consensus_params["block"]["max_gas"]="100000000"' | ||
cat $HOME_DIR/config/genesis.json | jq "$1" > $HOME_DIR/config/tmp_genesis.json && mv $HOME_DIR/config/tmp_genesis.json $HOME_DIR/config/genesis.json | ||
} | ||
|
||
$BINARY init --chain-id $CHAIN_ID moniker --home $HOME_DIR | ||
|
||
$BINARY keys add $KEY --keyring-backend $KEYRING --home $HOME_DIR | ||
$BINARY keys add $KEY1 --keyring-backend $KEYRING --home $HOME_DIR | ||
$BINARY keys add $KEY2 --keyring-backend $KEYRING --home $HOME_DIR | ||
|
||
# Allocate genesis accounts (cosmos formatted addresses) | ||
$BINARY add-genesis-account $KEY "1000000000000000000000${DENOM}" --keyring-backend $KEYRING --home $HOME_DIR | ||
$BINARY add-genesis-account $KEY1 "1000000000000000000000${DENOM}" --keyring-backend $KEYRING --home $HOME_DIR | ||
$BINARY add-genesis-account $KEY2 "1000000000000000000000${DENOM}" --keyring-backend $KEYRING --home $HOME_DIR | ||
$BINARY add-genesis-account $KEY 100000000000000000000000000$DENOM --keyring-backend $KEYRING --home $HOME_DIR | ||
|
||
$BINARY add-genesis-account centauri1hj5fveer5cjtn4wd6wstzugjfdxzl0xpzxlwgs "1000000000000000000000${DENOM}" --keyring-backend $KEYRING --home $HOME_DIR | ||
|
||
# Sign genesis transaction | ||
$BINARY gentx $KEY 1000000000000000000000$DENOM --keyring-backend $KEYRING --chain-id $CHAINID --home $HOME_DIR | ||
|
||
update_test_genesis '.app_state["gov"]["params"]["voting_period"]="5s"' | ||
update_test_genesis '.app_state["mint"]["params"]["mint_denom"]="'$DENOM'"' | ||
update_test_genesis '.app_state["gov"]["params"]["min_deposit"]=[{"denom":"'$DENOM'","amount": "1000000"}]' | ||
update_test_genesis '.app_state["crisis"]["constant_fee"]={"denom":"'$DENOM'","amount":"1000"}' | ||
update_test_genesis '.app_state["staking"]["params"]["bond_denom"]="'$DENOM'"' | ||
|
||
# enable rest server and swagger | ||
$SED_BINARY -i '0,/enable = false/s//enable = true/' $HOME_DIR/config/app.toml | ||
$SED_BINARY -i 's/swagger = false/swagger = true/' $HOME_DIR/config/app.toml | ||
$SED_BINARY -i -e 's/enabled-unsafe-cors = false/enabled-unsafe-cors = true/g' $HOME_DIR/config/app.toml | ||
$SED_BINARY -i 's/minimum-gas-prices = "0.25upica"/minimum-gas-prices = "0.0upica"/' $HOME_DIR/config/app.toml | ||
|
||
## Adjust block time | ||
$SED_BINARY -i 's/timeout_commit = "5s"/timeout_commit = "1000ms"/' $HOME_DIR/config/config.toml | ||
# sed -i 's/timeout_commit = "5s"/timeout_commit = "500ms"/' $HOME_DIR/config/config.toml | ||
|
||
echo "updating.." | ||
sed -i '' 's/timeout_commit = "5s"/timeout_commit = "500ms"/' $HOME_DIR/config/config.toml | ||
|
||
|
||
# Sign genesis transaction | ||
$BINARY gentx $KEY "1000000000000000000000${DENOM}" --commission-rate=$COMMISSION_RATE --commission-max-rate=$COMMISSION_MAX_RATE --keyring-backend $KEYRING --chain-id $CHAIN_ID --home $HOME_DIR | ||
|
||
# Collect genesis tx | ||
$BINARY collect-gentxs --home $HOME_DIR | ||
|
||
# Run this to ensure everything worked and that the genesis file is setup correctly | ||
$BINARY validate-genesis --home $HOME_DIR | ||
$BINARY start --home $HOME_DIR | ||
|
||
if [[ $1 == "pending" ]]; then | ||
echo "pending mode is on, please wait for the first block committed." | ||
fi | ||
|
||
# update request max size so that we can upload the light client | ||
# '' -e is a must have params on mac, if use linux please delete before run | ||
sed -i'' -e 's/max_body_bytes = /max_body_bytes = 1/g' $HOME_DIR/config/config.toml | ||
# Start the node (remove the --pruning=nothing flag if historical queries are not needed) | ||
$BINARY start --pruning=nothing --minimum-gas-prices=0$DENOM --rpc.laddr tcp://0.0.0.0:26657 --home $HOME_DIR --log_level debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
KEY="mykey" | ||
KEYALGO="secp256k1" | ||
KEYRING="test" | ||
HOME_DIR="mytestnet" | ||
# validate dependencies are installed | ||
command -v jq > /dev/null 2>&1 || { echo >&2 "jq not installed. More info: https://stedolan.github.io/jq/download/"; exit 1; } | ||
|
||
./_build/old/centaurid tx 08-wasm push-wasm contracts/ics10_grandpa_cw.wasm --from=mykey --gas 10002152622 --fees 10020166upica --keyring-backend test --chain-id=localpica -y --home $HOME_DIR | ||
|
||
sleep 5 | ||
|
||
./_build/old/centaurid query 08-wasm all-wasm-code --home $HOME_DIR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/bin/bash | ||
BINARY=${1:-_build/old/centaurid} | ||
KEY="mykey" | ||
CHAINID="localpica" | ||
MONIKER="localtestnet" | ||
KEYALGO="secp256k1" | ||
KEYRING="test" | ||
LOGLEVEL="info" | ||
CONTINUE=${CONTINUE:-"false"} | ||
# to trace evm | ||
#TRACE="--trace" | ||
TRACE="" | ||
|
||
HOME_DIR=~/.banksy | ||
DENOM=upica | ||
|
||
if [ "$CONTINUE" == "true" ]; then | ||
echo "\n ->> continuing from previous state" | ||
$BINARY start --home $HOME_DIR --log_level debug | ||
exit 0 | ||
fi | ||
|
||
|
||
# remove existing daemon | ||
rm -rf $HOME_DIR | ||
|
||
# centaurid config keyring-backend $KEYRING | ||
# centaurid config chain-id $CHAINID | ||
|
||
# if $KEY exists it should be deleted | ||
$BINARY init $MONIKER --chain-id $CHAINID --home $HOME_DIR > /dev/null 2>&1 | ||
|
||
echo "decorate bright ozone fork gallery riot bus exhaust worth way bone indoor calm squirrel merry zero scheme cotton until shop any excess stage laundry" | $BINARY keys add $KEY --keyring-backend $KEYRING --algo $KEYALGO --recover --home $HOME_DIR | ||
|
||
update_test_genesis () { | ||
# update_test_genesis '.consensus_params["block"]["max_gas"]="100000000"' | ||
cat $HOME_DIR/config/genesis.json | jq "$1" > $HOME_DIR/config/tmp_genesis.json && mv $HOME_DIR/config/tmp_genesis.json $HOME_DIR/config/genesis.json | ||
} | ||
|
||
# Allocate genesis accounts (cosmos formatted addresses) | ||
$BINARY add-genesis-account $KEY 100000000000000000000000000$DENOM --keyring-backend $KEYRING --home $HOME_DIR | ||
|
||
|
||
# Sign genesis transaction | ||
$BINARY gentx $KEY 1000000000000000000000$DENOM --keyring-backend $KEYRING --chain-id $CHAINID --home $HOME_DIR | ||
|
||
update_test_genesis '.app_state["gov"]["params"]["voting_period"]="50s"' | ||
update_test_genesis '.app_state["mint"]["params"]["mint_denom"]="'$DENOM'"' | ||
update_test_genesis '.app_state["gov"]["params"]["min_deposit"]=[{"denom":"'$DENOM'","amount": "0"}]' | ||
update_test_genesis '.app_state["crisis"]["constant_fee"]={"denom":"'$DENOM'","amount":"1000"}' | ||
update_test_genesis '.app_state["staking"]["params"]["bond_denom"]="'$DENOM'"' | ||
|
||
# sed -i 's/timeout_commit = "5s"/timeout_commit = "500ms"/' $HOME_DIR/config/config.toml | ||
|
||
|
||
# Collect genesis tx | ||
$BINARY collect-gentxs --home $HOME_DIR | ||
|
||
# Run this to ensure everything worked and that the genesis file is setup correctly | ||
$BINARY validate-genesis --home $HOME_DIR | ||
|
||
if [[ $1 == "pending" ]]; then | ||
echo "pending mode is on, please wait for the first block committed." | ||
fi | ||
|
||
# update request max size so that we can upload the light client | ||
# '' -e is a must have params on mac, if use linux please delete before run | ||
sed -i'' -e 's/max_body_bytes = /max_body_bytes = 1/g' $HOME_DIR/config/config.toml | ||
|
||
# Start the node (remove the --pruning=nothing flag if historical queries are not needed) | ||
$BINARY start --pruning=nothing --minimum-gas-prices=0.0001$DENOM --rpc.laddr tcp://0.0.0.0:26657 --home $HOME_DIR --log_level debug |
Oops, something went wrong.