You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ dependencies in your `mix.exs` file:
23
23
```elixir
24
24
defdepsdo
25
25
[
26
-
{:ethers, "~> 0.2.1"},
26
+
{:ethers, "~> 0.2.2"},
27
27
# Uncomment next line if you want to use local signers
28
28
# {:ex_secp256k1, "~> 0.7.2"}
29
29
]
@@ -283,18 +283,23 @@ All contributions are very welcome (as simple as fixing typos). Please feel free
283
283
push Pull Requests. Just remember to be respectful to everyone!
284
284
285
285
To run the tests locally, follow below steps:
286
+
286
287
- Install [ethereum](https://geth.ethereum.org/docs/getting-started/installing-geth) and [solc](https://docs.soliditylang.org/en/latest/installing-solidity.html). For example, on MacOS
288
+
287
289
```
288
290
brew install ethereum
289
291
npm install -g solc
290
292
```
293
+
291
294
- Run [ganache](https://github.com/trufflesuite/ganache).
292
-
After installing ganache, just run the following in a new window
295
+
After installing ganache, just run the following in a new window
293
296
294
297
```
295
298
> ganache --wallet.deterministic
296
299
```
300
+
297
301
Then you should be able to run tests through `mix test`.
302
+
298
303
## Acknowledgements
299
304
300
305
Ethers was possible to make thanks to the great contributors of the following libraries.
0 commit comments