quais 0.1.0 → 0.1.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 CHANGED
@@ -1,18 +1,19 @@
1
- The Ethers Project
1
+ The Quais Project
2
2
  ==================
3
3
 
4
4
  [![npm (tag)](https://img.shields.io/npm/v/quais)](https://www.npmjs.com/package/quais)
5
- [![Node.js CI](https://github.com/quais-io/quais.js/workflows/Node.js%20CI/badge.svg?branch=quais-v5-beta)](https://github.com/quais-io/quais.js/actions?query=workflow%3A%22Node.js+CI%22)
5
+ [![Node.js CI](https://github.com/dominant-strategies/quais.js/actions/workflows/nodejs.yml/badge.svg)](https://github.com/dominant-strategies/quais.js/actions/workflows/nodejs.yml)
6
6
 
7
- A complete Ethereum wallet implementation and utilities in JavaScript (and TypeScript).
7
+ A complete Quai wallet implementation and utilities in JavaScript (and TypeScript). Quais is a downstream fork of Ethers v5.7.2.
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.
10
11
 
11
12
  - Keep your private keys in your client, **safe** and sound
12
13
  - Import and export **JSON wallets** (Geth, Parity and crowdsale)
13
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)
14
15
  - Meta-classes create JavaScript objects from any contract ABI, including **ABIv2** and **Human-Readable ABI**
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)
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)
16
17
  - **ENS names** are first-class citizens; they can be used anywhere an Ethereum addresses can be used
17
18
  - **Tiny** (~104kb compressed; 322kb uncompressed)
18
19
  - **Modular** packages; include only what you need
@@ -26,10 +27,12 @@ A complete Ethereum wallet implementation and utilities in JavaScript (and TypeS
26
27
  Keep Updated
27
28
  ------------
28
29
 
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.
30
+ For the latest news and advisories, please follow the
31
+ [@quainetwork](https://twitter.com/quainetwork) on Twitter (low-traffic,
32
+ non-marketing, important information only) as well as watch this GitHub project.
31
33
 
32
- For the latest changes, see the [CHANGELOG](https://github.com/quais-io/quais.js/blob/master/CHANGELOG.md).
34
+ For the latest changes, see the
35
+ [CHANGELOG](https://github.com/ethers-io/quais.js/blob/master/CHANGELOG.md).
33
36
 
34
37
 
35
38
  Installing
@@ -38,13 +41,13 @@ Installing
38
41
  **node.js**
39
42
 
40
43
  ```
41
- /home/ricmoo/some_project> npm install --save quais
44
+ /home/ricmoo/some_project> npm install --save ethers
42
45
  ```
43
46
 
44
47
  **browser (UMD)**
45
48
 
46
49
  ```
47
- <script src="https://cdn.quais.io/lib/quais-5.0.umd.min.js" type="text/javascript">
50
+ <script src="https://cdn.quais.io/lib/ethers-5.6.umd.min.js" type="text/javascript">
48
51
  </script>
49
52
  ```
50
53
 
@@ -52,7 +55,7 @@ Installing
52
55
 
53
56
  ```
54
57
  <script type="module">
55
- import { quais } from "https://cdn.quais.io/lib/quais-5.0.umd.min.js";
58
+ import { ethers } from "https://cdn.quais.io/lib/ethers-5.6.esm.min.js";
56
59
  </script>
57
60
  ```
58
61
 
@@ -66,13 +69,40 @@ Browse the [documentation](https://docs.ethers.io/v5/) online:
66
69
  - [Full API Documentation](https://docs.ethers.io/v5/api/)
67
70
  - [Various Ethereum Articles](https://blog.ricmoo.com/)
68
71
 
69
- Or browse the entire documentation as a [single page](https://docs.ethers.io/v5/single-page/) to make searching easier.
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/)
70
100
 
71
101
 
72
102
  Ancillary Packages
73
103
  ------------------
74
104
 
75
- These are a number of packages not included in the umbrella `quais` npm package, and
105
+ These are a number of packages not included in the umbrella `ethers` npm package, and
76
106
  additional packages are always being added. Often these packages are for specific
77
107
  use-cases, so rather than adding them to the umbrella package, they are added as
78
108
  ancillary packages, which can be included by those who need them, while not bloating
@@ -80,25 +110,12 @@ everyone else with packages they do not need.
80
110
 
81
111
  We will keep a list of useful packages here.
82
112
 
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>
113
+ - `@quais/experimental` ([documentation](https://docs.ethers.io/v5/api/experimental/))
114
+ - `@quais/cli` ([documentation](https://docs.ethers.io/v5/cli/))
115
+ - `@quais/hardware-wallets` ([documentation](https://docs.ethers.io/v5/api/other/hardware/))
98
116
 
99
117
 
100
118
  License
101
119
  -------
102
120
 
103
- MIT License (including **all** dependencies).
104
-
121
+ MIT License (including **all** dependencies).