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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fuul/protocol-abis

v4.1.0

Published

TypeScript package for Fuul Protocol ABIs and TypeChain types.

Readme

@fuul/protocol-abis

TypeScript package for Fuul Protocol ABIs and TypeChain types.

Supports both Protocol v1 and v2, with modular imports for each version.

Installation

npm install @fuul/protocol-abis ethers@^6

Usage

Default Import (v1 - Backward Compatible)

The root import exports v1 for backward compatibility with existing code:

import { FuulFactoryAbi, FuulManagerAbi, FuulProjectAbi } from '@fuul/protocol-abis'
import { FuulFactoryFactory } from '@fuul/protocol-abis'

// Use with wagmi/viem
const { write } = useContractWrite({
  address: '0x...',
  abi: FuulProjectAbi,
  functionName: 'depositFungibleToken',
})

// Use with ethers
const factory = FuulFactoryFactory.connect(address, signer)

Protocol v1 (Explicit)

import { FuulFactoryAbi, FuulFactoryFactory } from '@fuul/protocol-abis/v1'
// or
import { FuulFactoryAbi, FuulFactoryFactory } from '@fuul/protocol-abis/evm/v1'

Protocol v2

import {
  FuulFactoryAbi,
  FuulManagerAbi,
  FuulProjectAbi,
  IFuulKYCValidatorAbi
} from '@fuul/protocol-abis/v2'
// or
import { FuulFactoryAbi } from '@fuul/protocol-abis/evm/v2'

Available Exports

v1 (@fuul/protocol-abis or @fuul/protocol-abis/v1)

| Export | Description | |--------|-------------| | FuulFactoryAbi | Factory contract ABI | | FuulManagerAbi | Manager contract ABI | | FuulProjectAbi | Project contract ABI | | FuulFactoryTypes | TypeChain types for Factory | | FuulManagerTypes | TypeChain types for Manager | | FuulProjectTypes | TypeChain types for Project | | FuulFactoryFactory | ethers Factory class | | FuulManagerFactory | ethers Factory class | | FuulProjectFactory | ethers Factory class |

v2 (@fuul/protocol-abis/v2)

ABIs: | Export | Description | |--------|-------------| | FuulFactoryAbi | Factory contract ABI | | FuulManagerAbi | Manager contract ABI | | FuulProjectAbi | Project contract ABI | | IFuulFactoryAbi | Factory interface ABI | | IFuulManagerAbi | Manager interface ABI | | IFuulProjectAbi | Project interface ABI | | IFuulKYCValidatorAbi | KYC Validator interface ABI | | MockFuulKYCValidatorAbi | Mock KYC Validator ABI |

Types & Factories: | Export | Description | |--------|-------------| | FuulFactoryTypes, FuulFactoryFactory | Factory types & factory | | FuulManagerTypes, FuulManagerFactory | Manager types & factory | | FuulProjectTypes, FuulProjectFactory | Project types & factory | | IFuulFactoryTypes, IFuulFactoryFactory | Factory interface types & factory | | IFuulManagerTypes, IFuulManagerFactory | Manager interface types & factory | | IFuulProjectTypes, IFuulProjectFactory | Project interface types & factory | | IFuulKYCValidatorTypes, IFuulKYCValidatorFactory | KYC Validator types & factory | | MockFuulKYCValidatorTypes, MockFuulKYCValidatorFactory | Mock KYC Validator types & factory |

Requirements

  • Node.js 16+
  • ethers@^6.6.0 (peer dependency, only needed for v1 TypeChain factories)

Development

# Install dependencies
npm install

# Build the package
npm run build

# Run linting
npm run lint