https://github.com/cyphercodes96/Hydro-Snowflake-Identicon-Generator
Generates unique snowflake identicons based on seed phrases
https://github.com/cyphercodes96/Hydro-Snowflake-Identicon-Generator
Last synced: 14 days ago
JSON representation
Generates unique snowflake identicons based on seed phrases
- Host: GitHub
- URL: https://github.com/cyphercodes96/Hydro-Snowflake-Identicon-Generator
- Owner: cyphercodes96
- Created: 2018-10-11T20:23:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-19T08:31:24.000Z (over 6 years ago)
- Last Synced: 2024-11-18T06:46:46.287Z (6 months ago)
- Language: HTML
- Size: 273 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-identicons - Hydro-Snowflake
README
Hydro-Snowflake-Identicon-Generator
===================================A tiny library, based on blockies, for generating unique snowflake identicons for hydro snowflake addresses. These are not meant to replace user profiles, but as security icons, to allow the user to more easily check if an address he wants to interact with is the correct one. The symmetrical aspect of the icons allow our brain see [faces or objects](https://en.wikipedia.org/wiki/Pareidolia), making the icon more recognizable.

Use
---```javascript
var icon = hydroIdenticon.create({ // All options are optional
seed: 'randstring', // seed used to generate icon data, default: random
size: 50, // width/height of the icon in pixels, default: 125
});document.body.appendChild(icon); // icon is a canvas element
```In the above example the icon will be 50x50 pixels.
Blockies
--------https://github.com/ethereum/blockies
Notes
-----The defaults of size 125 generates 125x125 pixel icons. Below are some standard sizes that work well.
* 24x24 `{size: 24}`
* 50x50 `{size: 50}`License
-------[WTFPL](http://www.wtfpl.net/)