Skip to content

Instantly share code, notes, and snippets.

View jcbombardelli's full-sized avatar
:shipit:
Ever Focusing

JC Bombardelli jcbombardelli

:shipit:
Ever Focusing
View GitHub Profile
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker ${USER}
@jcbombardelli
jcbombardelli / testeTransaction.go
Last active March 13, 2018 18:50
Código para executar transação entre carteiras usando o Geth do EthereumClassic
package ethereum
import (
"fmt"
"time"
web3 "github.com/regcostajr/go-web3"
)
func main() {