jazzicon 1.1.0 copy "jazzicon: ^1.1.0" to clipboard
jazzicon: ^1.1.0 copied to clipboard

Identicon for wallet address

DESCRIPTIONDESCRIPTION #

This package is contain how to make idention. identicon usually use as an avatar of your wallet / crypto avatar. it is unique because generated by your address.


METAMASKMETAMASK

Widget And JazziconData() #

Add list of address wallet / coin. Make sure the address is valid.

Jazzicon.getIconWidget need JazziconData. You can make JazziconData by calling Jazzicon.getJazziconData()

Example :

Jazzicon.getIconWidget(Jazzicon.getJazziconData(
160, 
address: "0xfe3526e15Bd6dAD0796B84bEb548b603B6B6E444"))

Result :


If you make mistake and input the wrong code, example : DO NOT DO THIS

Jazzicon.getIconWidget(Jazzicon.getJazziconData(
160, 
address: "random string here"))

ERROR RESULT

*note : if address is not valid the image will return grey image. ***** Example of valid address. You can open the example if you want to see more how to use this.

  List<String> addresslist = [
    "0x123C3F273bE7d218A6Ab040D421b51237945ce11",
    "0x576C3F273bE7d218A6Eb040D421b51237945ce10",
    "0xEB8D9FDcf121bbae84c4E91aE47E9348c367c7F4",
    "0xb9bd886414b2d37b73c1266ebcb9d7f5fdb7383b",
    "0xb934F4294Df760290e969F355C107752400150bB",
    "0x318406407ea60F2E1C305bEd64Fb4A9db72AA6bD",
    "0x07Becc171101448476ABF27C1f73989F945A0742",
    "0xfe3526e15Bd6dAD0796B84bEb548b603B6B6E444",
  ];

Example :


Open for contributor