The go implementation of SEP-0033, which you can use to generate identicons for Stellar wallets - unique icons, generated based on the wallet public key.
You can also access online API through Stellar Identicon Generate API (source).
go get -u github.com/StellarCN/stellar-identicon-go
import identicon "github.com/StellarCN/stellar-identicon-go"
func main() {
publicKey := "GAQL4ZLRIJBGSCXE6XC4XPZ5W6FGCJHXLAMB4M7ZQ52HFPDTL6GSVP4W"
img, err := identicon.Generate(publicKey, identicon.Width, identicon.Height)
if err != nil {
}
This project was inspired by LOBSTR.