@revoke.cash/chains 1.0.0

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.
@@ -0,0 +1 @@
1
+ export declare const capitalize: (str: string) => string;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.capitalize = void 0;
4
+ var capitalize = function (str) {
5
+ return str.charAt(0).toUpperCase() + str.slice(1);
6
+ };
7
+ exports.capitalize = capitalize;
@@ -0,0 +1,57 @@
1
+ import { Chain, Chains } from './types';
2
+ import { chains } from './chains';
3
+ export { NativeCurrency, Explorer, Parent } from './types';
4
+ export { ChainName, ChainId } from './enums';
5
+ export { chains, Chain, Chains };
6
+ /**
7
+ * Helper to make accessing the most popular chains easier
8
+ */
9
+ export declare const chain: {
10
+ ethereum: {
11
+ mainnet: Chain;
12
+ rinkeby: Chain;
13
+ ropsten: Chain;
14
+ kovan: Chain;
15
+ goerli: Chain;
16
+ };
17
+ polygon: {
18
+ mainnet: Chain;
19
+ mumbai: Chain;
20
+ };
21
+ arbitrum: {
22
+ mainnet: Chain;
23
+ rinkeby: Chain;
24
+ };
25
+ optimism: {
26
+ mainnet: Chain;
27
+ kovan: Chain;
28
+ };
29
+ };
30
+ declare const _default: {
31
+ getById: (id: number) => Chain | undefined;
32
+ getByName: (name: string) => Chain | undefined;
33
+ get: (idOrName: string | number) => Chain | undefined;
34
+ all: () => Chains;
35
+ chain: {
36
+ ethereum: {
37
+ mainnet: Chain;
38
+ rinkeby: Chain;
39
+ ropsten: Chain;
40
+ kovan: Chain;
41
+ goerli: Chain;
42
+ };
43
+ polygon: {
44
+ mainnet: Chain;
45
+ mumbai: Chain;
46
+ };
47
+ arbitrum: {
48
+ mainnet: Chain;
49
+ rinkeby: Chain;
50
+ };
51
+ optimism: {
52
+ mainnet: Chain;
53
+ kovan: Chain;
54
+ };
55
+ };
56
+ };
57
+ export default _default;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.chain = exports.chains = exports.ChainId = exports.ChainName = void 0;
4
+ var chains_1 = require("./chains");
5
+ Object.defineProperty(exports, "chains", { enumerable: true, get: function () { return chains_1.chains; } });
6
+ var enums_1 = require("./enums");
7
+ var enums_2 = require("./enums");
8
+ Object.defineProperty(exports, "ChainName", { enumerable: true, get: function () { return enums_2.ChainName; } });
9
+ Object.defineProperty(exports, "ChainId", { enumerable: true, get: function () { return enums_2.ChainId; } });
10
+ /**
11
+ * Get a chain by its `id`.
12
+ * @param id - The `id` of the chain
13
+ * @returns The `Chain` object associated with the chain `id`
14
+ */
15
+ var getById = function (id) { return chains_1.chains[id]; };
16
+ /**
17
+ * Get a chain by its `name`.
18
+ * @param name - The `name` of the chain
19
+ * @returns The `Chain` object associated with the chain `name`
20
+ */
21
+ var getByName = function (name) {
22
+ return Object.values(chains_1.chains).find(function (chain) { return chain.name === name; }) || {};
23
+ };
24
+ /**
25
+ * Get a chain by its `id` or by its `name`.
26
+ * @param idOrName - The name or id of the chain
27
+ * @returns The `Chain` object associated with the `id` or `name`
28
+ */
29
+ var get = function (idOrName) {
30
+ return typeof idOrName === 'number' ? getById(idOrName) : getByName(idOrName);
31
+ };
32
+ /**
33
+ * Gets the entire `chains` object
34
+ * @returns An object containing all chains
35
+ */
36
+ var all = function () { return chains_1.chains; };
37
+ /**
38
+ * Helper to make accessing the most popular chains easier
39
+ */
40
+ exports.chain = {
41
+ ethereum: {
42
+ mainnet: chains_1.chains[enums_1.ChainId.EthereumMainnet],
43
+ rinkeby: chains_1.chains[enums_1.ChainId.Rinkeby],
44
+ ropsten: chains_1.chains[enums_1.ChainId.Ropsten],
45
+ kovan: chains_1.chains[enums_1.ChainId.Kovan],
46
+ goerli: chains_1.chains[enums_1.ChainId.Goerli]
47
+ },
48
+ polygon: {
49
+ mainnet: chains_1.chains[enums_1.ChainId.PolygonMainnet],
50
+ mumbai: chains_1.chains[enums_1.ChainId.Mumbai]
51
+ },
52
+ arbitrum: {
53
+ mainnet: chains_1.chains[enums_1.ChainId.ArbitrumOne],
54
+ rinkeby: chains_1.chains[enums_1.ChainId.ArbitrumRinkeby]
55
+ },
56
+ optimism: {
57
+ mainnet: chains_1.chains[enums_1.ChainId.Optimism],
58
+ kovan: chains_1.chains[enums_1.ChainId.OptimismKovan]
59
+ }
60
+ };
61
+ exports.default = {
62
+ getById: getById,
63
+ getByName: getByName,
64
+ get: get,
65
+ all: all,
66
+ chain: exports.chain
67
+ };
@@ -0,0 +1,47 @@
1
+ export interface Chain {
2
+ name: string;
3
+ title?: string;
4
+ chainId: number;
5
+ shortName: string;
6
+ chain: string;
7
+ network?: string;
8
+ networkId: number;
9
+ nativeCurrency: NativeCurrency;
10
+ rpc: string[];
11
+ explorers?: Explorer[];
12
+ features?: Feature[];
13
+ faucets: string[];
14
+ infoURL: string;
15
+ icon?: string;
16
+ slip44?: number;
17
+ parent?: Parent;
18
+ ens?: {
19
+ registry: string;
20
+ };
21
+ status?: 'active' | 'deprecated' | 'incubating';
22
+ redFlags?: string[];
23
+ }
24
+ export interface NativeCurrency {
25
+ name: string;
26
+ symbol: string;
27
+ decimals: number;
28
+ }
29
+ export interface Explorer {
30
+ name: string;
31
+ url: string;
32
+ icon?: string;
33
+ standard: string;
34
+ }
35
+ export interface Parent {
36
+ chain: string;
37
+ type: 'L2' | 'shard';
38
+ bridges?: Array<{
39
+ url: string;
40
+ }>;
41
+ }
42
+ export interface Feature {
43
+ name: string;
44
+ }
45
+ export interface Chains {
46
+ [key: number]: Chain;
47
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@revoke.cash/chains",
3
+ "version": "1.0.0",
4
+ "description": "Helper module for getting EVM chains info.",
5
+ "author": "Revoke.cash",
6
+ "contributors": [
7
+ "Taylor Dawson",
8
+ "Rosco Kalis"
9
+ ],
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "files": [
13
+ "dist",
14
+ "yarn.lock"
15
+ ],
16
+ "license": "MIT",
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "generate": "ts-node src/build.ts",
20
+ "format": "prettier --write src/",
21
+ "prepack": "yarn build"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^14.14.37",
25
+ "@types/prettier": "^2.2.3",
26
+ "got": "^11.8.2",
27
+ "prettier": "^2.2.1",
28
+ "ts-node": "^9.1.1",
29
+ "typescript": "^4.2.3"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ }
34
+ }
package/yarn.lock ADDED
@@ -0,0 +1,274 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ "@sindresorhus/is@^4.0.0":
6
+ version "4.0.0"
7
+ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.0.0.tgz#2ff674e9611b45b528896d820d3d7a812de2f0e4"
8
+ integrity sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==
9
+
10
+ "@szmarczak/http-timer@^4.0.5":
11
+ version "4.0.5"
12
+ resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.5.tgz#bfbd50211e9dfa51ba07da58a14cdfd333205152"
13
+ integrity sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==
14
+ dependencies:
15
+ defer-to-connect "^2.0.0"
16
+
17
+ "@types/cacheable-request@^6.0.1":
18
+ version "6.0.1"
19
+ resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.1.tgz#5d22f3dded1fd3a84c0bbeb5039a7419c2c91976"
20
+ integrity sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==
21
+ dependencies:
22
+ "@types/http-cache-semantics" "*"
23
+ "@types/keyv" "*"
24
+ "@types/node" "*"
25
+ "@types/responselike" "*"
26
+
27
+ "@types/http-cache-semantics@*":
28
+ version "4.0.0"
29
+ resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz#9140779736aa2655635ee756e2467d787cfe8a2a"
30
+ integrity sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==
31
+
32
+ "@types/keyv@*":
33
+ version "3.1.1"
34
+ resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz#e45a45324fca9dab716ab1230ee249c9fb52cfa7"
35
+ integrity sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==
36
+ dependencies:
37
+ "@types/node" "*"
38
+
39
+ "@types/node@*", "@types/node@^14.14.37":
40
+ version "14.14.37"
41
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e"
42
+ integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==
43
+
44
+ "@types/prettier@^2.2.3":
45
+ version "2.2.3"
46
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.3.tgz#ef65165aea2924c9359205bf748865b8881753c0"
47
+ integrity sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==
48
+
49
+ "@types/responselike@*", "@types/responselike@^1.0.0":
50
+ version "1.0.0"
51
+ resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"
52
+ integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
53
+ dependencies:
54
+ "@types/node" "*"
55
+
56
+ arg@^4.1.0:
57
+ version "4.1.3"
58
+ resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
59
+ integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
60
+
61
+ buffer-from@^1.0.0:
62
+ version "1.1.1"
63
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
64
+ integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
65
+
66
+ cacheable-lookup@^5.0.3:
67
+ version "5.0.4"
68
+ resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005"
69
+ integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==
70
+
71
+ cacheable-request@^7.0.1:
72
+ version "7.0.1"
73
+ resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.1.tgz#062031c2856232782ed694a257fa35da93942a58"
74
+ integrity sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==
75
+ dependencies:
76
+ clone-response "^1.0.2"
77
+ get-stream "^5.1.0"
78
+ http-cache-semantics "^4.0.0"
79
+ keyv "^4.0.0"
80
+ lowercase-keys "^2.0.0"
81
+ normalize-url "^4.1.0"
82
+ responselike "^2.0.0"
83
+
84
+ clone-response@^1.0.2:
85
+ version "1.0.2"
86
+ resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
87
+ integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
88
+ dependencies:
89
+ mimic-response "^1.0.0"
90
+
91
+ create-require@^1.1.0:
92
+ version "1.1.1"
93
+ resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
94
+ integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
95
+
96
+ decompress-response@^6.0.0:
97
+ version "6.0.0"
98
+ resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc"
99
+ integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==
100
+ dependencies:
101
+ mimic-response "^3.1.0"
102
+
103
+ defer-to-connect@^2.0.0:
104
+ version "2.0.1"
105
+ resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
106
+ integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
107
+
108
+ diff@^4.0.1:
109
+ version "4.0.2"
110
+ resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
111
+ integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
112
+
113
+ end-of-stream@^1.1.0:
114
+ version "1.4.4"
115
+ resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
116
+ integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
117
+ dependencies:
118
+ once "^1.4.0"
119
+
120
+ get-stream@^5.1.0:
121
+ version "5.2.0"
122
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
123
+ integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
124
+ dependencies:
125
+ pump "^3.0.0"
126
+
127
+ got@^11.8.2:
128
+ version "11.8.2"
129
+ resolved "https://registry.yarnpkg.com/got/-/got-11.8.2.tgz#7abb3959ea28c31f3576f1576c1effce23f33599"
130
+ integrity sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==
131
+ dependencies:
132
+ "@sindresorhus/is" "^4.0.0"
133
+ "@szmarczak/http-timer" "^4.0.5"
134
+ "@types/cacheable-request" "^6.0.1"
135
+ "@types/responselike" "^1.0.0"
136
+ cacheable-lookup "^5.0.3"
137
+ cacheable-request "^7.0.1"
138
+ decompress-response "^6.0.0"
139
+ http2-wrapper "^1.0.0-beta.5.2"
140
+ lowercase-keys "^2.0.0"
141
+ p-cancelable "^2.0.0"
142
+ responselike "^2.0.0"
143
+
144
+ http-cache-semantics@^4.0.0:
145
+ version "4.1.0"
146
+ resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
147
+ integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==
148
+
149
+ http2-wrapper@^1.0.0-beta.5.2:
150
+ version "1.0.3"
151
+ resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d"
152
+ integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==
153
+ dependencies:
154
+ quick-lru "^5.1.1"
155
+ resolve-alpn "^1.0.0"
156
+
157
+ json-buffer@3.0.1:
158
+ version "3.0.1"
159
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
160
+ integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
161
+
162
+ keyv@^4.0.0:
163
+ version "4.0.3"
164
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.0.3.tgz#4f3aa98de254803cafcd2896734108daa35e4254"
165
+ integrity sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==
166
+ dependencies:
167
+ json-buffer "3.0.1"
168
+
169
+ lowercase-keys@^2.0.0:
170
+ version "2.0.0"
171
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
172
+ integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
173
+
174
+ make-error@^1.1.1:
175
+ version "1.3.6"
176
+ resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
177
+ integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
178
+
179
+ mimic-response@^1.0.0:
180
+ version "1.0.1"
181
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
182
+ integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
183
+
184
+ mimic-response@^3.1.0:
185
+ version "3.1.0"
186
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
187
+ integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==
188
+
189
+ normalize-url@^4.1.0:
190
+ version "4.5.0"
191
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
192
+ integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
193
+
194
+ once@^1.3.1, once@^1.4.0:
195
+ version "1.4.0"
196
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
197
+ integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
198
+ dependencies:
199
+ wrappy "1"
200
+
201
+ p-cancelable@^2.0.0:
202
+ version "2.1.0"
203
+ resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.0.tgz#4d51c3b91f483d02a0d300765321fca393d758dd"
204
+ integrity sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==
205
+
206
+ prettier@^2.2.1:
207
+ version "2.2.1"
208
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
209
+ integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
210
+
211
+ pump@^3.0.0:
212
+ version "3.0.0"
213
+ resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
214
+ integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
215
+ dependencies:
216
+ end-of-stream "^1.1.0"
217
+ once "^1.3.1"
218
+
219
+ quick-lru@^5.1.1:
220
+ version "5.1.1"
221
+ resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
222
+ integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
223
+
224
+ resolve-alpn@^1.0.0:
225
+ version "1.0.0"
226
+ resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.0.0.tgz#745ad60b3d6aff4b4a48e01b8c0bdc70959e0e8c"
227
+ integrity sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==
228
+
229
+ responselike@^2.0.0:
230
+ version "2.0.0"
231
+ resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.0.tgz#26391bcc3174f750f9a79eacc40a12a5c42d7723"
232
+ integrity sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==
233
+ dependencies:
234
+ lowercase-keys "^2.0.0"
235
+
236
+ source-map-support@^0.5.17:
237
+ version "0.5.19"
238
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
239
+ integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
240
+ dependencies:
241
+ buffer-from "^1.0.0"
242
+ source-map "^0.6.0"
243
+
244
+ source-map@^0.6.0:
245
+ version "0.6.1"
246
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
247
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
248
+
249
+ ts-node@^9.1.1:
250
+ version "9.1.1"
251
+ resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
252
+ integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
253
+ dependencies:
254
+ arg "^4.1.0"
255
+ create-require "^1.1.0"
256
+ diff "^4.0.1"
257
+ make-error "^1.1.1"
258
+ source-map-support "^0.5.17"
259
+ yn "3.1.1"
260
+
261
+ typescript@^4.2.3:
262
+ version "4.2.3"
263
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3"
264
+ integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==
265
+
266
+ wrappy@1:
267
+ version "1.0.2"
268
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
269
+ integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
270
+
271
+ yn@3.1.1:
272
+ version "3.1.1"
273
+ resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
274
+ integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==