Skip to content

Instantly share code, notes, and snippets.

View CodeFuentes's full-sized avatar

Carlos Fuentes CodeFuentes

View GitHub Profile
@CodeFuentes
CodeFuentes / circulating_supply.go
Created May 11, 2019 15:32
Example: Calculate circulating supply for geth private network
/**
* Go playground: https://play.golang.org/p/DaCCAm2KGZ6
*/
package main
import (
"fmt"
"math/big"
)
@CodeFuentes
CodeFuentes / testgist.go
Created July 21, 2020 14:45
Test golang gist for BEON
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, BEON")
}