tetcoin-identicon

A Tetcoin-themed SS58 identicon Spooked React component

Usage no npm install needed!

<script type="module">
  import tetcoinIdenticon from 'https://cdn.skypack.dev/tetcoin-identicon';
</script>

README

tetcoin-identicon

A Tetcoin-themed SS58 identicon

usage

To install the component, do npm install --save tetcoin-identicon

Inside a React component, you can now render any Tetcoin account with the associated icon -

import Identicon from 'tetcoin-identicon';

...
render () {
    // address is either string (ss58-encoded address) or Uint8Array (publicKey)
    const { address } = this.props;
    // size is a number, indicating the size (in pixels)
    const size = 32;

    return (
        <Identicon
            className='my-class'
            account={address}
            size={size}
        />
    );
}
...