0.2.3 • Published 4 years ago

buidler-ethers-v5 v0.2.3

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

npm buidler

buidler-ethers-v5

Buidler plugin for integration with ethers.js version 5.

What

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

it is in based on the existing effort by @nomicalbas : @nomiclabas/buidler-ethers

Installation

npm install --save-dev buidler-ethers-v5 ethers

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

usePlugin("buidler-ethers-v5");

Tasks

This plugin creates no additional tasks.

Environment extensions

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

This object has add some extra Buidler-specific functionality. But contrary to @nomiclabas/buidler-ethers it does not add ethers field that can already be accessed via the ethers library itself as import

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 | string): Promise<ethers.ContractFactory>;

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

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

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

function getSigner(address: string) => Promise<ethers.Signer>;

function getContract(deploymentName: string, signer?: ethers.Signer | string): Promise<ethers.Contract>;

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

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:

It also automatically integrate with the buidler-deploy plugin if detected

...
const contract await bre.ethers.getContract('<deploymentName>');
...

TypeScript support

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

0.3.0-hardhat.2

4 years ago

0.3.0-hardhat.1

4 years ago

0.3.0-hardhat.0

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.4

4 years ago

0.1.2

4 years ago

0.1.3

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago