Complete Ethereum library and wallet implementation in JavaScript. https://docs.ethers.io/
Go to file
Richard Moore f0b2961f08
Updated Changelog.
2019-09-06 17:58:37 -04:00
admin Updated TypeScript version. 2019-09-06 12:25:17 -04:00
docs Updated flatworm docs output. 2019-08-22 01:52:17 -04:00
docs.wrm Updated some of the flatworm docs. 2019-08-23 15:25:13 -04:00
packages Removed export star to fix UMD dist file. 2019-09-06 17:48:26 -04:00
.gitignore Updated Changelog. 2019-09-06 17:58:37 -04:00
CHANGELOG.md Updated Changelog. 2019-09-06 17:58:37 -04:00
LICENSE.md Initial v5 branch commit. 2019-05-14 18:25:46 -04:00
README.md Updated dist files. 2019-08-05 14:31:04 -04:00
lerna.json Initial v5 branch commit. 2019-05-14 18:25:46 -04:00
package.json Removed export star to fix UMD dist file. 2019-09-06 17:48:26 -04:00
rollup.config.js Updated TypeScript version. 2019-09-06 12:25:17 -04:00
tsconfig.package.json Major overhaul in compilation to enable ES6 module generation. 2019-08-25 02:39:20 -04:00
tsconfig.project.json Deprecating errors for logger. 2019-08-01 18:04:06 -04:00

README.md

The Ethers Project

EXPERIMENTAL!!!

This is just a development version to experiment with lerna.

Do NOT use

Installing

node.js

/home/ricmoo/some_project> npm install --save ethers@next

browser

<script src="https://cdn.ethers.io/lib/ethers-5.0.min.js" type="text/javasctipt">
</script>

Ancillary Packages

These are a number of packages not included in the umbrella ethers npm package, and additional packages are always being added. Often these packages are for specific use-cases, so rather than adding them to the umbrella package, they are added as ancillary packaged, which can be included by those who need them, while not bloating everyone else with packages they do not need.

We will keep a list of useful pacakges here.

  • @ethersproject/experimental
  • @ethersproject/cli
  • @ethersproject/ens
  • @ethersproject/ledger
  • @ethersproject/trezor

Hacking

This project uses a combination of Lerna and the ./admin scripts to manage itself as a package of packages.

The umbrella package can be found in packages/ethers, and all packages in general can be found in the packages/ folder.

If you add new dependencies to any package (incuding internal dependencies), you will need to re-create the internal links and re-build teh dependency graph::

/home/ethers> npm run bootstrap

To run a continuous build (with incremental TypeScript compilation):

/home/ethers> npm run auto-build

Finally, once you have made all your changes, you will need to bump the version of packages that changed their NPM tarballs, as well as update the _version.* and distribution builds (which is what we host on the CDN for browser-based apps). To do this, run:

/home/ethers> npm run update-versions

Which will also list all packages that have changed along with the specifc files.

License

MIT License (including all dependencies).