Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

deploy-eip-1820

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deploy-eip-1820

Helper to deploy the EIP 1820 Registry smart contract to a network using Ethers.js

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
434
105.69%
Maintainers
1
Weekly downloads
 
Created
Source

Deploy EIP 1820

Ethereum EIP 1820 is a standard for pseudo-introspection of smart contracts on Ethereum.

This library ensures that the EIP 1820 registry smart contract exists on any given chain. Particularly useful for test environments.

Uses ethers.js v5.

If you're using ethers.js v4 then try the 0.2 version.

Setup

Install deploy-eip-1820 via yarn:

$ yarn add deploy-eip-1820

or npm:

$ npm i deploy-eip-1820

Usage

To ensure that the EIP 1820 Registry contract exists on the network you are using, use the setup1820 function:

const { deploy1820 } = require('deploy-eip-1820')

async function deploy() {
    const wallet = ethers.Wallet.fromMnemonic("...your mnemonic...")
    // The wallet must have at least 0.08 Ether
    const registryContract = await deploy1820(wallet)

    // Now we have an Ethers Contract instance for the ERC1820 Registry contract
    let implementer = await registryContract.getInterfaceImplementer('0x1234...', '0xINTERFACE_HASH')
}

FAQs

Package last updated on 08 Aug 2020

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