Complete Ethereum library and wallet implementation in JavaScript.
Go to file
Theo 053ca44133
Some checks failed
Generate Documentation / Generate Documentation (push) Has been cancelled
Browser Tests / Run Browser Tests (push) Has been cancelled
CI Tests / Run Node.js Tests (18.x, commonjs) (push) Has been cancelled
CI Tests / Run Node.js Tests (18.x, esm) (push) Has been cancelled
CI Tests / Run Node.js Tests (20.x, commonjs) (push) Has been cancelled
CI Tests / Run Node.js Tests (20.x, esm) (push) Has been cancelled
CI Tests / Generate Coverage Report (push) Has been cancelled
Environment Tests / Test TypeScript Environments (commonjs, node) (push) Has been cancelled
Environment Tests / Test TypeScript Environments (commonjs, node16) (push) Has been cancelled
Environment Tests / Test TypeScript Environments (commonjs, nodenext) (push) Has been cancelled
Environment Tests / Test TypeScript Environments (es2020, node) (push) Has been cancelled
Environment Tests / Test TypeScript Environments (es2020, node16) (push) Has been cancelled
Environment Tests / Test TypeScript Environments (es2020, nodenext) (push) Has been cancelled
Environment Tests / Test Angular Environment (push) Has been cancelled
Change to @tornado/ethers and use @tornado/noble-curves
2024-04-18 20:05:00 -07:00
.github admin: fixed typo in CI (#4634) 2024-04-16 21:49:57 -04:00
dist admin: updated dist files 2024-04-16 21:49:08 -04:00
docs.wrm Added Chainstack provider (#2741). 2024-04-09 20:36:16 -04:00
lib.commonjs admin: updated dist files 2024-04-17 01:09:22 -04:00
lib.esm admin: updated dist files 2024-04-17 01:09:22 -04:00
misc Fix CJS browser bundling (#4033). 2023-06-06 22:33:51 -04:00
output admin: trying more robust build output structure 2023-04-27 21:19:55 +09:00
src.ts Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
testcases Added EIP-4844 BLOb transactions (#4554). 2024-01-24 20:35:59 -05:00
.gitignore admin: update dist files 2024-02-03 00:19:51 -05:00
.npmignore admin: updated dist files 2023-06-01 17:52:58 -04:00
.npmrc Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
CHANGELOG.md admin: updated dist files 2024-04-17 01:09:22 -04:00
FUNDING.json admin: added drips authentication 2023-10-02 04:51:55 -04:00
LICENSE.md docs: added LICENSE.md 2023-02-13 10:48:48 -05:00
README.md docs: updated the readme with more recent URLs and info 2023-11-02 14:56:36 -04:00
SECURITY.md docs: added basic security details 2023-02-04 03:24:24 -05:00
package-lock.json Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
package.json Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
reporter.cjs tests: remove reporter from coverage testing 2022-11-09 02:57:40 -05:00
rollup.config.mjs admin: updated rollup config for explicit ESM order 2023-05-18 17:11:34 -04:00
tsconfig.base.json Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
tsconfig.commonjs.json Change to @tornado/ethers and use @tornado/noble-curves 2024-04-18 20:05:00 -07:00
tsconfig.esm.json Initial code drop for v6-beta-exports. 2022-09-05 16:14:43 -04:00
tsconfig.types.json Support transitive dependants that use non-node16 moduleResolution (#3920). 2023-04-22 18:53:35 +09:00

The Ethers Project

npm (tag) CI Tests npm bundle size (version) npm (downloads) GitPOAP Badge Twitter Follow


A complete, compact and simple library for Ethereum and ilk, written in TypeScript.

Features

  • Keep your private keys in your client, safe and sound
  • Import and export JSON wallets (Geth, Parity and crowdsale)
  • Import and export BIP 39 mnemonic phrases (12 word backup phrases) and HD Wallets (English as well as Czech, French, Italian, Japanese, Korean, Simplified Chinese, Spanish, Traditional Chinese)
  • Meta-classes create JavaScript objects from any contract ABI, including ABIv2 and Human-Readable ABI
  • Connect to Ethereum nodes over JSON-RPC, INFURA, Etherscan, Alchemy, Ankr or MetaMask
  • ENS names are first-class citizens; they can be used anywhere an Ethereum addresses can be used
  • Small (~144kb compressed; 460kb uncompressed)
  • Tree-shaking focused; include only what you need during bundling
  • Complete functionality for all your Ethereum desires
  • Extensive documentation
  • Large collection of test cases which are maintained and added to
  • Fully written in TypeScript, with strict types for security and safety
  • MIT License (including ALL dependencies); completely open source to do with as you please

Keep Updated

For advisories and important notices, follow @ethersproject on Twitter (low-traffic, non-marketing, important information only) as well as watch this GitHub project.

For more general news, discussions, and feedback, follow or DM me, @ricmoo on Twitter or on the Ethers Discord.

For the latest changes, see the CHANGELOG.

Summaries

Installing

NodeJS

/home/ricmoo/some_project> npm install ethers

Browser (ESM)

The bundled library is available in the ./dist/ folder in this repo.

<script type="module">
    import { ethers } from "./dist/ethers.min.js";
</script>

Documentation

Browse the documentation online:

Providers

Ethers works closely with an ever-growing list of third-party providers to ensure getting started is quick and easy, by providing default keys to each service.

These built-in keys mean you can use ethers.getDefaultProvider() and start developing right away.

However, the API keys provided to ethers are also shared and are intentionally throttled to encourage developers to eventually get their own keys, which unlock many other features, such as faster responses, more capacity, analytics and other features like archival data.

When you are ready to sign up and start using for your own keys, please check out the Provider API Keys in the documentation.

A special thanks to these services for providing community resources:

Extension Packages

The ethers package only includes the most common and most core functionality to interact with Ethereum. There are many other packages designed to further enhance the functionality and experience.

  • MulticallProvider - A Provider which bundles multiple call requests into a single call to reduce latency and backend request capacity
  • MulticoinPlugin - A Provider plugin to expand the support of ENS coin types
  • GanaceProvider - A Provider for in-memory node instances, for fast debugging, testing and simulating blockchain operations
  • Optimism Utilities - A collection of Optimism utilities
  • LedgerSigner - A Signer to interact directly with Ledger Hardware Wallets

License

MIT License (including all dependencies).