1.1.0 • Published 2 years ago

@ethereum-artifacts/weth9 v1.1.0

Weekly downloads
-
License
(MIT OR Apache-2....
Repository
github
Last release
2 years ago

@ethereum-artifacts/weth9

Install

# In your node project directory
npm i @ethereum-artifacts/weth9

Usage

// Import artifacts
const weth9 = require('@ethereum-artifacts/weth9');

// Get ABI for WETH9
console.log(weth9.WETH9.abi);

// Get bytecode for WETH9
console.log(weth9.WETH9.bytecode);

// Create ethers.js contract factory for WETH9
const ethers = require('ethers');
const WETH9 = new ethers.ContractFactory(
  weth9.WETH9.abi,
  weth9.WETH9.bytecode,
);