Socket
Socket
Sign inDemoInstall

@ethereum-artifacts/weth9

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ethereum-artifacts/weth9

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


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

@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,
);

FAQs

Package last updated on 21 Jun 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc