Skip to content

Instantly share code, notes, and snippets.

@asverty
Last active October 8, 2022 12:15
Show Gist options
  • Save asverty/c2c862fa005f580c444c8e524f717806 to your computer and use it in GitHub Desktop.
Save asverty/c2c862fa005f580c444c8e524f717806 to your computer and use it in GitHub Desktop.
#update variable with wallet address
DP_WLLT="PASTE_MY_WALLET_ADDRESS"
#keybase PGP key for identity
DP_PGPK="PASTE_MY_PGP_KEY"
#tcp variable for --node
DP_TCP="tcp://127.0.0.1:26652"
#save variables
echo 'export DP_WLLT='${DP_WLLT} >> $HOME/.bash_profile
echo 'export DP_PGPK='${DP_PGPK} >> $HOME/.bash_profile
echo 'export DP_TCP='${DP_TCP} >> $HOME/.bash_profile
source $HOME/.bash_profile
#check variables
echo $DP_WLLT
...
...
echo $DP_TCP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment