Socket
Book a DemoInstallSign in
Socket

@defuse-protocol/contract-types

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@defuse-protocol/contract-types

This package provides TypeScript type definitions for Defuse Protocol contracts. It contains automatically generated TypeScript interfaces derived from the Defuse Protocol contract ABI.

npmnpm
Version
0.1.0
Version published
Weekly downloads
1.4K
81.19%
Maintainers
2
Weekly downloads
 
Created
Source

@defuse-protocol/contract-types

This package provides TypeScript type definitions for Defuse Protocol contracts. It contains automatically generated TypeScript interfaces derived from the Defuse Protocol contract ABI.

Installation

# Using npm
npm install @defuse-protocol/contract-types

# Using yarn
yarn add @defuse-protocol/contract-types

# Using pnpm
pnpm add @defuse-protocol/contract-types

# Using bun
bun add @defuse-protocol/contract-types

Usage

import { Intent } from '@defuse-protocol/contract-types';

// Use the generated types in your application
const transferIntent: Intent = {
  intent: "transfer",
  receiver_id: "receiver.near",
  tokens: {
    "token.near": "1000000000000000000000000"
  }
};

Available Types

This package exports the following TypeScript types:

  • Intent - Types for various intent actions (transfer, add_public_key, remove_public_key, etc.)
  • And other contract-related types derived from the Defuse Protocol ABI

Development

Prerequisites

  • Bun (v1.2.16 or later)

Build

bun run build

Generating Types

The types are automatically generated from the Defuse Protocol contract ABI using the script at scripts/gen-defuse-types.sh. This script extracts the type definitions from the contract ABI and converts them to TypeScript interfaces.

To regenerate the types:

# Run the type generation script
cd packages/contract-types
./scripts/gen-defuse-types.sh

Development Mode

bun run dev

Lint

bun run lint

License

MIT

FAQs

Package last updated on 22 Aug 2025

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