ethers.js/docs/index.html

10 lines
30 KiB
HTML
Raw Normal View History

2020-02-02 08:53:22 +03:00
<html><head><title>Documentation</title><link rel="stylesheet" type="text/css" href="/static/style.css"></head><body><div class="sidebar"><div class="header"><div class="logo"><a href="/"><div class="image"></div><div class="name">ethers</div><div class="version">v5.0-beta</div></a></div></div><div class="toc"><div><div class="link title"><a href="/">Documentation</a></div><div class="base child show link depth-1"><a href="/getting-started/">Getting Started</a></div><div class="hide link depth-2"><a href="/getting-started/#installing">Installing</a></div><div class="hide link depth-2"><a href="/getting-started/#importing">Importing</a></div><div class="base child show link depth-1"><a href="/concepts/">Concepts</a></div><div class="hide link depth-2"><a href="/concepts/events/">Events</a></div><div class="hide link depth-3"><a href="/concepts/events/#solidity-topics">Solidity Topics</a></div><div class="hide link depth-2"><a href="/concepts/gas/">Gas</a></div><div class="hide link depth-3"><a href="/concepts/gas/#gas-price">Gas Price</a></div><div class="hide link depth-3"><a href="/concepts/gas/#gas-limit">Gas Limit</a></div><div class="base child show link depth-1"><a href="/api/">Application Programming Interface</a></div><div class="hide link depth-2"><a href="/api/contract/">Contracts</a></div><div class="hide link depth-3"><a href="/api/contract/#buckets">Buckets</a></div><div class="hide link depth-2"><a href="/api/signer/">Signers</a></div><div class="hide link depth-3"><a href="/api/signer/#signer">Signer</a></div><div class="hide link depth-3"><a href="/api/signer/#wallet">Wallet</a></div><div class="hide link depth-3"><a href="/api/signer/#voidsigner">VoidSigner</a></div><div class="hide link depth-3"><a href="/api/signer/#externallyownedaccount">ExternallyOwnedAccount</a></div><div class="hide link depth-2"><a href="/api/providers/">Providers</a></div><div class="hide link depth-3"><a href="/api/providers/provider/">Provider</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#accounts-methods">Accounts Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#blocks-methods">Blocks Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#ethereum-naming-service-(ens)-methods">Ethereum Naming Service (ENS) Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#logs-methods">Logs Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#network-status-methods">Network Status Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#transactions-methods">Transactions Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#event-emitter-methods">Event Emitter Methods</a></div><div class="hide link depth-4"><a href="/api/providers/provider/#inspection-methods">Inspection Methods</a></div><div class="hide link depth-3"><a href="/api/providers/jsonrpc-provider/">JsonRpcProvider</a></div><div class="hide link depth-4"><a href="/api/providers/jsonrpc-provider/#jsonrpcsigner">JsonRpcSigner</a></div><div class="hide link depth-4"><a href="/api/providers/jsonrpc-provider/#jsonrpcuncheckedsigner">JsonRpcUncheckedSigner</a></div><div class="hide link depth-3"><a href="/api/providers/api-providers/">API Providers</a></div><div class="hide link depth-4"><a href="/api/providers/api-providers/#etherscanprovider">EtherscanProvider</a></div><div class="hide link depth-4"><a href="/api/providers/api-providers/#infuraprovider">InfuraProvider</a></div><div class="hide link depth-4"><a href="/api/providers/api-providers/#alchemyprovider">AlchemyProvider</a></div><div class="hide link depth-4"><a href="/api/providers/api-providers/#cloudfrontprovider">CloudfrontProvider</a></div><div class="hide link depth-3"><a href="/api/providers/other/">Other Providers</a></div><div class="hide link depth-4"><a href="/api/providers/other/#fallbackprovider">FallbackProvider</a></div><div class="hide link depth-4"><a href="/api/providers/other/#ipcprovider">IpcProvider</a></div>
2019-12-14 06:05:10 +03:00
<a name="what-is-ethers?"></a><h1 class="show-anchors"><div>What is ethers?<div class="anchors"><a class="self" href="#what-is-ethers?"></a></div></div></h1>
<p>The ethers.js library aims to be a complete and compact library for interacting with the Ethereum Blockchain and its ecosystem. It was originally designed for use with <a href="https://ethers.io/">ethers.io</a> and has since expanded into a much more general-purpose library.</p>
2019-12-14 06:05:10 +03:00
<a name="features"></a><h2 class="show-anchors"><div>Features<div class="anchors"><a class="self" href="#features"></a></div></div></h2>
<ul><li>Keep your private keys in your client, <b>safe</b> and sound</li><li>Import and export <b>JSON wallets</b> (Geth, Parity and crowdsale)</li><li>Import and export BIP 39 <b>mnemonic phrases</b> (12 word backup phrases) and HD Wallets (English, Italian, Japanese, Korean, Simplified Chinese, Traditional Chinese; more coming soon)</li><li>Meta-classes create JavaScript objects from any contract ABI, including <b>ABIv2</b> and <b>Human-Readable ABI</b></li><li>Connect to Ethereum nodes over <a href="https:<i>github.com/ethereum/wiki/wiki/JSON-RPC">JSON-RPC</a>, <a href="https:</i>infura.io/">INFURA</a>, <a href="https:<i>etherscan.io/">Etherscan</a>, <a href="https:</i>nodesmith.io">Nodesmith</a>, <a href="https:<i>alchemyapi.io">Alchemy</a>, or <a href="https:</i>metamask.io/">MetaMask</a>.</li><li><b>ENS names</b> are first-class citizens; they can be used anywhere an Ethereum addresses can be used</li><li><b>Tiny</b> (~88kb compressed; 284kb uncompressed)</li><li><b>Complete</b> functionality for all your Ethereum needs</li><li>Extensive <a href="https://docs.ethers.io/">documentation</a></li><li>Large collection of <b>test cases</b> which are maintained and added to</li><li>Fully <b>TypeScript</b> ready, with definition files and full TypeScript source</li><li><b>MIT License</b> (including <i>ALL</i> dependencies); completely open source to do with as you please</li></ul>
<a name="developer-documentation"></a><h2 class="show-anchors"><div>Developer Documentation<div class="anchors"><a class="self" href="#developer-documentation"></a></div></div></h2>
2020-02-02 08:53:22 +03:00
<div class="toc"><div style="padding-left: 0px"><span class="bullet">&bull;</span><a href="/getting-started/">Getting Started</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/getting-started/#installing">Installing</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/getting-started/#importing">Importing</a></div><div style="padding-left: 0px"><span class="bullet">&bull;</span><a href="/concepts/">Concepts</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/concepts/events/">Events</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/concepts/events/#solidity-topics">Solidity Topics</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/concepts/gas/">Gas</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/concepts/gas/#gas-price">Gas Price</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/concepts/gas/#gas-limit">Gas Limit</a></div><div style="padding-left: 0px"><span class="bullet">&bull;</span><a href="/api/">Application Programming Interface</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/api/contract/">Contracts</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/contract/#buckets">Buckets</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/api/signer/">Signers</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/signer/#signer">Signer</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/signer/#wallet">Wallet</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/signer/#voidsigner">VoidSigner</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/signer/#externallyownedaccount">ExternallyOwnedAccount</a></div><div style="padding-left: 28px"><span class="bullet">&bull;</span><a href="/api/providers/">Providers</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/providers/provider/">Provider</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#accounts-methods">Accounts Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#blocks-methods">Blocks Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#ethereum-naming-service-(ens)-methods">Ethereum Naming Service (ENS) Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#logs-methods">Logs Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#network-status-methods">Network Status Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#transactions-methods">Transactions Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#event-emitter-methods">Event Emitter Methods</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/provider/#inspection-methods">Inspection Methods</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/providers/jsonrpc-provider/">JsonRpcProvider</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/jsonrpc-provider/#jsonrpcsigner">JsonRpcSigner</a></div><div style="padding-left: 84px"><span class="bullet">&bull;</span><a href="/api/providers/jsonrpc-provider/#jsonrpcuncheckedsigner">JsonRpcUncheckedSigner</a></div><div style="padding-left: 56px"><span class="bullet">&bull;</span><a href="/api/providers/api-providers/">API Providers</a></div><div style="padding-left: 84px"><span class="bullet">&bu
2019-12-14 06:05:10 +03:00
<a name="legacy-documentation"></a><h2 class="show-anchors"><div>Legacy Documentation<div class="anchors"><a class="self" href="#legacy-documentation"></a></div></div></h2>
2020-02-02 08:53:22 +03:00
<p>This section will be kept up to date, linking to documentation of older versions of the library.</p><ul><li><a href="https://docs.ethers.io/ethers.js">version 4.0</a></li><li><a href="https://docs.ethers.io/ethers.js/v3.0/html/">version 3.0</a></li></ul><div class="footer"> <div class="nav next"><a href="/getting-started/">Getting Started<span class="arrow">&rarr;</span></a></div></div><div class="copyright">The content of this site is licensed under the <a href="https://choosealicense.com/licenses/cc-by-4.0/">Creative Commons Attribution 4.0 International License</a>.</div></div><script src="/script.js" type="text/javascript"></script></body></html><!-- ContentHash:686a4ca5ac072925389369028b9b4ebda6b5df21bef16e685ea5685e2aadf1c6 -->