1.0.17 • Published 2 years ago

@cakitomakito/extract_abi v1.0.17

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

ABI EXTRACTOR

Lightweight small package for Ethereum developers to extract, and import their ABIs more easily.

Usage Example

import { ABIExtractor } from "@cakitomakito/extract_abi";

// for example your ABIs in ../builded_contracts/artifacts/contracts folder (as hardhat build).
// so when you call the extractor you need to pass the path to the folder = ../builded_contracts
// and then the name of the folder where the ABIs are = artifacts
const abiExtractor = new ABIExtractor("../builded_contracts", "artifacts");

const path = abiExtractor.getPath();

const lockABI = abiExtractor.getABI("Lock");

console.log(path);
console.log(lockABI)
1.0.17

2 years ago

1.0.16

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago