# siglist

> Get solidity signatures from ABI

Latest version **1.0.2** (published 2023-07-15) · 0 weekly downloads

## Install

```sh
npm install siglist
pnpm add siglist
yarn add siglist
bun add siglist
```

Provides the command `siglist`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2023-07-15 |
| First published | 2023-07-15 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | vnmrtz |

## Links

- npm: https://www.npmjs.com/package/siglist
- npm.io page: https://npm.io/package/siglist

## Dependencies (1)

- [ethers](https://npm.io/package/ethers.md) ^6.6.2

## Recent versions

- 1.0.2 (latest) — 2023-07-15
- 1.0.1 — 2023-07-15
- 1.0.0 — 2023-07-15

## README

# Script to Extract Signatures from Contract ABI

This script is designed to extract signatures from a contract ABI (Application Binary Interface) file. It takes command-line arguments to specify the type of signatures to extract (`--function`, `--event`, or `--error`) and the ABI file name.

## Prerequisites

- Node.js and npm (Node Package Manager) should be installed on your system.

## Installation

1. Run the following command to install the tool:

    ```bash
    npm i -g siglist
    ```

## Usage

1. Open a terminal or command prompt.

2. Run the following command to execute the tool:

    ```bash
    siglist --function|event|error <abi-file-name>
    ```

where:  
`--function` is used to extract function signatures.  
`--event` is used to extract event signatures.  
`--error` is used to extract error signatures.  
`<abi-file-name>` is the name of the ABI file to process.

---
_Source: https://npm.io/package/siglist · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
