@xiawpohr/buidler-ethers
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

buidler-ethers-v5

THis is forked from buidler-ethers

Buidler plugin for integration with ethers.js v5.

What

This plugin brings to Buidler the Ethereum library ethers.js, which allows you to interact with the Ethereum blockchain in a simple way.

Installation

npm install --save-dev @xiawpohr/buidler-ethers ethers@next

And add the following statement to your buidler.config.js:

usePlugin("@xiawpohr/buidler-ethers");

Tasks

This plugin creates no additional tasks.

Environment extensions

This plugins adds an ethers object to the Buidler Runtime Environment.

This object has the same API than ethers.js, with some extra Buidler-specific functionality.

Provider object

A provider field is added to ethers, which is an ethers.providers.Provider automatically connected to the selected network.

Helpers

These helpers are added to the ethers object:

function getContractFactory(name: string, signer?: ethers.Signer): Promise<ethers.ContractFactory>;

function getContractFactory(abi: any[], bytecode: ethers.utils.Arrayish | string, signer?: ethers.Signer): Promise<ethers.ContractFactory>;

function getContractAt(nameOrAbi: string | any[], address: string, signer?: ethers.Signer): Promise<ethers.Contract>;

function getSigners() => Promise<ethers.Signer[]>;

The Contracts and ContractFactorys returned by these helpers are connected to the first signer returned by getSigners be default.

Deprecated helpers

These helpers are also added, but deprecated:

// Use getContractFactory instead
function getContract(name: string): Promise<ethers.ContractFactory>;

// Use getSigners instead
function signers(): Promise<ethers.Signer[]>;

Usage

There are no additional steps you need to take for this plugin to work.

Install it and access ethers through the Buidler Runtime Environment anywhere you need it (tasks, scripts, tests, etc). For example, in your buidler.config.js:

usePlugin("@xiawpohr/buidler-ethers");

// task action function receives the Buidler Runtime Environment as second argument
task(
  "blockNumber",
  "Prints the current block number",
  async (_, { ethers }) => {
    await ethers.provider.getBlockNumber().then(blockNumber => {
      console.log("Current block number: " + blockNumber);
    });
  }
);

module.exports = {};

And then run npx buidler blockNumber to try it.

Read the documentation on the Buidler Runtime Environment to learn how to access the BRE in different ways to use ethers.js from anywhere the BRE is accessible.

TypeScript support

You need to add this to your tsconfig.json's files array: "node_modules/@nomiclabs/buidler-ethers/src/type-extensions.d.ts"

Package Sidebar

Install

npm i @xiawpohr/buidler-ethers

Weekly Downloads

0

Version

0.1.2

License

MIT

Unpacked Size

48.8 kB

Total Files

31

Last publish

Collaborators

  • xiawpohr