polkadot-identicon
TypeScript icon, indicating that this package has built-in type declarations

1.1.45 • Public • Published

polkadot-identicon

A Polkadot-themed SS58 identicon

usage

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

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

import Identicon from 'polkadot-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}
        />
    );
}
...

Package Sidebar

Install

npm i polkadot-identicon

Weekly Downloads

10

Version

1.1.45

License

Apache-2.0

Unpacked Size

18.6 kB

Total Files

5

Last publish

Collaborators

  • gavofyork