Building a Static Website with Hugo
Quickly create a personal website using markdown syntax
A Bit everyday A Byte every week
Quickly create a personal website using markdown syntax
The different between pointer and value for struct type in golang with examples
Generating a Go package with abigen tool to interact with smart contracts and perform contract operations
Previously, I was calling Smart Contracts through PHP, which raised two issues.
One was the slowness, and the other was the lack of maintenance of the package.
Fortunately, Golang provides an official package that is both fast and solves these two problems.
This article explains how to convert existing Smart Contract ABIs into a Go package for interacting with contracts.
Understanding Go concurrency using the official tutorial
Entering the world of Golang, we first explore basic Golang usage using the official tutorial: A Tour of Go
.
This section introduces the powerful concurrency feature of Go.
Understanding Go interface and error using official tutorials
Entering the world of Golang, we first explore the basics of Golang using the official tutorial: A Tour of Go
.
This piece introduces interfaces and errors.
Understanding Go method using official tutorials
Entering the world of Golang, we first acquaint ourselves with basic Golang usage using the official tutorial: A Tour of Go
.
This article introduces methods in Go.
Understanding Go Range, Map, and Function using official tutorials
Entering the world of Golang, we first acquaint ourselves with basic Golang usage using the official tutorial: A Tour of Go
.
This article introduces Range, Map, and Function.