1.1.3 • Published 4 months ago

karma-vouch v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Karma Vouch

It provides a set of components and functions that can be used to implement the vouching contract in your web app.

npm version

Made during LFGHO

Installation

npm i karma-vouch

Usage

import useVouch from 'karma-vouch'

...

// In a react component
const {
    JoinDAOButton,
    ExitDAOButton,
    VouchButton,
    getVouches,
    isInDAO 
} = useVouch(
    "0xYOUR_ADDRESS",     // required (used in VouchButton)
    "0xCONTRACT_ADDRESS" // optional
)

JoinDAOButton Component

A button that will join the DAO when clicked. It should only be visible if the user is not already in the DAO.

Props and styles can be added like a regular button

<JoinDAOButton className="..." style={{...}}/>

ExitDAOButton Component

A button that will exit the DAO when clicked. It should only be visible if the user is already in the DAO.

Props and styles can be added like a regular button

<ExitDAOButton className="..." style={{...}}/>

VouchButton Component

A button that will vouch for the given user when clicked. It should only be visible if the user is already joined in the DAO.

Props and styles can be added like a regular button

<VouchButton className="..." style={{...}}/>

getVouches Function

Returns the details about the addresses that have vouched for a specific person and their facilitator details.

const {addresses, facilitator} = await getVouches("0xUSER_ADDRESS")
addresses: string[]
facilitator: {
    bucketCapacity: number
    bucketLevel: number
    label: string
    count: number
    value: number
    addrs: string
}

isInDAO Function

Returns a boolean indicating whether the given address is in the DAO or not.

const joined = await isInDAO("0xUSER_ADDRESS")
joined:boolean
1.1.3

4 months ago

1.1.2

4 months ago

1.1.1

4 months ago

1.1.0

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago