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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ahumblebuilder/derifun-ability

v0.0.2

Published

A Vincent ability that allows interacting with Derifun OptionVaultFactory contracts for options trading.

Downloads

9

Readme

Derifun Ability

A Vincent ability that allows interacting with Derifun OptionVaultFactory contracts for options trading operations.

Overview

This package provides a Vincent ability for interacting with Derifun's OptionVaultFactory contract, enabling users to:

  • Create new option vaults
  • Write options
  • Exercise options
  • Redeem options
  • Preview option writes

Supported Operations

1. Create Vault (createVault)

Creates a new option vault with specified parameters.

Parameters:

  • factory: Factory contract address
  • depositToken: Token used for deposits
  • conversionToken: Token for conversion
  • premiumToken: Token for premium payments
  • strike: Strike price
  • expiry: Expiry timestamp
  • name: Vault name
  • symbol: Vault symbol
  • owner: Vault owner address

2. Write Option (writeOption)

Writes an option with the specified parameters.

Parameters:

  • vault: Vault address
  • amount: Amount to write
  • strike: Strike price
  • expiry: Expiry timestamp
  • premiumPerUnit: Premium per unit
  • minDeposit: Minimum deposit amount
  • maxDeposit: Maximum deposit amount
  • validUntil: Valid until timestamp
  • quoteId: Quote ID
  • signature: Signature for the option

3. Exercise Option (exercise)

Exercises an option for the specified amount.

Parameters:

  • vault: Vault address
  • exerciseAmount: Amount to exercise

4. Redeem (redeem)

Redeems tokens from a vault.

Parameters:

  • vault: Vault address

5. Preview Write Option (previewWriteOption)

Previews a write option operation to check if it would succeed.

Parameters:

  • user: User address
  • vault: Vault address
  • amount: Amount to write
  • strike: Strike price
  • expiry: Expiry timestamp
  • premiumPerUnit: Premium per unit
  • minDeposit: Minimum deposit amount
  • maxDeposit: Maximum deposit amount
  • validUntil: Valid until timestamp
  • quoteId: Quote ID
  • signature: Signature for the option

Usage

import { vincentAbility } from '@deriflow/derifun-ability';

// Example: Create a new vault
const createVaultParams = {
  operation: 'createVault',
  factory: '0x...',
  depositToken: '0x...',
  conversionToken: '0x...',
  premiumToken: '0x...',
  strike: '1000000000000000000', // 1 ETH in wei
  expiry: '1700000000', // Unix timestamp
  name: 'My Option Vault',
  symbol: 'MOV',
  owner: '0x...',
};

// Example: Write an option
const writeOptionParams = {
  operation: 'writeOption',
  vault: '0x...',
  amount: '1000000000000000000', // 1 ETH in wei
  strike: '1000000000000000000',
  expiry: '1700000000',
  premiumPerUnit: '100000000000000000', // 0.1 ETH in wei
  minDeposit: '1000000000000000000',
  maxDeposit: '10000000000000000000',
  validUntil: '1699999999',
  quoteId: '12345',
  signature: '0x...',
};

Error Handling

The ability includes comprehensive error handling for common scenarios:

  • Invalid addresses
  • Invalid amounts
  • Invalid timestamps
  • Insufficient balances
  • Invalid signatures
  • Vault not found
  • Quote already used
  • Vault expired

Development

Building

nx build derifun-ability

Testing

nx test derifun-ability

Linting

nx lint derifun-ability

Type Checking

nx typecheck derifun-ability

License

MIT