This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| parse() { | |
| code='\ | |
| import re | |
| import sys | |
| files = sys.argv[1:] | |
| tests = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pip3 install pysha3 eth-account requests | |
| from eth_account.messages import encode_defunct | |
| from eth_account import Account | |
| import sha3 | |
| import json | |
| import os | |
| import requests as req | |
| acc = Account.from_key("4c4b2554e43b374f4cafdd5adaeea5e9aff9b3be54d329bc939752bb747294b9") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env zsh | |
| print_usage() { | |
| if [ -z "$1" ] || [ -z "$2" ]; then | |
| echo "usage: lfbulkrename <lfid> <files_separated_by_newline>" | |
| exit | |
| fi | |
| } | |
| lfecho() { |
NewerOlder