Skip to content

Commit

Permalink
deploy mainnet script
Browse files Browse the repository at this point in the history
  • Loading branch information
janfabian committed Jun 29, 2023
1 parent 4d63656 commit 8493f5f
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 13 deletions.
88 changes: 88 additions & 0 deletions scripts/deploy-mainnet.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
#!/usr/bin/env bash

set -euo pipefail
shopt -s inherit_errexit

ADMIN=${1:-juno1sp3wrffwvtsaz255x63w7c5m40glej8p3vwcwt}

JUNOFARMS_PATH='../junofarms'

function update_contract_address {
local new_address="${1}"

sed -i "s/\(VITE_CONTRACT_ADDRESS=\).*/\1${new_address}/g" "${JUNOFARMS_PATH}/package/ui/.env"
}

function compile {
docker run --rm -v "$(pwd)":/code:Z \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/rust-optimizer:0.12.11
}

function upload_code {
local tx_hash
tx_hash="$(junod tx wasm store artifacts/juno_farm_hackathon_template.wasm --from "${ADMIN}" --gas-prices 0.075ujuno --gas auto --gas-adjustment 1.1 -o json -y | jq '.txhash' -r)"
sleep 10

junod query tx "${tx_hash}" -o json | jq '.logs[0].events[] | select(.type=="store_code") | .attributes[] | select(.key=="code_id") | .value' -r
}

function instantiate {
local code_id="${1}"

local instantiate_msg
instantiate_msg=$(cat <<-END
{
"admin": "%s",
"komple_mint_addr": "%s"
}
END
)

local komple_mint_addr
komple_mint_addr=juno17rth4jstxs7cmrusvyluwlnt34l80cxaz7nufpjfntts00pk79asjxelgs

local msg
msg="$(printf "${instantiate_msg}" "$ADMIN" "$komple_mint_addr")"

local tx_hash
tx_hash=$(junod tx wasm instantiate "${code_id}" "${msg}" --from "${ADMIN}" --admin "${ADMIN}" --gas-prices 0.075ujuno --gas auto --gas-adjustment 1.1 --label " " -o json -y | jq '.txhash' -r)
sleep 10

junod query tx "${tx_hash}" -o json | jq 'last(.logs[0].events[] | .attributes[] | select(.key=="_contract_address") | .value)' -r
}

function migrate {
local code_id="${1}"
local contract_addr="${2}"

tx_hash=$(junod --from "${ADMIN}" tx wasm migrate "${contract_addr}" "${code_id}" '{}' --gas-prices 0.075ujuno --gas auto --gas-adjustment 1.2 -o json -y | jq '.txhash' -r )
echo "Migration TX hash: ${tx_hash}"
}

function deploy_new {
compile
local code_id
code_id=$(upload_code)
echo "CODE_ID: ${code_id}"
local contract_addr
contract_addr="$(instantiate "${code_id}")"
echo "CONTRACT_ADDR: ${contract_addr}"
echo "${contract_addr}" > ./scripts/contract-address
update_contract_address "${contract_addr}"
}

function deploy_update {
compile
local code_id
code_id=$(upload_code)
local contract_addr
contract_addr="$(cat scripts/contract-address-junox)"
echo "CODE_ID: ${code_id}"
echo "CONTRACT_ADDR: ${contract_addr}"
migrate "${code_id}" "${contract_addr}"
}

deploy_new
# deploy_update
27 changes: 14 additions & 13 deletions scripts/setup-farm.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
CONTRACT_ADDR=$(<./scripts/contract-address-junox)

ADMIN="${SENDER:-juno1zk4c4aamef42cgjexlmksypac8j5xw7n3s4wrd}"

MEADOW='{"type": "meadow"}'
SUNFLOWER_1='{"type": "field", "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2100095, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_2='{"type": "field", "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2100095, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_3='{"type": "field", "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2100095, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_4='{"type": "field", "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2100095, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_5='{"type": "field", "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2100095, "watered_at": [1,1,1,1,1]} }'

WHEAT_1='{"type": "field", "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2100095, "watered_at": [1,1,1,1]} }'
WHEAT_2='{"type": "field", "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2100095, "watered_at": [1,1,1,1]} }'
WHEAT_3='{"type": "field", "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2100095, "watered_at": [1,1,1,1]} }'
WHEAT_4='{"type": "field", "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2100095, "watered_at": [1,1,1,1]} }'
WHEAT_5='{"type": "field", "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2100095, "watered_at": [1,1,1,1]} }'
LAST_BLOCK=2123734

MEADOW='{"type": "meadow", "created_at": 2123734}'
SUNFLOWER_1='{"type": "field", "created_at": 2123734, "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2123734, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_2='{"type": "field", "created_at": 2123734, "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2123734, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_3='{"type": "field", "created_at": 2123734, "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2123734, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_4='{"type": "field", "created_at": 2123734, "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2123734, "watered_at": [1,1,1,1,1]} }'
SUNFLOWER_5='{"type": "field", "created_at": 2123734, "plant": {"type": "sunflower", "growth_period": 10, "stages": 5, "created_at": 2123734, "watered_at": [1,1,1,1,1]} }'

WHEAT_1='{"type": "field", "created_at": 2123734, "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2123734, "watered_at": [1,1,1,1]} }'
WHEAT_2='{"type": "field", "created_at": 2123734, "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2123734, "watered_at": [1,1,1,1]} }'
WHEAT_3='{"type": "field", "created_at": 2123734, "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2123734, "watered_at": [1,1,1,1]} }'
WHEAT_4='{"type": "field", "created_at": 2123734, "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2123734, "watered_at": [1,1,1,1]} }'
WHEAT_5='{"type": "field", "created_at": 2123734, "plant": {"type": "wheat", "growth_period": 10, "stages": 4, "created_at": 2123734, "watered_at": [1,1,1,1]} }'

SETUP_FARM_MSG=$(cat <<-END
{
Expand Down

0 comments on commit 8493f5f

Please sign in to comment.