npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hns-id-react

v0.1.3

Published

A React component for displaying HNS.ID profiles with customizable styles and interactions

Downloads

217

Readme

hns-id-react

A React component for displaying HNS.ID profiles with customizable styles and interactions. For use on the Optimism network. Visit hns.id for more information.

You can view a live demo here https://hns-id-react.vercel.app/

Table of Contents

Installation

Install the package using npm:

npm install hns-id-react

Or using yarn:

yarn add hns-id-react

Usage

First, import the component in your React file:

import { HnsIdProfile } from 'hns-id-react';

Then, use it in your component:

function App() {
  return (
    <HnsIdProfile address="0x91769843CEc84Adcf7A48DF9DBd9694A39f44b42" />
  );
}

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | address | string | (required) | The Ethereum address to display the profile for | | coinType | number | 614 | The coin type for the address (614 is optimism) | | rpcUrl | string | (optional) | Custom RPC URL for the Optimism network | | isSepolia | boolean | false | Set to true to use Optimism Sepolia testnet | | backgroundColor | string | '#f0f0f0' | Background color of the profile component | | textColor | string | '#000000' | Text color of the profile component | | fontSize | string | '14px' | Font size of the text | | padding | string | '8px 12px' | Padding of the component | | borderRadius | string | '20px' | Border radius of the component | | isWide | boolean | false | If true, uses a wider layout | | showAvatar | boolean | true | Whether to show the avatar | | useDefaultAvatar | boolean | false | If true, uses a default avatar image | | onClick | () => void | (optional) | Function to call when the profile is clicked | | avatarSize | number | 24 | Size of the avatar in pixels | | showTooltip | boolean | false | Whether to show a tooltip on hover | | customLoadingComponent | React.ReactNode | (optional) | Custom component to show while loading | | customErrorComponent | React.ReactNode | (optional) | Custom component to show on error | | showCopyButton | boolean | false | Whether to show a button to copy the address | | theme | 'light' | 'dark' | 'light' | Color theme of the component |

Examples

Basic Usage

<HnsIdProfile address="0x91769843CEc84Adcf7A48DF9DBd9694A39f44b42" />

With Tooltip and Copy Button

<HnsIdProfile 
  address="0x91769843CEc84Adcf7A48DF9DBd9694A39f44b42"
  showTooltip={true}
  showCopyButton={true}
/>

Custom Styling

<HnsIdProfile 
  address="0x91769843CEc84Adcf7A48DF9DBd9694A39f44b42"
  backgroundColor="#1a1a1a"
  textColor="#ffffff"
  fontSize="16px"
  padding="10px 15px"
  borderRadius="25px"
  theme="dark"
/>

With Click Handler

<HnsIdProfile 
  address="0x91769843CEc84Adcf7A48DF9DBd9694A39f44b42"
  onClick={() => console.log('Profile clicked!')}
/>

Development

To set up the development environment:

  1. Clone the repository
  2. Install dependencies with npm install
  3. Start the development server with npm run dev

To build the package:

npm run build

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

If you encounter any problems or have any questions, please open an issue on the GitHub repository.