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
const ethers = require('ethers'); | |
const { Contract, Wallet, providers } = ethers; | |
const CONTRACT_ADDRESS = '<contract-address-hash>'; | |
const CONTRACT_ABI = '<contract-abi-json>'; | |
const PRIVATE_KEY = '<private-key-hash>'; | |
const DESTINATION_WALLET = '<destination-address-hash>'; | |
const AMOUNT = '<tokens-amount>'; |
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
#!/bin/sh | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
echo "Installing Xcode cli tools..." | |
xcode-select --install | |
# echo Install and Set San Francisco as System Font | |
# ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
echo "Install Homebrew, cask and some other packages..." |