File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 1- # stellar-identicon-go
1+ # Stellar Identicon Generator (Golang)
2+
3+ The go implementation of [ SEP-0033] ( https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0033.md ) ,
4+ which you can use to generate identicons for Stellar wallets - unique icons, generated based on the wallet public key.
5+
6+ ## Install
7+ ``` shell
8+ go get -u github.com/overcat/stellar-identicon-go
9+ ```
10+
11+ ## Usage
12+ ``` go
13+ import identicon " github.com/overcat/stellar-identicon-go"
14+
15+ func main () {
16+ publicKey := " GAQL4ZLRIJBGSCXE6XC4XPZ5W6FGCJHXLAMB4M7ZQ52HFPDTL6GSVP4W"
17+ img , err := identicon.Generate (publicKey, identicon.Width , identicon.Height )
18+ if err != nil {
19+
20+ }
21+ }
22+ ```
23+
24+ ## Thanks
25+ This project was inspired by [ LOBSTR] ( https://github.com/Lobstrco ) .
You can’t perform that action at this time.
0 commit comments