Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yarn install has been replaced with add to add new dependencies. #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To install locally, do:
cd account-abstraction
yarn install
yarn test

To run a sample flow, calling locally the ``EntryPoint.handleOps()``
(note that for non-local network, you need to set ``MNEMONIC_FILE`` environment var to an account that has some eth)

Expand All @@ -27,21 +27,21 @@ To run a sample operation against the goerli miner do
.. code-block:: console

yarn run runop-goerli

Just using the Contracts:
------------------------

.. code-block:: console

yarn install @account-abstraction/contracts
yarn add @account-abstraction/contracts

From solidity code:

.. code-block:: javascript

import "@account-abstraction/contracts/BaseWallet.sol";
contract MyContract is BaseWallet {

contract MyContract is BaseWallet {
...
}

Expand Down