New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@us3r-network/profile

Package Overview
Dependencies
Maintainers
5
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@us3r-network/profile

the us3r profile components

latest
npmnpm
Version
0.7.2-alpha.1
Version published
Maintainers
5
Created
Source

@us3r-network/profile

We created a data model about user profile based on ceramic, and provided crud SDK for the model, and commonly used react components related to profile

License npm version npm downloads

Install

npm install @us3r-network/auth-with-rainbowkit @us3r-network/profile

Where @us3r-network/auth-with-rainbowkit is the peerDependencies of @us3r-network/profile

Usage

You need to wrap your application with Us3rAuthWithRainbowkitProvider and ProfileStateProvider first.

import { PropsWithChildren } from "react";
import { Us3rAuthWithRainbowkitProvider } from "@us3r-network/auth-with-rainbowkit";
import { ProfileStateProvider } from "@us3r-network/profile";

export default function App({ children }: PropsWithChildren) {
  return (
    <Us3rAuthWithRainbowkitProvider>
      <ProfileStateProvider ceramicHost={process.env.REACT_APP_CERAMIC_HOST}>
        {children}
      </ProfileStateProvider>
    </Us3rAuthWithRainbowkitProvider>
  );
}

Then you can start using our components. For more information, please refer to our component documentation storybook.

FAQs

Package last updated on 20 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts