Skip to main content

Connect to Ganache using Golang

Previous Topic: Ganache Overview

Connect to Ganache:

We are going use the go-ethereum - ethclient package to make a connection with the ganache server using Golang.
 go get github.com/ethereum/go-ethereum/ethclient
In the below example, we are just simply connecting with ganache server and retrieve the chain Id value from the server.
 package main
 import (
	"context"
	"fmt"
	"log"

	"github.com/ethereum/go-ethereum/ethclient"
 )

 func main() {

	client, err := ethclient.Dial("http://127.0.0.1:7545")
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Connection with ganache successful")

	chainId, err := client.ChainID(context.Background())
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Chain Id :", chainId)
 }

Output:

Connection with ganache successful
Chain Id : 1337

Retrieving Balance for the accounts:

 go get github.com/ethereum/go-ethereum/common
In the below example, we are going to retrieve the balance of address.
 package main

 import (
	"context"
	"fmt"
	"log"
	"math/big"

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/ethclient"
 )

 func main() {

	client, err := ethclient.Dial("http://127.0.0.1:7545")
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Connection with ganache successful")

	blockNumber, err := client.BlockNumber(context.Background())
	if err != nil {
		log.Fatal(err)
	}

	address := common.HexToAddress("0xA3A0634b58CB4f800f4f4c1f61ba8d0f361a29Cf")
	accountBalance, err := client.BalanceAt(context.Background(), address, big.NewInt(int64(blockNumber)))
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Account - "+address.String()+" Balance:", accountBalance)
 }

Output:

Connection with ganache successful
Account - 0xA3A0634b58CB4f800f4f4c1f61ba8d0f361a29Cf Balance: 100000000000000000000


Comments

Popular posts from this blog

Why Go Language?

Go Language: Open Source Programming language Statically Typed language Makes sharing code easy Similar to C programming language Organization that use Go includes Google, Docker, Kubernetes, Cloudflare, Dropbox, Netflix & Uber. Why Go language? C like Syntax Compiles to native code i.e. one executable file is need to run the whole program. Garbage collection Concurrency built-in language Compatibility promise → Once a program written to the go one specification will continue to compile and run correctly, over the lifetime of that specification. Why Go Compiler is fast? Simple and Minimalistic (20 keywords only) Does not allows unused dependencies No circular dependencies Does not use header files Solving Modern problems with Go: Go has concise syntax with few keywords to remember. Languages like C or C++ offers fast execution, whereas languages like Ruby or Python offers rapid application development, Go bridges these computing worlds and offers development fast. Modern Computers ...

Copy function in Golang

How Copy function works ? The built-in copy function copies the source element into the destination element and returns the destination element length.   func Copy( dst , src [] Type) int There are some special case using this function which is we can copy a string into an byte slice variable   func Copy( dst []byte, src string) int Examples: package main import "fmt" func main() { var arr = make([]string, 2) n := copy(arr, []string{"hi", "hello", "welcome", "ll"}) fmt.Println("element length :", n) fmt.Println("values :", arr) } Output: element length : 2 values : [hi hello] Special Case example: package main import "fmt" func main() { var b = make([]byte, 5) // copy from a string to byte slice n := copy(b, "vicky") fmt.Println("element length :", n) fmt.Println("values :", string(b)) } Output: element length : 5 values : vicky

Go Constants

The keyword for Golang Constant is const  , Once the Constant variable declared it cannot be modified. Same as Var keyword, we can declare constant as two types.     1. Typed      --  const  a string = "abc"       2. Untyped --  const  a ="abc"  Example for using Golang Constants: package main import "fmt" // declaring Multiple variables const ( a = 1 b = "hi" c = 1.1 ) func main() { fmt.Println(a) fmt.Println(b) fmt.Println(c) } Output: 1 hi 1.1 Another Example: package main import "fmt" func main() { const a = "Hello" a = "Hi" fmt.Println(a) } Output: ./prog.go:7:2: cannot assign to a (untyped string constant "Hello") Go build failed. Another Example: package main import "fmt" func main() { // declare and initialize a constant string const s string = "MY_CONST" // define a custom string type - str type str string // storing the const variable in a new variable is all...