quais 0.1.4 → 0.1.5
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 +8 -37
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,10 +14,10 @@ IMPORTANT: These features are in beta and may not be 1:1 compatible with Quai Ne
|
|
|
14
14
|
- 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
15
|
- Meta-classes create JavaScript objects from any contract ABI, including **ABIv2** and **Human-Readable ABI**
|
|
16
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), [Ankr](https://ankr.com) or [MetaMask](https://metamask.io)
|
|
17
|
-
- **
|
|
17
|
+
- **QNS names** are first-class citizens; they can be used anywhere an Quai addresses can be used. QNS names are in progress.
|
|
18
18
|
- **Tiny** (~104kb compressed; 322kb uncompressed)
|
|
19
19
|
- **Modular** packages; include only what you need
|
|
20
|
-
- **Complete** functionality for all your
|
|
20
|
+
- **Complete** functionality for all your Quai desires
|
|
21
21
|
- Extensive [documentation](https://docs.ethers.io/v5/)
|
|
22
22
|
- Large collection of **test cases** which are maintained and added to
|
|
23
23
|
- Fully **TypeScript** ready, with definition files and full TypeScript source
|
|
@@ -32,7 +32,7 @@ For the latest news and advisories, please follow the
|
|
|
32
32
|
non-marketing, important information only) as well as watch this GitHub project.
|
|
33
33
|
|
|
34
34
|
For the latest changes, see the
|
|
35
|
-
[CHANGELOG](https://github.com/
|
|
35
|
+
[CHANGELOG](https://github.com/dominant-strategies/quais.js/blob/master/CHANGELOG.md).
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
Installing
|
|
@@ -41,13 +41,13 @@ Installing
|
|
|
41
41
|
**node.js**
|
|
42
42
|
|
|
43
43
|
```
|
|
44
|
-
/home/ricmoo/some_project> npm install --save
|
|
44
|
+
/home/ricmoo/some_project> npm install --save quais
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
**browser (UMD)**
|
|
48
48
|
|
|
49
49
|
```
|
|
50
|
-
<script src="https://cdn.quais.io/lib/
|
|
50
|
+
<script src="https://cdn.quais.io/lib/quais-1.0.4.umd.min.js" type="text/javascript">
|
|
51
51
|
</script>
|
|
52
52
|
```
|
|
53
53
|
|
|
@@ -55,7 +55,7 @@ Installing
|
|
|
55
55
|
|
|
56
56
|
```
|
|
57
57
|
<script type="module">
|
|
58
|
-
import {
|
|
58
|
+
import { quais } from "https://cdn.quais.io/lib/quais-1.0.4.esm.min.js";
|
|
59
59
|
</script>
|
|
60
60
|
```
|
|
61
61
|
|
|
@@ -69,36 +69,6 @@ Browse the [documentation](https://docs.ethers.io/v5/) online:
|
|
|
69
69
|
- [Full API Documentation](https://docs.ethers.io/v5/api/)
|
|
70
70
|
- [Various Ethereum Articles](https://blog.ricmoo.com/)
|
|
71
71
|
|
|
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/)
|
|
100
|
-
|
|
101
|
-
|
|
102
72
|
Ancillary Packages
|
|
103
73
|
------------------
|
|
104
74
|
|
|
@@ -118,4 +88,5 @@ We will keep a list of useful packages here.
|
|
|
118
88
|
License
|
|
119
89
|
-------
|
|
120
90
|
|
|
121
|
-
MIT License (including **all** dependencies).
|
|
91
|
+
MIT License (including **all** dependencies).
|
|
92
|
+
|
package/package.json
CHANGED