chore: update readme

This commit is contained in:
Georgios Konstantopoulos 2022-10-25 11:18:49 -07:00
parent 87b10bdf24
commit def99318bb
1 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ You can also run any of the examples by executing: `cargo run -p ethers --exampl
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs" } ethers = "1.0.0"
``` ```
</details> </details>
@ -49,7 +49,7 @@ address that, you must use the `legacy` feature flag:
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["legacy"] } ethers = { version = "1.0.0", features = ["legacy"] }
``` ```
### Polygon support ### Polygon support
@ -69,7 +69,7 @@ You can get one [here](https://snowtrace.io/apis).
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["celo"] } ethers = { version = "1.0.0", features = ["celo"] }
``` ```
Celo's transactions differ from Ethereum transactions by including 3 new fields: Celo's transactions differ from Ethereum transactions by including 3 new fields:
@ -107,7 +107,7 @@ Websockets support is turned on via the feature-flag `ws`:
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["ws"] } ethers = { version = "1.0.0", features = ["ws"] }
``` ```
### Interprocess Communication (IPC) ### Interprocess Communication (IPC)
@ -117,7 +117,7 @@ IPC support is turned on via the feature-flag `ipc`:
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["ipc"] } ethers = { version = "1.0.0", features = ["ipc"] }
``` ```
### HTTP Secure (HTTPS) ### HTTP Secure (HTTPS)
@ -130,7 +130,7 @@ To enable `rustls`:
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls"] } ethers = { version = "1.0.0", features = ["rustls"] }
``` ```
To enable `openssl`: To enable `openssl`:
@ -138,7 +138,7 @@ To enable `openssl`:
```toml ```toml
[dependencies] [dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["openssl"] } ethers = { version = "1.0.0", features = ["openssl"] }
``` ```
## Note on WASM and FFI bindings ## Note on WASM and FFI bindings