diff --git a/scripts/build_release.sh b/scripts/build_release.sh index c3cb7df6..a752be10 100755 --- a/scripts/build_release.sh +++ b/scripts/build_release.sh @@ -54,7 +54,7 @@ juno | terra | chihuahua | migaloo) injective) flag="-injective" ;; -comdex | orai | sei | vanilla) ;; +comdex | orai | sei | archway | vanilla) ;; \*) echo "Network $chain not defined" diff --git a/scripts/deployment/deploy_env/base_env.sh b/scripts/deployment/deploy_env/base_env.sh index 143a99b5..797e7a74 100755 --- a/scripts/deployment/deploy_env/base_env.sh +++ b/scripts/deployment/deploy_env/base_env.sh @@ -7,13 +7,13 @@ output_flag=json case $chain in -local | juno | juno-testnet | terra | terra-testnet | archway-testnet | comdex | comdex-testnet | sei | sei-testnet | stargaze-testnet | osmosis | osmosis-testnet | orai) +local | juno | juno-testnet | terra | terra-testnet | comdex | comdex-testnet | sei | sei-testnet | stargaze-testnet | osmosis | osmosis-testnet | orai) if [ -n "$ZSH_VERSION" ]; then # Using an array for TXFLAG - TXFLAG=(--node $RPC --chain-id $CHAIN_ID --gas-prices 0.15$DENOM --gas auto --gas-adjustment 1.2 -y -b $b_flag --output $output_flag) + TXFLAG=(--node $RPC --chain-id $CHAIN_ID --gas-prices 0.25$DENOM --gas auto --gas-adjustment 1.4 -y -b $b_flag --output $output_flag) else # Using a string for TXFLAG - TXFLAG="--node $RPC --chain-id $CHAIN_ID --gas-prices 0.15$DENOM --gas auto --gas-adjustment 1.2 -y -b $b_flag --output $output_flag" + TXFLAG="--node $RPC --chain-id $CHAIN_ID --gas-prices 0.25$DENOM --gas auto --gas-adjustment 1.4 -y -b $b_flag --output $output_flag" fi ;; @@ -37,6 +37,16 @@ injective | injective-testnet) fi ;; +archway | archway-testnet) + if [ -n "$ZSH_VERSION" ]; then + # Using an array for TXFLAG + TXFLAG=(--node $RPC --chain-id $CHAIN_ID --gas-prices 140000000000.000000000000000000$DENOM --gas auto --gas-adjustment 1.4 -y -b $b_flag --output $output_flag) + else + # Using a string for TXFLAG + TXFLAG="--node $RPC --chain-id $CHAIN_ID --gas-prices 140000000000.000000000000000000$DENOM --gas auto --gas-adjustment 1.4 -y -b $b_flag --output $output_flag" + fi + ;; + *) echo "Network $chain not defined" return 1 diff --git a/scripts/deployment/deploy_env/mainnets/archway.env b/scripts/deployment/deploy_env/mainnets/archway.env new file mode 100644 index 00000000..073971f2 --- /dev/null +++ b/scripts/deployment/deploy_env/mainnets/archway.env @@ -0,0 +1,4 @@ +export CHAIN_ID="archway-1" +export DENOM="aarch" +export BINARY="archwayd" +export RPC="https://rpc-archway.cryptech.com.ua:443"