quais 0.1.2 → 5.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -46
- package/dist/ethers.esm.js.map +1 -1
- package/dist/ethers.esm.min.js.map +1 -1
- package/dist/ethers.umd.js.map +1 -1
- package/dist/ethers.umd.min.js.map +1 -1
- package/dist/quais.esm.js +26 -26
- package/dist/quais.esm.js.map +1 -1
- package/dist/quais.esm.min.js +1 -1
- package/dist/quais.esm.min.js.map +1 -1
- package/dist/quais.umd.js +26 -26
- package/dist/quais.umd.js.map +1 -1
- package/dist/quais.umd.min.js +1 -1
- package/dist/quais.umd.min.js.map +1 -1
- package/lib/_version.d.ts +1 -1
- package/lib/_version.js +1 -1
- package/lib.esm/_version.d.ts +1 -1
- package/lib.esm/_version.js +1 -1
- package/package.json +32 -32
- package/src.ts/_version.ts +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
The
|
|
1
|
+
The Ethers Project
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/quais)
|
|
5
|
-
[](https://github.com/quais-io/quais.js/actions?query=workflow%3A%22Node.js+CI%22)
|
|
6
6
|
|
|
7
|
-
A complete
|
|
7
|
+
A complete Ethereum wallet implementation and utilities in JavaScript (and TypeScript).
|
|
8
8
|
|
|
9
9
|
**Features:**
|
|
10
|
-
IMPORTANT: These features are in beta and may not be 1:1 compatible with Quai Network as it stands.
|
|
11
10
|
|
|
12
11
|
- Keep your private keys in your client, **safe** and sound
|
|
13
12
|
- Import and export **JSON wallets** (Geth, Parity and crowdsale)
|
|
14
13
|
- Import and export BIP 39 **mnemonic phrases** (12 word backup phrases) and **HD Wallets** (English as well as Czech, French, Italian, Japanese, Korean, Simplified Chinese, Spanish, Traditional Chinese)
|
|
15
14
|
- Meta-classes create JavaScript objects from any contract ABI, including **ABIv2** and **Human-Readable ABI**
|
|
16
|
-
- Connect to Ethereum nodes over [JSON-RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC), [INFURA](https://infura.io), [Etherscan](https://etherscan.io), [Alchemy](https://alchemyapi.io)
|
|
15
|
+
- Connect to Ethereum nodes over [JSON-RPC](https://github.com/ethereum/wiki/wiki/JSON-RPC), [INFURA](https://infura.io), [Etherscan](https://etherscan.io), [Alchemy](https://alchemyapi.io) or [MetaMask](https://metamask.io)
|
|
17
16
|
- **ENS names** are first-class citizens; they can be used anywhere an Ethereum addresses can be used
|
|
18
17
|
- **Tiny** (~104kb compressed; 322kb uncompressed)
|
|
19
18
|
- **Modular** packages; include only what you need
|
|
@@ -27,12 +26,10 @@ IMPORTANT: These features are in beta and may not be 1:1 compatible with Quai Ne
|
|
|
27
26
|
Keep Updated
|
|
28
27
|
------------
|
|
29
28
|
|
|
30
|
-
For the latest news and advisories, please follow the
|
|
31
|
-
|
|
32
|
-
non-marketing, important information only) as well as watch this GitHub project.
|
|
29
|
+
For the latest news and advisories, please follow the [@quais](https://twitter.com/quaisproject)
|
|
30
|
+
on Twitter (low-traffic, non-marketing, important information only) as well as watch this GitHub project.
|
|
33
31
|
|
|
34
|
-
For the latest changes, see the
|
|
35
|
-
[CHANGELOG](https://github.com/ethers-io/quais.js/blob/master/CHANGELOG.md).
|
|
32
|
+
For the latest changes, see the [CHANGELOG](https://github.com/quais-io/quais.js/blob/master/CHANGELOG.md).
|
|
36
33
|
|
|
37
34
|
|
|
38
35
|
Installing
|
|
@@ -41,13 +38,13 @@ Installing
|
|
|
41
38
|
**node.js**
|
|
42
39
|
|
|
43
40
|
```
|
|
44
|
-
/home/ricmoo/some_project> npm install --save
|
|
41
|
+
/home/ricmoo/some_project> npm install --save quais
|
|
45
42
|
```
|
|
46
43
|
|
|
47
44
|
**browser (UMD)**
|
|
48
45
|
|
|
49
46
|
```
|
|
50
|
-
<script src="https://cdn.quais.io/lib/
|
|
47
|
+
<script src="https://cdn.quais.io/lib/quais-5.0.umd.min.js" type="text/javascript">
|
|
51
48
|
</script>
|
|
52
49
|
```
|
|
53
50
|
|
|
@@ -55,7 +52,7 @@ Installing
|
|
|
55
52
|
|
|
56
53
|
```
|
|
57
54
|
<script type="module">
|
|
58
|
-
import {
|
|
55
|
+
import { quais } from "https://cdn.quais.io/lib/quais-5.0.umd.min.js";
|
|
59
56
|
</script>
|
|
60
57
|
```
|
|
61
58
|
|
|
@@ -69,40 +66,13 @@ Browse the [documentation](https://docs.ethers.io/v5/) online:
|
|
|
69
66
|
- [Full API Documentation](https://docs.ethers.io/v5/api/)
|
|
70
67
|
- [Various Ethereum Articles](https://blog.ricmoo.com/)
|
|
71
68
|
|
|
72
|
-
|
|
73
|
-
Providers
|
|
74
|
-
---------
|
|
75
|
-
|
|
76
|
-
Ethers works closely with an ever-growing list of third-party providers
|
|
77
|
-
to ensure getting started is quick and easy, by providing default keys
|
|
78
|
-
to each service.
|
|
79
|
-
|
|
80
|
-
These built-in keys mean you can use `quais.getDefaultProvider()` and
|
|
81
|
-
start developing right away.
|
|
82
|
-
|
|
83
|
-
However, the API keys provided to ethers are also shared and are
|
|
84
|
-
intentionally throttled to encourage developers to eventually get
|
|
85
|
-
their own keys, which unlock many other features, such as faster
|
|
86
|
-
responses, more capacity, analytics and other features like archival
|
|
87
|
-
data.
|
|
88
|
-
|
|
89
|
-
When you are ready to sign up and start using for your own keys, please
|
|
90
|
-
check out the [Provider API Keys](https://docs.ethers.io/v5/api-keys/) in
|
|
91
|
-
the documentation.
|
|
92
|
-
|
|
93
|
-
A special thanks to these services for providing community resources:
|
|
94
|
-
|
|
95
|
-
- [Ankr](https://www.ankr.com/)
|
|
96
|
-
- [Etherscan](https://etherscan.io/)
|
|
97
|
-
- [INFURA](https://infura.io/)
|
|
98
|
-
- [Alchemy](https://dashboard.alchemyapi.io/signup?referral=55a35117-028e-4b7c-9e47-e275ad0acc6d)
|
|
99
|
-
- [Pocket](https://pokt.network/pocket-gateway-ethereum-mainnet/)
|
|
69
|
+
Or browse the entire documentation as a [single page](https://docs.ethers.io/v5/single-page/) to make searching easier.
|
|
100
70
|
|
|
101
71
|
|
|
102
72
|
Ancillary Packages
|
|
103
73
|
------------------
|
|
104
74
|
|
|
105
|
-
These are a number of packages not included in the umbrella `
|
|
75
|
+
These are a number of packages not included in the umbrella `quais` npm package, and
|
|
106
76
|
additional packages are always being added. Often these packages are for specific
|
|
107
77
|
use-cases, so rather than adding them to the umbrella package, they are added as
|
|
108
78
|
ancillary packages, which can be included by those who need them, while not bloating
|
|
@@ -110,12 +80,25 @@ everyone else with packages they do not need.
|
|
|
110
80
|
|
|
111
81
|
We will keep a list of useful packages here.
|
|
112
82
|
|
|
113
|
-
- `@quais/experimental` ([documentation](https://docs.ethers.io
|
|
114
|
-
- `@quais/cli` ([documentation](https://docs.ethers.io
|
|
115
|
-
- `@quais/hardware-wallets` ([documentation](https://docs.ethers.io
|
|
83
|
+
- `@quais/experimental` ([documentation](https://docs.ethers.io))
|
|
84
|
+
- `@quais/cli` ([documentation](https://docs.ethers.io))
|
|
85
|
+
- `@quais/hardware-wallets` ([documentation](https://docs.ethers.io))
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
Sponsors
|
|
89
|
+
--------
|
|
90
|
+
|
|
91
|
+
Support the quais project by [becoming a sponsor](https://quais.org/sponsoring.html).
|
|
92
|
+
Get your logo added below with a link to your website (Gold and Unobtainium tiers)
|
|
93
|
+
and on the [quais.org](https://quais.org) website.
|
|
94
|
+
|
|
95
|
+
Huge thanks to our sponsors! `<3 <3`
|
|
96
|
+
|
|
97
|
+
<a href="https://quais.org/sponsors/tally-link" target="_blank"><img src="https://quais.org/sponsors/tally-readme.svg"></a>
|
|
116
98
|
|
|
117
99
|
|
|
118
100
|
License
|
|
119
101
|
-------
|
|
120
102
|
|
|
121
|
-
MIT License (including **all** dependencies).
|
|
103
|
+
MIT License (including **all** dependencies).
|
|
104
|
+
|