@thinkanddev/deploy-eip-1820-web3-rsk
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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 web3.js v1.3.5.

Setup

Install @thinkanddev/deploy-eip-1820-web3-rsk via yarn:

$ yarn add @thinkanddev/deploy-eip-1820-rsk

or npm:

$ npm i @thinkanddev/deploy-eip-1820-rsk

Usage

To deploy EIP 1820 Registry contract on the network you are using

const { deploy1820 } = require('@thinkanddev/deploy-eip-1820-web3-rsk')

async function deploy() {
    // The wallet must have at least 0.08 Ether
    const registryContract = await deploy1820(web3)

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

Readme

Keywords

none

Package Sidebar

Install

npm i @thinkanddev/deploy-eip-1820-web3-rsk

Weekly Downloads

6

Version

1.0.3

License

MIT

Unpacked Size

12.9 kB

Total Files

6

Last publish

Collaborators

  • lopezgonzalo
  • pmprete