Skip to content

Instantly share code, notes, and snippets.

@asverty
Last active December 17, 2021 11:30
Show Gist options
  • Save asverty/adb8a5be72d0e24ae83943aa763590ef to your computer and use it in GitHub Desktop.
Save asverty/adb8a5be72d0e24ae83943aa763590ef to your computer and use it in GitHub Desktop.
#Setting variables (you can put your own instead mine: $EVMS_NDNM, $EVMS_WLLT etc)
#Setting chain variable (Arsia Mons)
EVMS_CHN=evmos_9000-1
#Setting chain variable (Olympus Mons)
EVMS_CHN=evmos_9000-2
#Setting your node name variable
EVMS_NDNM="hodl"
#Setting your wallet address variable
EVMS_WLLT="evmos1hd6qmpshxztc4p3zn2gu3ly6pz2u05hda0chs5"
#Setting your PGP key variable (for identity)
EVMS_PGPK="B408D693B9E27CB2"
#Setting your validator address variable
EVMS_VLPR="evmosvaloper1hd6qmpshxztc4p3zn2gu3ly6pz2u05hdsph83f"
#Save my variables
echo 'export EVMS_CHN='${EVMS_CHN} >> $HOME/.bash_profile
echo 'export EVMS_NDNM='${EVMS_NDNM} >> $HOME/.bash_profile
echo 'export EVMS_WLLT='${EVMS_WLLT} >> $HOME/.bash_profile
echo 'export EVMS_PGPK='${EVMS_PGPK} >> $HOME/.bash_profile
echo 'export EVMS_VLPR='${} >> $HOME/.bash_profile
source $HOME/.bash_profile
#And check it for created
echo $EVMS_CHN
echo $EVMS_NDNM
...
#Output
evmos_9000-1
hodl
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment