Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 1, 2024
1 parent b65f382 commit f0ec152
Show file tree
Hide file tree
Showing 18 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 54b99f552ab29f1b53cdc451d4849cc2
config: 617a807a4a07a78872bf05184f3c6009
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified latest/.doctrees/commands/networks.doctree
Binary file not shown.
Binary file modified latest/.doctrees/environment.pickle
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/ape_accounts.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/api.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/cli.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/contracts.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/exceptions.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/managers.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/plugins.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/types.doctree
Binary file not shown.
Binary file modified latest/.doctrees/methoddocs/utils.doctree
Binary file not shown.
Binary file modified latest/.doctrees/userguides/accounts.doctree
Binary file not shown.
4 changes: 2 additions & 2 deletions latest/_sources/userguides/accounts.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ If you do not use the `--hd-path` option, Ape will use the default HDPath of (Et
You can import an account programatically using a seed phrase [using `import_account_from_mnemonic()`](../methoddocs/ape_accounts.html#ape_accounts.import_account_from_mnemonic):

```python
from ape_acounts import import_account_from_mnemonic
from ape_accounts import import_account_from_mnemonic

alias = "my-account"
passphrase = "my$ecurePassphrase"
Expand All @@ -196,7 +196,7 @@ Or using a raw private key [using `import_account_from_private_key()`](../method

```python
import os
from ape_acounts import import_account_from_private_key
from ape_accounts import import_account_from_private_key

alias = "my-account"
passphrase = "my SecurePassphrase"
Expand Down
2 changes: 1 addition & 1 deletion latest/commands/networks.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ <h2>list<a class="headerlink" href="#networks-list" title="Permalink to this hea
<dd><p>Filter the results by network</p>
<dl class="field-list simple">
<dt class="field-odd">Options<span class="colon">:</span></dt>
<dd class="field-odd"><p>mainnet-fork | mainnet | sepolia | sepolia-fork | goerli | goerli-fork | local</p>
<dd class="field-odd"><p>goerli-fork | local | sepolia-fork | mainnet | sepolia | goerli | mainnet-fork</p>
</dd>
</dl>
</dd></dl>
Expand Down
2 changes: 1 addition & 1 deletion latest/searchindex.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions latest/userguides/accounts.html
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ <h4>Importing Existing Accounts<a class="headerlink" href="#importing-existing-a
<p>If you use the <code class="docutils literal notranslate"><span class="pre">--hd-path</span></code> option, you will need to pass the <a class="reference external" href="https://help.myetherwallet.com/en/articles/5867305-hd-wallets-and-derivation-paths">HDPath</a> you’d like to use as an argument in the command.
If you do not use the <code class="docutils literal notranslate"><span class="pre">--hd-path</span></code> option, Ape will use the default HDPath of (Ethereum network, first account).</p>
<p>You can import an account programatically using a seed phrase <a class="reference external" href="../methoddocs/ape_accounts.html#ape_accounts.import_account_from_mnemonic">using <code class="docutils literal notranslate"><span class="pre">import_account_from_mnemonic()</span></code></a>:</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">ape_acounts</span> <span class="kn">import</span> <span class="n">import_account_from_mnemonic</span>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">ape_accounts</span> <span class="kn">import</span> <span class="n">import_account_from_mnemonic</span>

<span class="n">alias</span> <span class="o">=</span> <span class="s2">&quot;my-account&quot;</span>
<span class="n">passphrase</span> <span class="o">=</span> <span class="s2">&quot;my$ecurePassphrase&quot;</span>
Expand All @@ -394,7 +394,7 @@ <h4>Importing Existing Accounts<a class="headerlink" href="#importing-existing-a
</div>
<p>Or using a raw private key <a class="reference external" href="../methoddocs/ape_accounts.html#ape_accounts.import_account_from_private_key">using <code class="docutils literal notranslate"><span class="pre">import_account_from_private_key()</span></code></a>:</p>
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">os</span>
<span class="kn">from</span> <span class="nn">ape_acounts</span> <span class="kn">import</span> <span class="n">import_account_from_private_key</span>
<span class="kn">from</span> <span class="nn">ape_accounts</span> <span class="kn">import</span> <span class="n">import_account_from_private_key</span>

<span class="n">alias</span> <span class="o">=</span> <span class="s2">&quot;my-account&quot;</span>
<span class="n">passphrase</span> <span class="o">=</span> <span class="s2">&quot;my SecurePassphrase&quot;</span>
Expand Down

0 comments on commit f0ec152

Please sign in to comment.