Skip to content

Instantly share code, notes, and snippets.

Send transactions using the Harmony CLI from a CSV file

Install

  1. (Optional) Open terminal and cd to wherever you want to install your CLI. Personally I like ~/bin.
mkdir -p ~/bin && cd ~/bin
  1. Get the latest Harmony CLI version
curl -O https://raw.githubusercontent.com/harmony-one/go-sdk/master/scripts/hmy.sh && chmod +x ./hmy.sh && ./hmy.sh -d
face suit value
king spades 13
queen spades 12
jack spades 11
ten spades 10
nine spades 9
eight spades 8
seven spades 7
six spades 6
five spades 5
@lijiang2087
lijiang2087 / twitter
Last active September 16, 2020 04:45 — forked from ivorytowerdds/twitter
harmony-twitter
#!/bin/bash
for name in stse rongjianlan leo_hao denni_swon gupadhyaya thechaindev xiaopen01917726 janetlharmony danielvdmaden potvik1 haodi2best JackyTheCoder sahildewan nickwh8te lijiang2087 dirschmidt NikolaosKost GIZEMCAKIL shmula maggiewangharm1 alex_kretsch niteesh_harmony vasilich_nick mannymcoy ashraf_tuhin alpgasimov danboyden drop101001 alex_yatesalex iBruno_marshall sophoah JB273_Jurgen yeiliowsin mindpop3 mirrormirage0 OHHHtis Jenya94203826 derekleesoft; do
echo -n $name ''
curl -s "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=$name&count=200&tweet_mode=extended" \
-H 'x-csrf-token: d39ff7dfbf373012ea78f82d9888d9ed' \
-H 'authorization: Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA' \
-H 'cookie: auth_token=aaaa326d1ee4f9248644fc06996d9ea7ea4e950b; ct0=d39ff7dfbf373012ea78f82d9888d9ed' \
--compressed | python3 -c $'import json, sys\nfor x in json.load(sys.stdin):\n if x["in_reply_to_status_id"] ==
@lijiang2087
lijiang2087 / emoji
Created May 28, 2020 22:04 — forked from ivorytowerdds/emoji
harmony-emoji-3ppl
#!/bin/bash -x
[ -x `which convert` ] || { brew install imagemagick; }
convert \
<(curl -s `curl -sL https://emojipedia.org/$1 | awk -F'[" ]' '$0 ~ /240.apple/ {print $6}'`) \
<(curl -s `curl -sL https://emojipedia.org/$2 | awk -F'[" ]' '$0 ~ /240.apple/ {print $6}'`) \
+append \
'(' \
<(curl -s `curl -sL https://emojipedia.org/$4 | awk -F'[" ]' '$0 ~ /240.apple/ {print $6}'`) \
+append ')' \
-background none -extent x100% \