ethers.js/docs/documentation/index.html

37 lines
26 KiB
HTML
Raw Normal View History

2020-02-18 01:56:50 +03:00
<html><head><title>Flatworm Docs</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 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 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 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><div class="hide l
2019-12-14 06:05:10 +03:00
<a name="flatworm-docs"></a><h1 class="show-anchors"><div>Flatworm Docs<div class="anchors"><a class="self" href="#flatworm-docs"></a></div></div></h1>
2020-02-18 01:56:50 +03:00
<p>The <i>Flatworm Docs</i> rendering script is designed to be <b>very</b> simple, but provide enough formatting necessary for documenting JavaScript libraries.</p><p>A lot of its inspiration came from <a href="https://github.com/readthedocs/sphinx_rtd_theme">Read the Docs</a> and the <a href="https://www.sphinx-doc.org/">Sphinx</a> project.</p>
2020-02-02 08:53:22 +03:00
<a name="flatworm-fragments"></a><a name="fragments"></a><h2 class="show-anchors"><div>Fragments<div class="anchors"><a class="self" href="#flatworm-fragments"></a></div></div></h2>
<p>Flatworm Docs are made up of fragments. A fragment is either a lone body of <a href="/documentation/#flatworm-markdown">markdown</a> text, or a <a href="/documentation/#flatworm-directive">directive</a> for specialized formatting, which may itself have body.</p>
2019-12-14 06:05:10 +03:00
<a name="directive-format"></a><h3 class="show-anchors"><div>Directive Format<div class="anchors"><a class="self" href="#directive-format"></a></div></div></h3>
2020-02-02 08:53:22 +03:00
<div class="code">_DIRECTIVE:&nbsp;VALUE&nbsp;@&lt;LINK&gt;&nbsp;@META&lt;PARAMETER&gt;<br>BODY<br><br>DIRECTIVE:&nbsp;&nbsp;The&nbsp;directive&nbsp;name<br>VALUE:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Optional;&nbsp;the&nbsp;value&nbsp;to&nbsp;pass&nbsp;to&nbsp;the&nbsp;directive<br>LINK:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Optional;&nbsp;a&nbsp;name&nbsp;for&nbsp;internal&nbsp;linking<br>META:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Optional;&nbsp;extended&nbsp;directive&nbsp;functionality<br>PARAMETER:&nbsp;&nbsp;Optional;&nbsp;value&nbsp;to&nbsp;pass&nbsp;to&nbsp;extended&nbsp;directive&nbsp;functions<br>BODY:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Optional;&nbsp;the&nbsp;directive&nbsp;body&nbsp;(certain&nbsp;directives&nbsp;only)</div>
2019-12-14 06:05:10 +03:00
<a name="flatworm-directive"></a><a name="flatworm-directives"></a><h3 class="show-anchors"><div>Flatworm Directives<div class="anchors"><a class="self" href="#flatworm-directive"></a></div></div></h3>
2019-12-14 06:05:10 +03:00
<div class="definition show-anchors"><div class="term"><b>_section:</b> <i>TITLE</i></div><div class="body"><p>A <i>section</i> has its <b>TITLE</b> in an H1 font. Sections are linked to in <i>Table of Contents</i> and have a dividing line drawn above them. If an option is specified, it is avaialble as a name for intern linking. There should only be one <code class="inline">_section:</code> per page.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_subsection:</b> <i>TITLE</i></div><div class="body"><p>A <i>subsection</i> has its <b>TITLE</b> in an H2 font. Subsections are linked to in <i>Table of Contents</i> and have a dividing line drawn above them. If an option is specified, it is avaialble as a name for internal linking.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_heading:</b> <i>TITLE</i></div><div class="body"><p>A <i>heading</i> has its <b>TITLE</b> in an H3 font. If an option is specified, it is available as a name for internal linking.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_definition:</b> <i>TERM</i></div><div class="body"><p>A <i>definition</i> has its <b>TERM</b> bolded and the markdown body is indented.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_property:</b> <i>SIGNATURE</i></div><div class="body"><p>A <i>property</i> has its JavaScript <b>SIGNATURE</b> formatted and the markdown body is indented.</p></div></div>
2020-02-02 08:53:22 +03:00
<div class="definition show-anchors"><div class="term"><b>_note:</b> <i>TITLE</i></div><div class="body"><p>A <i>note</i> is placed in a blue bordered-box to draw attention to it.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_warning:</b> <i>TITLE</i></div><div class="body"><p>A <i>warning</i> is placed in an orange bordered-box to draw attention to it.</p></div></div>
2019-12-14 06:05:10 +03:00
<div class="definition show-anchors"><div class="term"><b>_code:</b> <i>FILENAME</i></div><div class="body"><p>A <i>code</i> reads the <b>FILENAME</b> and depending on the extension adjusts it.</p><p>For JavaScript files, the file is executed, with <code class="inline">//!</code> replaced with the result of the last statement and <code class="inline">//!error</code> is replaced with the throw error. If the error state does not agree, rendering fails.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_toc:</b></div><div class="body"><p>A <i>toc</i> injects a Table of Contents, loading each line of the body as a filename and recursively loads the <i>toc</i> if present, otherwise all the <i>sections</i> and <i>subsections</i>.</p></div></div>
<div class="definition show-anchors"><div class="term"><b>_null:</b></div><div class="body"><p>A <i>null</i> is used to terminated a directive. For example, after a <i>definition</i>, the bodies are indented, so a <i>null</i> can be used to reset the indentation.</p></div></div>
<a name="examples"></a><h3 class="show-anchors"><div>Examples<div class="anchors"><a class="self" href="#examples"></a></div></div></h3>
2020-02-02 08:53:22 +03:00
<div class="code">_section:&nbsp;Hello&nbsp;World&nbsp;@&lt;link-to-this-section&gt;<br><br>_subsection:&nbsp;Some&nbsp;Example&nbsp;@&lt;link-to-this-subsection&gt;<br><br>_heading:&nbsp;Large&nbsp;Bold&nbsp;Text&nbsp;@&lt;link-to-this-heading&gt;<br><br>_definition:&nbsp;Flatworm<br>A&nbsp;phylum&nbsp;of&nbsp;relatively&nbsp;**simple**&nbsp;bilaterian,&nbsp;unsegmented,<br>soft-bodied&nbsp;invertebrates.<br><br>_property:&nbsp;String.fromCharCode(code)&nbsp;=&gt;&nbsp;string<br>Returns&nbsp;a&nbsp;string&nbsp;created&nbsp;from&nbsp;//code//,&nbsp;a&nbsp;sequence&nbsp;of<br>UTF-16&nbsp;code&nbsp;units.<br><br>_code:&nbsp;filename.js<br><br>_toc:<br>&nbsp;&nbsp;&nbsp;&nbsp;some-file<br>&nbsp;&nbsp;&nbsp;&nbsp;some-directory<br><br>_definition&nbsp;and&nbsp;reset&nbsp;the&nbsp;indentation.<br><br>_note:&nbsp;Title<br>This&nbsp;is&nbsp;placed&nbsp;in&nbsp;a&nbsp;blue&nbsp;box.<br><br>_warning:&nbsp;Title<br>This&nbsp;is&nbsp;placed&nbsp;in&nbsp;an&nbsp;orange&nbsp;box.<br><br>_null:<br>This&nbsp;breaks&nbsp;out&nbsp;of&nbsp;a&nbsp;directive.&nbsp;For&nbsp;example,&nbsp;to&nbsp;end&nbsp;a</div>
2019-12-14 06:05:10 +03:00
<a name="flatworm-markdown"></a><a name="markdown"></a><h2 class="show-anchors"><div>Markdown<div class="anchors"><a class="self" href="#flatworm-markdown"></a></div></div></h2>
<p>The markdown is simple and does not have the flexibility of other dialects, but allows for <b>bold</b>, <i>italic</i>, <u>underlined</u>, <code class="inline">monospaced</code>, <sup>super-scripted</sup> text, supporting <a href="/documentation/#flatworm-markdown">links</a> and lists.</p>
<div class="code">**bold&nbsp;text**<br><br>//italic&nbsp;text//<br><br>__underlined&nbsp;text__<br><br>``monospace&nbsp;code``<br><br>^^superscript&nbsp;text^^<br><br>-&nbsp;This&nbsp;is&nbsp;a&nbsp;list<br>-&nbsp;With&nbsp;bullet&nbsp;points<br>-&nbsp;With&nbsp;a&nbsp;total&nbsp;of&nbsp;three&nbsp;items<br><br>This&nbsp;is&nbsp;separated&nbsp;by&nbsp;--&nbsp;an&nbsp;en-dash.<br><br>This&nbsp;is&nbsp;separated&nbsp;by&nbsp;---&nbsp;an&nbsp;em-dash.<br><br>This&nbsp;is&nbsp;a&nbsp;[Link&nbsp;to&nbsp;Ethereum](https://ethereum.org)&nbsp;and&nbsp;this<br>is&nbsp;an&nbsp;[Internal&nbsp;Link](some-link).<br><br>This&nbsp;is&nbsp;a&nbsp;self-titled&nbsp;link&nbsp;[[https://ethereumorg]]&nbsp;and&nbsp;this<br>[[some-link]]&nbsp;will&nbsp;use&nbsp;the&nbsp;title&nbsp;from&nbsp;its&nbsp;directives&nbsp;value.</div>
2020-02-02 08:53:22 +03:00
<a name="flatworm-config"></a><a name="configuration"></a><h2 class="show-anchors"><div>Configuration<div class="anchors"><a class="self" href="#flatworm-config"></a></div></div></h2>
<p>Configuration is optional (but highly recommended) and may be either a simple JSON file (config.json) or a JS file (config.js) placed in the top of the source folder.</p><p>TODO: example JSON and example JS</p>
<a name="flatworm-extended-directive-functions"></a><a name="extended-directive-functions"></a><h2 class="show-anchors"><div>Extended Directive Functions<div class="anchors"><a class="self" href="#flatworm-extended-directive-functions"></a></div></div></h2>
<a name="@inherit\<markdown>"></a><h3 class="show-anchors"><div>@INHERIT&lt;markdown&gt;<div class="anchors"><a class="self" href="#@inherit\<markdown>"></a></div></div></h3>
<p>Adds an inherits description to a directive. The <i>markdown</i> may contain links.</p><p>This extended directive function is available for:</p><ul><li>_section</li><li>_subsetion</li><li>_heading</li></ul>
<a name="@src\<text>"></a><h3 class="show-anchors"><div>@SRC&lt;text&gt;<div class="anchors"><a class="self" href="#@src\<text>"></a></div></div></h3>
2020-02-18 01:56:50 +03:00
<p>Calls the configuration <code class="inline">getSourceUrl(text, VALUE)</code> to get a URL which will be linked to by a link next to the <i>directive</i>.</p><p>This extended directive function requires an advanced <code class="inline">config.js</code> <a href="/documentation/#flatworm-config">Configuration</a> file since it requires a JavaScript function.</p><p>This extended directive function is available for:</p><ul><li>_section</li><li>_subsetion</li><li>_heading</li><li>_property</li></ul><div class="footer"><div class="nav previous"><a href="/contributing/"><span class="arrow">&larr;</span>Contributing and Hacking</a></div> <div class="nav next"><a href="/license/">License and Copyright<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:617578076a5e2ebb90de54b44c4142f1a5fd1c24111d6f5aa11213f9a2e35db9 -->