├── .github
└── workflows
│ ├── lint.yml
│ └── tests.yml
├── .gitignore
├── .mocharc.json
├── .prettierignore
├── .prettierrc
├── .yarnrc
├── LICENSE
├── README.md
├── index.ts
├── package.json
├── shebang.txt
├── src
├── deploy.ts
├── migrate.ts
├── migrations.ts
├── steps
│ ├── add-1bp-fee-tier.ts
│ ├── deploy-multicall2.ts
│ ├── deploy-nft-descriptor-library-v1_3_0.ts
│ ├── deploy-nft-position-descriptor-v1_3_0.ts
│ ├── deploy-nonfungible-position-manager.ts
│ ├── deploy-proxy-admin.ts
│ ├── deploy-quoter-v2.ts
│ ├── deploy-tick-lens.ts
│ ├── deploy-transparent-proxy-descriptor.ts
│ ├── deploy-v3-core-factory.ts
│ ├── deploy-v3-migrator.ts
│ ├── deploy-v3-staker.ts
│ ├── deploy-v3-swap-router-02.ts
│ ├── meta
│ │ ├── createDeployContractStep.ts
│ │ └── createDeployLibraryStep.ts
│ ├── transfer-proxy-admin.ts
│ └── transfer-v3-core-factory-owner.ts
└── util
│ ├── asciiStringToBytes32.ts
│ └── linkLibraries.ts
├── test
├── asciiStringToBytes32.spec.ts
└── deploy-v3-core-factory.spec.ts
├── tsconfig.json
└── yarn.lock
/.github/workflows/lint.yml:
--------------------------------------------------------------------------------
1 | name: Lint
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 | pull_request:
8 |
9 | jobs:
10 | run-linters:
11 | name: Run linters
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Check out Git repository
16 | uses: actions/checkout@v2
17 |
18 | - name: Set up node
19 | uses: actions/setup-node@v1
20 | with:
21 | node-version: 12
22 | registry-url: https://registry.npmjs.org
23 |
24 | - name: Set output of cache
25 | id: yarn-cache
26 | run: echo "::set-output name=dir::$(yarn cache dir)"
27 |
28 | - name: Node dependency cache
29 | uses: actions/cache@v1
30 | with:
31 | path: ${{ steps.yarn-cache.outputs.dir }}
32 | key: yarn-${{ hashFiles('**/yarn.lock') }}
33 | restore-keys: |
34 | yarn-
35 |
36 | - name: Install dependencies
37 | run: yarn --frozen-lockfile
38 |
39 | - name: Run linters
40 | uses: wearerequired/lint-action@v1
41 | with:
42 | github_token: ${{ secrets.github_token }}
43 | prettier: true
44 | auto_fix: true
45 |
--------------------------------------------------------------------------------
/.github/workflows/tests.yml:
--------------------------------------------------------------------------------
1 | name: Tests
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 | pull_request:
8 |
9 | jobs:
10 | unit-tests:
11 | name: Unit Tests
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Check out Git repository
16 | uses: actions/checkout@v2
17 |
18 | - name: Set up node
19 | uses: actions/setup-node@v1
20 | with:
21 | node-version: 12
22 | registry-url: https://registry.npmjs.org
23 |
24 | - name: Set output of cache
25 | id: yarn-cache
26 | run: echo "::set-output name=dir::$(yarn cache dir)"
27 |
28 | - name: Node dependency cache
29 | uses: actions/cache@v1
30 | with:
31 | path: ${{ steps.yarn-cache.outputs.dir }}
32 | key: yarn-${{ hashFiles('**/yarn.lock') }}
33 | restore-keys: |
34 | yarn-
35 |
36 | - name: Install dependencies
37 | run: yarn --frozen-lockfile
38 |
39 | - name: Run unit tests
40 | run: yarn test
41 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | private/
2 |
3 | # Logs
4 | logs
5 | *.log
6 | npm-debug.log*
7 | yarn-debug.log*
8 | yarn-error.log*
9 | lerna-debug.log*
10 |
11 | # Diagnostic reports (https://nodejs.org/api/report.html)
12 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13 |
14 | # Runtime data
15 | pids
16 | *.pid
17 | *.seed
18 | *.pid.lock
19 |
20 | # Directory for instrumented libs generated by jscoverage/JSCover
21 | lib-cov
22 |
23 | # Coverage directory used by tools like istanbul
24 | coverage
25 | *.lcov
26 |
27 | # nyc test coverage
28 | .nyc_output
29 |
30 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31 | .grunt
32 |
33 | # Bower dependency directory (https://bower.io/)
34 | bower_components
35 |
36 | # node-waf configuration
37 | .lock-wscript
38 |
39 | # Compiled binary addons (https://nodejs.org/api/addons.html)
40 | build/Release
41 |
42 | # Dependency directories
43 | node_modules/
44 | jspm_packages/
45 |
46 | # TypeScript v1 declaration files
47 | typings/
48 |
49 | # TypeScript cache
50 | *.tsbuildinfo
51 |
52 | # Optional npm cache directory
53 | .npm
54 |
55 | # Optional eslint cache
56 | .eslintcache
57 |
58 | # Microbundle cache
59 | .rpt2_cache/
60 | .rts2_cache_cjs/
61 | .rts2_cache_es/
62 | .rts2_cache_umd/
63 |
64 | # Optional REPL history
65 | .node_repl_history
66 |
67 | # Output of 'npm pack'
68 | *.tgz
69 |
70 | # Yarn Integrity file
71 | .yarn-integrity
72 |
73 | # dotenv environment variables file
74 | .env
75 | .env.test
76 |
77 | # parcel-bundler cache (https://parceljs.org/)
78 | .cache
79 |
80 | # Next.js build output
81 | .next
82 |
83 | # Nuxt.js build / generate output
84 | .nuxt
85 | dist
86 |
87 | # Gatsby files
88 | .cache/
89 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
90 | # https://nextjs.org/blog/next-9-1#public-directory-support
91 | # public
92 |
93 | # vuepress build output
94 | .vuepress/dist
95 |
96 | # Serverless directories
97 | .serverless/
98 |
99 | # FuseBox cache
100 | .fusebox/
101 |
102 | # DynamoDB Local files
103 | .dynamodb/
104 |
105 | # TernJS port file
106 | .tern-port
107 |
108 | .nvmrc
109 |
--------------------------------------------------------------------------------
/.mocharc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extension": ["ts"],
3 | "spec": "./test/**/*.spec.ts",
4 | "require": "ts-node/register",
5 | "timeout": 12000
6 | }
7 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | .github
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": false,
3 | "singleQuote": true,
4 | "printWidth": 120
5 | }
6 |
--------------------------------------------------------------------------------
/.yarnrc:
--------------------------------------------------------------------------------
1 | ignore-scripts true
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Deploy Uniswap V3 Script
2 |
3 | This package includes a CLI script for deploying the latest Uniswap V3 smart contracts to any EVM (Ethereum Virtual Machine) compatible network.
4 |
5 | ## Licensing
6 |
7 | Please note that Uniswap V3 is under [BUSL license](https://github.com/Uniswap/v3-core#licensing) until the Change Date, currently 2023-04-01. Exceptions to the license may be specified by Uniswap Governance via Additional Use Grants, which can, for example, allow V3 to be deployed on new chains. Please follow the [Uniswap Governance process](https://gov.uniswap.org/t/community-governance-process/7732) to request a DAO vote for exceptions to the license, or to move up the Change Date.
8 |
9 | License changes must be enacted via the [ENS domain](https://ens.domains/) uniswap.eth, which is controlled by Uniswap Governance. This means (among other things) that Governance has the power to associate arbitrary text with any subdomain of the form X.uniswap.eth. Modifications of the Change Date should be specified at v3-core-license-date.uniswap.eth, and Additional Use Grants should be specified at v3-core-license-grants.uniswap.eth. The process for associating text with a subdomain is detailed below:
10 |
11 | 1. If the subdomain does not already exist (which can be [checked at this URL](https://app.ens.domains/name/uniswap.eth/subdomains)), the [`setSubnodeRecord`](https://docs.ens.domains/contract-api-reference/ens#set-subdomain-record) function of the ENS registry should be called with the following arguments:
12 |
13 | - `node`: `namehash('uniswap.eth')` (`0xa2a03459171c76bff45817330c10ef9f8af07011a33005b73b50189bbc7e7132`)
14 | - `label`: `keccak256('v3-core-license-date')` (`0xee55740591b0fd5d7a28a6edc49567f6ff3febbe942ec0e2fa49ee536595085b`) or `keccak256('v3-core-license-grants')` (`0x15ff9b5bd7642701a10e5ea8fb29c957ffda4854cd028e9f6218506e6b509af2`)
15 | - `owner`: [`0x1a9C8182C09F50C8318d769245beA52c32BE35BC`](https://etherscan.io/address/0x1a9c8182c09f50c8318d769245bea52c32be35bc), the Uniswap Governance Timelock
16 | - `resolver`: [`0x4976fb03c32e5b8cfe2b6ccb31c09ba78ebaba41`](https://etherscan.io/address/0x4976fb03c32e5b8cfe2b6ccb31c09ba78ebaba41), the public ENS resolver.
17 | - `ttl`: `0`
18 |
19 | 2. Then, the [`setText`](https://docs.ens.domains/contract-api-reference/publicresolver#set-text-data) function of the public resolver should be called with the following arguments:
20 |
21 | - `node`: `namehash('v3-core-license-date.uniswap.eth')` (`0x0505ec7822d61b4cfb294f137d1a7f0ceedf162f555a4bf2f4be58a07cf266c5`) or `namehash('v3-core-license-grants.uniswap.eth')` (`0xa35d592ec6e5289a387cba1d5f82be794f495bd5a361a1fb314687c6aefea1f4`)
22 | - `key`: A suitable label, such as `notice`.
23 | - `value`: The text of the change. Note that text may already be associated with the subdomain in question. If it does, it can be reviewed at the following URLs for either [v3-core-license-date](https://app.ens.domains/name/v3-core-license-date.uniswap.eth/details) or [v3-core-license-grants](https://app.ens.domains/name/v3-core-license-grants.uniswap.eth/details), and appended to as desired.
24 |
25 | Note: [`setContentHash`](https://docs.ens.domains/contract-api-reference/publicresolver#set-content-hash) may also be used to associate text with a subdomain, but `setText` is presented above for simplicity.
26 |
27 | These contract function calls should ultimately be encoded into a governance proposal, about which more details are available [here](https://docs.uniswap.org/protocol/concepts/governance/overview).
28 |
29 | ## Usage
30 |
31 | This package vends a CLI for executing a deployment script that results in a full deployment of Uniswap Protocol v3.
32 | Get the arguments for running the latest version of the script via `npx @uniswap/deploy-v3 --help`.
33 |
34 | As of `v1.0.3` the arguments are:
35 |
36 | ```text
37 | > npx @uniswap/deploy-v3 --help
38 | Usage: npx @uniswap/deploy-v3 [options]
39 |
40 | Options:
41 | -pk, --private-key Private key used to deploy all contracts
42 | -j, --json-rpc JSON RPC URL where the program should be deployed
43 | -w9, --weth9-address Address of the WETH9 contract on this chain
44 | -ncl, --native-currency-label Native currency label, e.g. ETH
45 | -o, --owner-address Contract address that will own the deployed artifacts after the script runs
46 | -s, --state Path to the JSON file containing the migrations state (optional) (default: "./state.json")
47 | -v2, --v2-core-factory-address The V2 core factory address used in the swap router (optional)
48 | -g, --gas-price The gas price to pay in GWEI for each transaction (optional)
49 | -c, --confirmations How many confirmations to wait for after each transaction (optional) (default: "2")
50 | -V, --version output the version number
51 | -h, --help display help for command
52 | ```
53 |
54 | The script runs a set of migrations, each migration deploying a contract or executing a transaction. Migration state is
55 | saved in a JSON file at the supplied path (by default `./state.json`).
56 |
57 | To use the script, you must fund an address, and pass the private key of that address to the script so that it can construct
58 | and broadcast the deployment transactions.
59 |
60 | The block explorer verification process (e.g. Etherscan) is specific to the network. For the existing deployments,
61 | we have used the `@nomiclabs/hardhat-etherscan` hardhat plugin in the individual repositories to verify the deployment addresses.
62 |
63 | Note that in between deployment steps, the script waits for confirmations. By default, this is set to `2`. If the network
64 | only mines blocks when the transactions is queued (e.g. a local testnet), you must set confirmations to `0`.
65 |
66 | ## Development
67 |
68 | To run unit tests, run `yarn test`.
69 |
70 | For testing the script, run `yarn start`.
71 |
72 | To publish the script, first create a version: `npm version `, then publish via `npm publish`.
73 | Don't forget to push your tagged commit!
74 |
75 | ## FAQs
76 |
77 | ### How much gas should I expect to use for full completion?
78 |
79 | We estimate 30M - 40M gas needed to run the full deploy script.
80 |
81 | ### When I run the script, it says "Contract was already deployed..."
82 |
83 | Delete `state.json` before a fresh deploy. `state.json` tracks which steps have already occurred. If there are any entries, the deploy script will attempt to pick up from the last step in `state.json`.
84 |
85 | ### Where can I see all the addresses where each contract is deployed?
86 |
87 | Check out `state.json`. It'll show you the final deployed addresses.
88 |
89 | ### How long will the script take?
90 |
91 | Depends on the confirmation times and gas parameter. The deploy script sends up to a total of 14 transactions.
92 |
93 | ### Where should I ask questions or report issues?
94 |
95 | You can file them in `issues` on this repo and we'll try our best to respond.
96 |
--------------------------------------------------------------------------------
/index.ts:
--------------------------------------------------------------------------------
1 | import { program } from 'commander'
2 | import { Wallet } from '@ethersproject/wallet'
3 | import { JsonRpcProvider, TransactionReceipt } from '@ethersproject/providers'
4 | import { AddressZero } from '@ethersproject/constants'
5 | import { getAddress } from '@ethersproject/address'
6 | import fs from 'fs'
7 | import deploy from './src/deploy'
8 | import { MigrationState } from './src/migrations'
9 | import { asciiStringToBytes32 } from './src/util/asciiStringToBytes32'
10 | import { version } from './package.json'
11 |
12 | program
13 | .requiredOption('-pk, --private-key ', 'Private key used to deploy all contracts')
14 | .requiredOption('-j, --json-rpc ', 'JSON RPC URL where the program should be deployed')
15 | .requiredOption('-w9, --weth9-address ', 'Address of the WETH9 contract on this chain')
16 | .requiredOption('-ncl, --native-currency-label ', 'Native currency label, e.g. ETH')
17 | .requiredOption(
18 | '-o, --owner-address ',
19 | 'Contract address that will own the deployed artifacts after the script runs'
20 | )
21 | .option('-s, --state ', 'Path to the JSON file containing the migrations state (optional)', './state.json')
22 | .option('-v2, --v2-core-factory-address ', 'The V2 core factory address used in the swap router (optional)')
23 | .option('-g, --gas-price ', 'The gas price to pay in GWEI for each transaction (optional)')
24 | .option('-c, --confirmations ', 'How many confirmations to wait for after each transaction (optional)', '2')
25 |
26 | program.name('npx @uniswap/deploy-v3').version(version).parse(process.argv)
27 |
28 | if (!/^0x[a-zA-Z0-9]{64}$/.test(program.privateKey)) {
29 | console.error('Invalid private key!')
30 | process.exit(1)
31 | }
32 |
33 | let url: URL
34 | try {
35 | url = new URL(program.jsonRpc)
36 | } catch (error) {
37 | console.error('Invalid JSON RPC URL', (error as Error).message)
38 | process.exit(1)
39 | }
40 |
41 | let gasPrice: number | undefined
42 | try {
43 | gasPrice = program.gasPrice ? parseInt(program.gasPrice) : undefined
44 | } catch (error) {
45 | console.error('Failed to parse gas price', (error as Error).message)
46 | process.exit(1)
47 | }
48 |
49 | let confirmations: number
50 | try {
51 | confirmations = parseInt(program.confirmations)
52 | } catch (error) {
53 | console.error('Failed to parse confirmations', (error as Error).message)
54 | process.exit(1)
55 | }
56 |
57 | let nativeCurrencyLabelBytes: string
58 | try {
59 | nativeCurrencyLabelBytes = asciiStringToBytes32(program.nativeCurrencyLabel)
60 | } catch (error) {
61 | console.error('Invalid native currency label', (error as Error).message)
62 | process.exit(1)
63 | }
64 |
65 | let weth9Address: string
66 | try {
67 | weth9Address = getAddress(program.weth9Address)
68 | } catch (error) {
69 | console.error('Invalid WETH9 address', (error as Error).message)
70 | process.exit(1)
71 | }
72 |
73 | let v2CoreFactoryAddress: string
74 | if (typeof program.v2CoreFactoryAddress === 'undefined') {
75 | v2CoreFactoryAddress = AddressZero
76 | } else {
77 | try {
78 | v2CoreFactoryAddress = getAddress(program.v2CoreFactoryAddress)
79 | } catch (error) {
80 | console.error('Invalid V2 factory address', (error as Error).message)
81 | process.exit(1)
82 | }
83 | }
84 |
85 | let ownerAddress: string
86 | try {
87 | ownerAddress = getAddress(program.ownerAddress)
88 | } catch (error) {
89 | console.error('Invalid owner address', (error as Error).message)
90 | process.exit(1)
91 | }
92 |
93 | const wallet = new Wallet(program.privateKey, new JsonRpcProvider({ url: url.href }))
94 |
95 | let state: MigrationState
96 | if (fs.existsSync(program.state)) {
97 | try {
98 | state = JSON.parse(fs.readFileSync(program.state, { encoding: 'utf8' }))
99 | } catch (error) {
100 | console.error('Failed to load and parse migration state file', (error as Error).message)
101 | process.exit(1)
102 | }
103 | } else {
104 | state = {}
105 | }
106 |
107 | let finalState: MigrationState
108 | const onStateChange = async (newState: MigrationState): Promise => {
109 | fs.writeFileSync(program.state, JSON.stringify(newState))
110 | finalState = newState
111 | }
112 |
113 | async function run() {
114 | let step = 1
115 | const results = []
116 | const generator = deploy({
117 | signer: wallet,
118 | gasPrice,
119 | nativeCurrencyLabelBytes,
120 | v2CoreFactoryAddress,
121 | ownerAddress,
122 | weth9Address,
123 | initialState: state,
124 | onStateChange,
125 | })
126 |
127 | for await (const result of generator) {
128 | console.log(`Step ${step++} complete`, result)
129 | results.push(result)
130 |
131 | // wait 15 minutes for any transactions sent in the step
132 | await Promise.all(
133 | result.map(
134 | (stepResult): Promise => {
135 | if (stepResult.hash) {
136 | return wallet.provider.waitForTransaction(stepResult.hash, confirmations, /* 15 minutes */ 1000 * 60 * 15)
137 | } else {
138 | return Promise.resolve(true)
139 | }
140 | }
141 | )
142 | )
143 | }
144 |
145 | return results
146 | }
147 |
148 | run()
149 | .then((results) => {
150 | console.log('Deployment succeeded')
151 | console.log(JSON.stringify(results))
152 | console.log('Final state')
153 | console.log(JSON.stringify(finalState))
154 | process.exit(0)
155 | })
156 | .catch((error) => {
157 | console.error('Deployment failed', error)
158 | console.log('Final state')
159 | console.log(JSON.stringify(finalState))
160 | process.exit(1)
161 | })
162 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@uniswap/deploy-v3",
3 | "version": "1.0.4",
4 | "description": "Deploy Uniswap V3 smart contracts",
5 | "bin": "dist/index.js",
6 | "publishConfig": {
7 | "access": "restricted"
8 | },
9 | "main": "dist/index.js",
10 | "scripts": {
11 | "test": "mocha",
12 | "build": "ncc build index.ts -o dist -m",
13 | "postbuild": "cat shebang.txt dist/index.js > dist/index.cmd.js && mv dist/index.cmd.js dist/index.js",
14 | "prestart": "yarn build",
15 | "start": "node dist/index.js",
16 | "prepublishOnly": "yarn build"
17 | },
18 | "files": [
19 | "dist/"
20 | ],
21 | "engines": {
22 | "node": ">=12.18.3"
23 | },
24 | "repository": {
25 | "type": "git",
26 | "url": "git+https://github.com/Uniswap/deploy-v3.git"
27 | },
28 | "author": {
29 | "email": "contact@uniswap.org",
30 | "name": "Uniswap Labs",
31 | "url": "https://uniswap.org"
32 | },
33 | "license": "GPL-3.0-or-later",
34 | "bugs": {
35 | "url": "https://github.com/Uniswap/deploy-v3/issues"
36 | },
37 | "homepage": "https://uniswap.org",
38 | "devDependencies": {
39 | "@ethersproject/abstract-signer": "^5.5.0",
40 | "@ethersproject/address": "^5.5.0",
41 | "@ethersproject/bignumber": "^5.5.0",
42 | "@ethersproject/constants": "^5.5.0",
43 | "@ethersproject/contracts": "^5.5.0",
44 | "@ethersproject/providers": "^5.5.1",
45 | "@ethersproject/wallet": "^5.5.0",
46 | "@openzeppelin/contracts": "3.4.1-solc-0.7-2",
47 | "@types/chai": "^4.2.12",
48 | "@types/mocha": "^8.0.3",
49 | "@types/node": "^14.6.3",
50 | "@uniswap/sdk-core": "^1.0.8",
51 | "@uniswap/swap-router-contracts": "1.1.0",
52 | "@uniswap/v3-core": "1.0.0",
53 | "@uniswap/v3-periphery": "1.1.1",
54 | "@uniswap/v3-staker": "1.0.2",
55 | "@vercel/ncc": "^0.33.1",
56 | "chai": "^4.2.0",
57 | "commander": "^6.1.0",
58 | "ganache-cli": "^6.10.1",
59 | "immer": "^7.0.8",
60 | "mocha": "^8.1.3",
61 | "prettier": "^2.1.1",
62 | "ts-node": "^9.0.0",
63 | "typescript": "^4.0.2",
64 | "v3-periphery-1_3_0": "npm:@uniswap/v3-periphery@1.3.0"
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/shebang.txt:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
--------------------------------------------------------------------------------
/src/deploy.ts:
--------------------------------------------------------------------------------
1 | import { Signer } from '@ethersproject/abstract-signer'
2 | import { BigNumber } from '@ethersproject/bignumber'
3 | import { migrate } from './migrate'
4 | import { MigrationState, MigrationStep, StepOutput } from './migrations'
5 | import { ADD_1BP_FEE_TIER } from './steps/add-1bp-fee-tier'
6 | import { DEPLOY_MULTICALL2 } from './steps/deploy-multicall2'
7 | import { DEPLOY_NFT_DESCRIPTOR_LIBRARY_V1_3_0 } from './steps/deploy-nft-descriptor-library-v1_3_0'
8 | import { DEPLOY_NFT_POSITION_DESCRIPTOR_V1_3_0 } from './steps/deploy-nft-position-descriptor-v1_3_0'
9 | import { DEPLOY_NONFUNGIBLE_POSITION_MANAGER } from './steps/deploy-nonfungible-position-manager'
10 | import { DEPLOY_PROXY_ADMIN } from './steps/deploy-proxy-admin'
11 | import { DEPLOY_QUOTER_V2 } from './steps/deploy-quoter-v2'
12 | import { DEPLOY_TICK_LENS } from './steps/deploy-tick-lens'
13 | import { DEPLOY_TRANSPARENT_PROXY_DESCRIPTOR } from './steps/deploy-transparent-proxy-descriptor'
14 | import { DEPLOY_V3_CORE_FACTORY } from './steps/deploy-v3-core-factory'
15 | import { DEPLOY_V3_MIGRATOR } from './steps/deploy-v3-migrator'
16 | import { DEPLOY_V3_STAKER } from './steps/deploy-v3-staker'
17 | import { DEPLOY_V3_SWAP_ROUTER_02 } from './steps/deploy-v3-swap-router-02'
18 | import { TRANSFER_PROXY_ADMIN } from './steps/transfer-proxy-admin'
19 | import { TRANSFER_V3_CORE_FACTORY_OWNER } from './steps/transfer-v3-core-factory-owner'
20 |
21 | const MIGRATION_STEPS: MigrationStep[] = [
22 | // must come first, for address calculations
23 | DEPLOY_V3_CORE_FACTORY,
24 | ADD_1BP_FEE_TIER,
25 | DEPLOY_MULTICALL2,
26 | DEPLOY_PROXY_ADMIN,
27 | DEPLOY_TICK_LENS,
28 | DEPLOY_NFT_DESCRIPTOR_LIBRARY_V1_3_0,
29 | DEPLOY_NFT_POSITION_DESCRIPTOR_V1_3_0,
30 | DEPLOY_TRANSPARENT_PROXY_DESCRIPTOR,
31 | DEPLOY_NONFUNGIBLE_POSITION_MANAGER,
32 | DEPLOY_V3_MIGRATOR,
33 | TRANSFER_V3_CORE_FACTORY_OWNER,
34 | DEPLOY_V3_STAKER,
35 | DEPLOY_QUOTER_V2,
36 | DEPLOY_V3_SWAP_ROUTER_02,
37 | TRANSFER_PROXY_ADMIN,
38 | ]
39 |
40 | export default function deploy({
41 | signer,
42 | gasPrice: numberGasPrice,
43 | initialState,
44 | onStateChange,
45 | weth9Address,
46 | nativeCurrencyLabelBytes,
47 | v2CoreFactoryAddress,
48 | ownerAddress,
49 | }: {
50 | signer: Signer
51 | gasPrice: number | undefined
52 | weth9Address: string
53 | nativeCurrencyLabelBytes: string
54 | v2CoreFactoryAddress: string
55 | ownerAddress: string
56 | initialState: MigrationState
57 | onStateChange: (newState: MigrationState) => Promise
58 | }): AsyncGenerator {
59 | const gasPrice =
60 | typeof numberGasPrice === 'number' ? BigNumber.from(numberGasPrice).mul(BigNumber.from(10).pow(9)) : undefined // convert to wei
61 |
62 | return migrate({
63 | steps: MIGRATION_STEPS,
64 | config: { gasPrice, signer, weth9Address, nativeCurrencyLabelBytes, v2CoreFactoryAddress, ownerAddress },
65 | initialState,
66 | onStateChange,
67 | })
68 | }
69 |
--------------------------------------------------------------------------------
/src/migrate.ts:
--------------------------------------------------------------------------------
1 | import { createDraft, current, Draft } from 'immer'
2 |
3 | export type GenericMigrationStep = (state: Draft, config: C) => Promise
4 |
5 | export async function* migrate({
6 | onStateChange,
7 | initialState,
8 | config,
9 | steps,
10 | }: {
11 | initialState: S
12 | onStateChange: (newState: S) => Promise
13 | config: C
14 | steps: GenericMigrationStep[]
15 | }): AsyncGenerator {
16 | const mutableState: Draft = createDraft(initialState)
17 |
18 | for (let i = 0; i < steps.length; i++) {
19 | const output = await steps[i](mutableState, config)
20 | const nextState: S = current(mutableState) as S // have to cast because immer doesn't have proper typings
21 | await onStateChange(nextState)
22 | yield output
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/migrations.ts:
--------------------------------------------------------------------------------
1 | import { Signer } from '@ethersproject/abstract-signer'
2 | import { BigNumber } from '@ethersproject/bignumber'
3 | import { GenericMigrationStep } from './migrate'
4 |
5 | export interface MigrationState {
6 | readonly v3CoreFactoryAddress?: string
7 | readonly swapRouter02?: string
8 | readonly nftDescriptorLibraryAddressV1_3_0?: string
9 | readonly nonfungibleTokenPositionDescriptorAddressV1_3_0?: string
10 | readonly descriptorProxyAddress?: string
11 | readonly multicall2Address?: string
12 | readonly proxyAdminAddress?: string
13 | readonly quoterV2Address?: string
14 | readonly tickLensAddress?: string
15 | readonly v3MigratorAddress?: string
16 | readonly v3StakerAddress?: string
17 | readonly nonfungibleTokenPositionManagerAddress?: string
18 | }
19 |
20 | export type StepOutput = { message: string; hash?: string; address?: string }
21 |
22 | export type MigrationConfig = {
23 | signer: Signer
24 | gasPrice: BigNumber | undefined
25 | weth9Address: string
26 | nativeCurrencyLabelBytes: string
27 | v2CoreFactoryAddress: string
28 | ownerAddress: string
29 | }
30 |
31 | export type MigrationStep = GenericMigrationStep
32 |
--------------------------------------------------------------------------------
/src/steps/add-1bp-fee-tier.ts:
--------------------------------------------------------------------------------
1 | import UniswapV3Factory from '@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json'
2 | import { Contract } from '@ethersproject/contracts'
3 | import { MigrationStep } from '../migrations'
4 |
5 | const ONE_BP_FEE = 100
6 | const ONE_BP_TICK_SPACING = 1
7 |
8 | export const ADD_1BP_FEE_TIER: MigrationStep = async (state, { signer, gasPrice }) => {
9 | if (state.v3CoreFactoryAddress === undefined) {
10 | throw new Error('Missing UniswapV3Factory')
11 | }
12 |
13 | const v3CoreFactory = new Contract(state.v3CoreFactoryAddress, UniswapV3Factory.abi, signer)
14 |
15 | const owner = await v3CoreFactory.owner()
16 | if (owner !== (await signer.getAddress())) {
17 | throw new Error('UniswapV3Factory.owner is not signer')
18 | }
19 | const tx = await v3CoreFactory.enableFeeAmount(ONE_BP_FEE, ONE_BP_TICK_SPACING, { gasPrice })
20 |
21 | return [
22 | {
23 | message: `UniswapV3Factory added a new fee tier ${ONE_BP_FEE / 100} bps with tick spacing ${ONE_BP_TICK_SPACING}`,
24 | hash: tx.hash,
25 | },
26 | ]
27 | }
28 |
--------------------------------------------------------------------------------
/src/steps/deploy-multicall2.ts:
--------------------------------------------------------------------------------
1 | import UniswapInterfaceMulticall from '@uniswap/v3-periphery/artifacts/contracts/lens/UniswapInterfaceMulticall.sol/UniswapInterfaceMulticall.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_MULTICALL2 = createDeployContractStep({
5 | key: 'multicall2Address',
6 | artifact: UniswapInterfaceMulticall,
7 | })
8 |
--------------------------------------------------------------------------------
/src/steps/deploy-nft-descriptor-library-v1_3_0.ts:
--------------------------------------------------------------------------------
1 | import NFTDescriptor from 'v3-periphery-1_3_0/artifacts/contracts/libraries/NFTDescriptor.sol/NFTDescriptor.json'
2 | import createDeployLibraryStep from './meta/createDeployLibraryStep'
3 |
4 | export const DEPLOY_NFT_DESCRIPTOR_LIBRARY_V1_3_0 = createDeployLibraryStep({
5 | key: 'nftDescriptorLibraryAddressV1_3_0',
6 | artifact: NFTDescriptor,
7 | })
8 |
--------------------------------------------------------------------------------
/src/steps/deploy-nft-position-descriptor-v1_3_0.ts:
--------------------------------------------------------------------------------
1 | import NonfungibleTokenPositionDescriptor from 'v3-periphery-1_3_0/artifacts/contracts/NonfungibleTokenPositionDescriptor.sol/NonfungibleTokenPositionDescriptor.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_NFT_POSITION_DESCRIPTOR_V1_3_0 = createDeployContractStep({
5 | key: 'nonfungibleTokenPositionDescriptorAddressV1_3_0',
6 | artifact: NonfungibleTokenPositionDescriptor,
7 | computeLibraries(state) {
8 | if (state.nftDescriptorLibraryAddressV1_3_0 === undefined) {
9 | throw new Error('NFTDescriptor library missing')
10 | }
11 | return {
12 | NFTDescriptor: state.nftDescriptorLibraryAddressV1_3_0,
13 | }
14 | },
15 | computeArguments(_, { weth9Address, nativeCurrencyLabelBytes }) {
16 | return [weth9Address, nativeCurrencyLabelBytes]
17 | },
18 | })
19 |
--------------------------------------------------------------------------------
/src/steps/deploy-nonfungible-position-manager.ts:
--------------------------------------------------------------------------------
1 | import NonfungiblePositionManager from '@uniswap/v3-periphery/artifacts/contracts/NonfungiblePositionManager.sol/NonfungiblePositionManager.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_NONFUNGIBLE_POSITION_MANAGER = createDeployContractStep({
5 | key: 'nonfungibleTokenPositionManagerAddress',
6 | artifact: NonfungiblePositionManager,
7 | computeArguments(state, config) {
8 | if (state.v3CoreFactoryAddress === undefined) {
9 | throw new Error('Missing V3 Core Factory')
10 | }
11 | if (state.descriptorProxyAddress === undefined) {
12 | throw new Error('Missing NonfungibleTokenDescriptorProxyAddress')
13 | }
14 |
15 | return [state.v3CoreFactoryAddress, config.weth9Address, state.descriptorProxyAddress]
16 | },
17 | })
18 |
--------------------------------------------------------------------------------
/src/steps/deploy-proxy-admin.ts:
--------------------------------------------------------------------------------
1 | import ProxyAdmin from '@openzeppelin/contracts/build/contracts/ProxyAdmin.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_PROXY_ADMIN = createDeployContractStep({
5 | key: 'proxyAdminAddress',
6 | artifact: ProxyAdmin,
7 | })
8 |
--------------------------------------------------------------------------------
/src/steps/deploy-quoter-v2.ts:
--------------------------------------------------------------------------------
1 | import QuoterV2 from '@uniswap/swap-router-contracts/artifacts/contracts/lens/QuoterV2.sol/QuoterV2.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_QUOTER_V2 = createDeployContractStep({
5 | key: 'quoterV2Address',
6 | artifact: QuoterV2,
7 | computeArguments(state, config) {
8 | if (state.v3CoreFactoryAddress === undefined) {
9 | throw new Error('Missing V3 Core Factory')
10 | }
11 | return [state.v3CoreFactoryAddress, config.weth9Address]
12 | },
13 | })
14 |
--------------------------------------------------------------------------------
/src/steps/deploy-tick-lens.ts:
--------------------------------------------------------------------------------
1 | import TickLens from '@uniswap/v3-periphery/artifacts/contracts/lens/TickLens.sol/TickLens.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_TICK_LENS = createDeployContractStep({
5 | key: 'tickLensAddress',
6 | artifact: TickLens,
7 | })
8 |
--------------------------------------------------------------------------------
/src/steps/deploy-transparent-proxy-descriptor.ts:
--------------------------------------------------------------------------------
1 | import TransparentUpgradeableProxy from '@openzeppelin/contracts/build/contracts/TransparentUpgradeableProxy.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_TRANSPARENT_PROXY_DESCRIPTOR = createDeployContractStep({
5 | key: 'descriptorProxyAddress',
6 | artifact: TransparentUpgradeableProxy,
7 | computeArguments(state) {
8 | if (state.nonfungibleTokenPositionDescriptorAddressV1_3_0 === undefined) {
9 | throw new Error('Missing NonfungibleTokenPositionDescriptor')
10 | }
11 | if (state.proxyAdminAddress === undefined) {
12 | throw new Error('Missing ProxyAdmin')
13 | }
14 | return [state.nonfungibleTokenPositionDescriptorAddressV1_3_0, state.proxyAdminAddress, '0x']
15 | },
16 | })
17 |
--------------------------------------------------------------------------------
/src/steps/deploy-v3-core-factory.ts:
--------------------------------------------------------------------------------
1 | import UniswapV3Factory from '@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_V3_CORE_FACTORY = createDeployContractStep({
5 | key: 'v3CoreFactoryAddress',
6 | artifact: UniswapV3Factory,
7 | })
8 |
--------------------------------------------------------------------------------
/src/steps/deploy-v3-migrator.ts:
--------------------------------------------------------------------------------
1 | import V3Migrator from '@uniswap/v3-periphery/artifacts/contracts/V3Migrator.sol/V3Migrator.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_V3_MIGRATOR = createDeployContractStep({
5 | key: 'v3MigratorAddress',
6 | artifact: V3Migrator,
7 | computeArguments(state, config) {
8 | if (state.v3CoreFactoryAddress === undefined) {
9 | throw new Error('Missing V3 Core Factory')
10 | }
11 | if (state.nonfungibleTokenPositionManagerAddress === undefined) {
12 | throw new Error('Missing NonfungiblePositionManager')
13 | }
14 | return [state.v3CoreFactoryAddress, config.weth9Address, state.nonfungibleTokenPositionManagerAddress]
15 | },
16 | })
17 |
--------------------------------------------------------------------------------
/src/steps/deploy-v3-staker.ts:
--------------------------------------------------------------------------------
1 | import UniswapV3Staker from '@uniswap/v3-staker/artifacts/contracts/UniswapV3Staker.sol/UniswapV3Staker.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | const ONE_MINUTE_SECONDS = 60
5 | const ONE_HOUR_SECONDS = ONE_MINUTE_SECONDS * 60
6 | const ONE_DAY_SECONDS = ONE_HOUR_SECONDS * 24
7 | const ONE_MONTH_SECONDS = ONE_DAY_SECONDS * 30
8 | const ONE_YEAR_SECONDS = ONE_DAY_SECONDS * 365
9 |
10 | // 2592000
11 | const MAX_INCENTIVE_START_LEAD_TIME = ONE_MONTH_SECONDS
12 | // 1892160000
13 | const MAX_INCENTIVE_DURATION = ONE_YEAR_SECONDS * 2
14 |
15 | export const DEPLOY_V3_STAKER = createDeployContractStep({
16 | key: 'v3StakerAddress',
17 | artifact: UniswapV3Staker,
18 | computeArguments(state) {
19 | if (state.v3CoreFactoryAddress === undefined) {
20 | throw new Error('Missing V3 Core Factory')
21 | }
22 | if (state.nonfungibleTokenPositionManagerAddress === undefined) {
23 | throw new Error('Missing NFT contract')
24 | }
25 | return [
26 | state.v3CoreFactoryAddress,
27 | state.nonfungibleTokenPositionManagerAddress,
28 | MAX_INCENTIVE_START_LEAD_TIME,
29 | MAX_INCENTIVE_DURATION,
30 | ]
31 | },
32 | })
33 |
--------------------------------------------------------------------------------
/src/steps/deploy-v3-swap-router-02.ts:
--------------------------------------------------------------------------------
1 | import SwapRouter02 from '@uniswap/swap-router-contracts/artifacts/contracts/SwapRouter02.sol/SwapRouter02.json'
2 | import createDeployContractStep from './meta/createDeployContractStep'
3 |
4 | export const DEPLOY_V3_SWAP_ROUTER_02 = createDeployContractStep({
5 | key: 'swapRouter02',
6 | artifact: SwapRouter02,
7 | computeArguments(state, config) {
8 | if (state.v3CoreFactoryAddress === undefined) {
9 | throw new Error('Missing V3 Core Factory')
10 | }
11 | if (state.nonfungibleTokenPositionManagerAddress === undefined) {
12 | throw new Error('Missing NFT manager')
13 | }
14 |
15 | return [
16 | config.v2CoreFactoryAddress,
17 | state.v3CoreFactoryAddress,
18 | state.nonfungibleTokenPositionManagerAddress,
19 | config.weth9Address,
20 | ]
21 | },
22 | })
23 |
--------------------------------------------------------------------------------
/src/steps/meta/createDeployContractStep.ts:
--------------------------------------------------------------------------------
1 | import { Contract, ContractInterface, ContractFactory } from '@ethersproject/contracts'
2 | import { MigrationConfig, MigrationState, MigrationStep } from '../../migrations'
3 | import linkLibraries from '../../util/linkLibraries'
4 |
5 | type ConstructorArgs = (string | number | string[] | number[])[]
6 |
7 | export default function createDeployContractStep({
8 | key,
9 | artifact: { contractName, abi, bytecode, linkReferences },
10 | computeLibraries,
11 | computeArguments,
12 | }: {
13 | key: keyof MigrationState
14 | artifact: {
15 | contractName: string
16 | abi: ContractInterface
17 | bytecode: string
18 | linkReferences?: { [fileName: string]: { [contractName: string]: { length: number; start: number }[] } }
19 | }
20 | computeLibraries?: (state: Readonly, config: MigrationConfig) => { [libraryName: string]: string }
21 | computeArguments?: (state: Readonly, config: MigrationConfig) => ConstructorArgs
22 | }): MigrationStep {
23 | if (linkReferences && Object.keys(linkReferences).length > 0 && !computeLibraries) {
24 | throw new Error('Missing function to compute library addresses')
25 | } else if (computeLibraries && (!linkReferences || Object.keys(linkReferences).length === 0)) {
26 | throw new Error('Compute libraries passed but no link references')
27 | }
28 |
29 | return async (state, config) => {
30 | if (state[key] === undefined) {
31 | const constructorArgs: ConstructorArgs = computeArguments ? computeArguments(state, config) : []
32 |
33 | const factory = new ContractFactory(
34 | abi,
35 | linkReferences && computeLibraries
36 | ? linkLibraries({ bytecode, linkReferences }, computeLibraries(state, config))
37 | : bytecode,
38 | config.signer
39 | )
40 |
41 | let contract: Contract
42 | try {
43 | contract = await factory.deploy(...constructorArgs, { gasPrice: config.gasPrice })
44 | } catch (error) {
45 | console.error(`Failed to deploy ${contractName}`)
46 | throw error
47 | }
48 |
49 | state[key] = contract.address
50 |
51 | return [
52 | {
53 | message: `Contract ${contractName} deployed`,
54 | address: contract.address,
55 | hash: contract.deployTransaction.hash,
56 | },
57 | ]
58 | } else {
59 | return [{ message: `Contract ${contractName} was already deployed`, address: state[key] }]
60 | }
61 | }
62 | }
63 |
--------------------------------------------------------------------------------
/src/steps/meta/createDeployLibraryStep.ts:
--------------------------------------------------------------------------------
1 | import { ContractInterface, ContractFactory } from '@ethersproject/contracts'
2 | import { MigrationState, MigrationStep } from '../../migrations'
3 |
4 | export default function createDeployLibraryStep({
5 | key,
6 | artifact: { contractName, abi, bytecode },
7 | }: {
8 | key: keyof MigrationState
9 | artifact: { contractName: string; abi: ContractInterface; bytecode: string }
10 | }): MigrationStep {
11 | return async (state, { signer, gasPrice }) => {
12 | if (state[key] === undefined) {
13 | const factory = new ContractFactory(abi, bytecode, signer)
14 |
15 | const library = await factory.deploy({ gasPrice })
16 | state[key] = library.address
17 |
18 | return [
19 | {
20 | message: `Library ${contractName} deployed`,
21 | address: library.address,
22 | hash: library.deployTransaction.hash,
23 | },
24 | ]
25 | } else {
26 | return [{ message: `Library ${contractName} was already deployed`, address: state[key] }]
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/src/steps/transfer-proxy-admin.ts:
--------------------------------------------------------------------------------
1 | import ProxyAdmin from '@openzeppelin/contracts/build/contracts/ProxyAdmin.json'
2 | import { Contract } from '@ethersproject/contracts'
3 | import { MigrationStep } from '../migrations'
4 |
5 | export const TRANSFER_PROXY_ADMIN: MigrationStep = async (state, { signer, gasPrice, ownerAddress }) => {
6 | if (state.proxyAdminAddress === undefined) {
7 | throw new Error('Missing ProxyAdmin')
8 | }
9 |
10 | const proxyAdmin = new Contract(state.proxyAdminAddress, ProxyAdmin.abi, signer)
11 |
12 | const owner = await proxyAdmin.owner()
13 | if (owner === ownerAddress)
14 | return [
15 | {
16 | message: `ProxyAdmin owned by ${ownerAddress} already`,
17 | },
18 | ]
19 |
20 | if (owner !== (await signer.getAddress())) {
21 | throw new Error('ProxyAdmin.owner is not signer')
22 | }
23 |
24 | const tx = await proxyAdmin.transferOwnership(ownerAddress, { gasPrice })
25 |
26 | return [
27 | {
28 | message: `ProxyAdmin ownership set to ${ownerAddress}`,
29 | hash: tx.hash,
30 | },
31 | ]
32 | }
33 |
--------------------------------------------------------------------------------
/src/steps/transfer-v3-core-factory-owner.ts:
--------------------------------------------------------------------------------
1 | import UniswapV3Factory from '@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json'
2 | import { Contract } from '@ethersproject/contracts'
3 | import { MigrationStep } from '../migrations'
4 |
5 | export const TRANSFER_V3_CORE_FACTORY_OWNER: MigrationStep = async (state, { signer, gasPrice, ownerAddress }) => {
6 | if (state.v3CoreFactoryAddress === undefined) {
7 | throw new Error('Missing UniswapV3Factory')
8 | }
9 |
10 | const v3CoreFactory = new Contract(state.v3CoreFactoryAddress, UniswapV3Factory.abi, signer)
11 |
12 | const owner = await v3CoreFactory.owner()
13 | if (owner === ownerAddress)
14 | return [
15 | {
16 | message: `UniswapV3Factory owned by ${ownerAddress} already`,
17 | },
18 | ]
19 |
20 | if (owner !== (await signer.getAddress())) {
21 | throw new Error('UniswapV3Factory.owner is not signer')
22 | }
23 |
24 | const tx = await v3CoreFactory.setOwner(ownerAddress, { gasPrice })
25 |
26 | return [
27 | {
28 | message: `UniswapV3Factory ownership set to ${ownerAddress}`,
29 | hash: tx.hash,
30 | },
31 | ]
32 | }
33 |
--------------------------------------------------------------------------------
/src/util/asciiStringToBytes32.ts:
--------------------------------------------------------------------------------
1 | export function isAscii(str: string): boolean {
2 | return /^[\x00-\x7F]*$/.test(str)
3 | }
4 |
5 | export function asciiStringToBytes32(str: string): string {
6 | if (str.length > 32 || !isAscii(str)) {
7 | throw new Error('Invalid label, must be less than 32 characters')
8 | }
9 |
10 | return '0x' + Buffer.from(str, 'ascii').toString('hex').padEnd(64, '0')
11 | }
12 |
--------------------------------------------------------------------------------
/src/util/linkLibraries.ts:
--------------------------------------------------------------------------------
1 | import { getAddress } from '@ethersproject/address'
2 |
3 | export default function linkLibraries(
4 | {
5 | bytecode,
6 | linkReferences,
7 | }: {
8 | bytecode: string
9 | linkReferences: { [fileName: string]: { [contractName: string]: { length: number; start: number }[] } }
10 | },
11 | libraries: { [libraryName: string]: string }
12 | ): string {
13 | Object.keys(linkReferences).forEach((fileName) => {
14 | Object.keys(linkReferences[fileName]).forEach((contractName) => {
15 | if (!libraries.hasOwnProperty(contractName)) {
16 | throw new Error(`Missing link library name ${contractName}`)
17 | }
18 | const address = getAddress(libraries[contractName]).toLowerCase().slice(2)
19 | linkReferences[fileName][contractName].forEach(({ start: byteStart, length: byteLength }) => {
20 | const start = 2 + byteStart * 2
21 | const length = byteLength * 2
22 | bytecode = bytecode
23 | .slice(0, start)
24 | .concat(address)
25 | .concat(bytecode.slice(start + length, bytecode.length))
26 | })
27 | })
28 | })
29 | return bytecode
30 | }
31 |
--------------------------------------------------------------------------------
/test/asciiStringToBytes32.spec.ts:
--------------------------------------------------------------------------------
1 | import { expect } from 'chai'
2 | import { asciiStringToBytes32 } from '../src/util/asciiStringToBytes32'
3 |
4 | describe('#asciiStringToBytes32', () => {
5 | it('works for ETH', async () => {
6 | expect(asciiStringToBytes32('ETH')).to.eq('0x4554480000000000000000000000000000000000000000000000000000000000')
7 | })
8 | it('works for MATIC', async () => {
9 | expect(asciiStringToBytes32('MATIC')).to.eq('0x4d41544943000000000000000000000000000000000000000000000000000000')
10 | })
11 | it('throws for invalid string', async () => {
12 | expect(() => asciiStringToBytes32('🤌')).to.throw('Invalid label, must be less than 32 characters')
13 | })
14 | it('throws for string too long', async () => {
15 | expect(() => asciiStringToBytes32(''.padEnd(33, '0'))).to.throw('Invalid label, must be less than 32 characters')
16 | })
17 | })
18 |
--------------------------------------------------------------------------------
/test/deploy-v3-core-factory.spec.ts:
--------------------------------------------------------------------------------
1 | import { BigNumber } from '@ethersproject/bignumber'
2 | import { Contract } from '@ethersproject/contracts'
3 | import { JsonRpcSigner, Web3Provider } from '@ethersproject/providers'
4 |
5 | import UniswapV3Factory from '@uniswap/v3-core/artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json'
6 | import { expect } from 'chai'
7 | import { DEPLOY_V3_CORE_FACTORY } from '../src/steps/deploy-v3-core-factory'
8 | import { asciiStringToBytes32 } from '../src/util/asciiStringToBytes32'
9 |
10 | const DUMMY_ADDRESS = '0x9999999999999999999999999999999999999999'
11 |
12 | const ganache = require('ganache-cli')
13 |
14 | describe('deploy-v3-core-factory', () => {
15 | let provider: Web3Provider
16 | let signer: JsonRpcSigner
17 |
18 | before('create provider', () => {
19 | provider = new Web3Provider(ganache.provider())
20 | signer = provider.getSigner()
21 | })
22 |
23 | function singleElem(v: T[]): T {
24 | return v[0]
25 | }
26 |
27 | describe('DEPLOY_V3_CORE_FACTORY', () => {
28 | it('deploys the v3 core factory contract', async () => {
29 | const result = singleElem(
30 | await DEPLOY_V3_CORE_FACTORY(
31 | {},
32 | {
33 | signer,
34 | gasPrice: BigNumber.from(1),
35 | ownerAddress: DUMMY_ADDRESS,
36 | v2CoreFactoryAddress: DUMMY_ADDRESS,
37 | weth9Address: DUMMY_ADDRESS,
38 | nativeCurrencyLabelBytes: asciiStringToBytes32('ETH'),
39 | }
40 | )
41 | )
42 | expect(result.message).to.eq('Contract UniswapV3Factory deployed')
43 | })
44 |
45 | it('does not deploy if already deployed', async () => {
46 | const result = singleElem(
47 | await DEPLOY_V3_CORE_FACTORY(
48 | { v3CoreFactoryAddress: DUMMY_ADDRESS },
49 | {
50 | signer,
51 | gasPrice: BigNumber.from(1),
52 | ownerAddress: DUMMY_ADDRESS,
53 | v2CoreFactoryAddress: DUMMY_ADDRESS,
54 | weth9Address: DUMMY_ADDRESS,
55 | nativeCurrencyLabelBytes: asciiStringToBytes32('ETH'),
56 | }
57 | )
58 | )
59 | expect(result.message).to.eq('Contract UniswapV3Factory was already deployed')
60 | expect(result.address).to.eq(DUMMY_ADDRESS)
61 | })
62 |
63 | describe('test contract functions', () => {
64 | let v3CoreFactory: Contract
65 | beforeEach(async () => {
66 | const result = singleElem(
67 | await DEPLOY_V3_CORE_FACTORY(
68 | {},
69 | {
70 | signer,
71 | gasPrice: BigNumber.from(1),
72 | ownerAddress: DUMMY_ADDRESS,
73 | v2CoreFactoryAddress: DUMMY_ADDRESS,
74 | weth9Address: DUMMY_ADDRESS,
75 | nativeCurrencyLabelBytes: asciiStringToBytes32('ETH'),
76 | }
77 | )
78 | )
79 | v3CoreFactory = new Contract(result.address!, UniswapV3Factory.abi, provider)
80 | })
81 |
82 | it('points to signer address', async () => {
83 | expect(await v3CoreFactory.owner()).to.eq(await signer.getAddress())
84 | })
85 | })
86 | })
87 | })
88 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | /* Visit https://aka.ms/tsconfig.json to read more about this file */
4 |
5 | /* Basic Options */
6 | // "incremental": true, /* Enable incremental compilation */
7 | "target": "es5",
8 | /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
9 | "module": "commonjs",
10 | /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
11 | // "lib": [], /* Specify library files to be included in the compilation. */
12 | // "allowJs": true, /* Allow javascript files to be compiled. */
13 | // "checkJs": true, /* Report errors in .js files. */
14 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
15 | // "declaration": true, /* Generates corresponding '.d.ts' file. */
16 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
17 | // "sourceMap": true, /* Generates corresponding '.map' file. */
18 | // "outFile": "./", /* Concatenate and emit output to single file. */
19 | // "outDir": "./", /* Redirect output structure to the directory. */
20 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
21 | // "composite": true, /* Enable project compilation */
22 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
23 | // "removeComments": true, /* Do not emit comments to output. */
24 | // "noEmit": true, /* Do not emit outputs. */
25 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */
26 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
27 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
28 |
29 | /* Strict Type-Checking Options */
30 | "strict": true,
31 | /* Enable all strict type-checking options. */
32 | "noImplicitAny": true,
33 | /* Raise error on expressions and declarations with an implied 'any' type. */
34 | "strictNullChecks": true,
35 | /* Enable strict null checks. */
36 | "strictFunctionTypes": true,
37 | /* Enable strict checking of function types. */
38 | "strictBindCallApply": true,
39 | /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
40 | "strictPropertyInitialization": true,
41 | /* Enable strict checking of property initialization in classes. */
42 | "noImplicitThis": true,
43 | /* Raise error on 'this' expressions with an implied 'any' type. */
44 | "alwaysStrict": true,
45 | /* Parse in strict mode and emit "use strict" for each source file. */
46 |
47 | /* Additional Checks */
48 | "noUnusedLocals": false,
49 | /* Report errors on unused locals. */
50 | "noUnusedParameters": true,
51 | /* Report errors on unused parameters. */
52 | "noImplicitReturns": true,
53 | /* Report error when not all code paths in function return a value. */
54 | "noFallthroughCasesInSwitch": true,
55 | /* Report errors for fallthrough cases in switch statement. */
56 |
57 | /* Module Resolution Options */
58 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
59 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
60 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
61 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
62 | // "typeRoots": [], /* List of folders to include type definitions from. */
63 | "types": ["node", "mocha"] /* Type declaration files to be included in compilation. */,
64 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
65 | "esModuleInterop": true,
66 | /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
67 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
68 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
69 | "resolveJsonModule": true,
70 |
71 | /* Source Map Options */
72 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
73 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
74 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
75 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
76 |
77 | /* Experimental Options */
78 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
79 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
80 |
81 | /* Advanced Options */
82 | "skipLibCheck": true,
83 | /* Skip type checking of declaration files. */
84 | "forceConsistentCasingInFileNames": true
85 | /* Disallow inconsistently-cased references to the same file. */
86 | }
87 | }
88 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@ethersproject/abi@^5.5.0":
6 | version "5.5.0"
7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.5.0.tgz#fb52820e22e50b854ff15ce1647cc508d6660613"
8 | integrity sha512-loW7I4AohP5KycATvc0MgujU6JyCHPqHdeoo9z3Nr9xEiNioxa65ccdm1+fsoJhkuhdRtfcL8cfyGamz2AxZ5w==
9 | dependencies:
10 | "@ethersproject/address" "^5.5.0"
11 | "@ethersproject/bignumber" "^5.5.0"
12 | "@ethersproject/bytes" "^5.5.0"
13 | "@ethersproject/constants" "^5.5.0"
14 | "@ethersproject/hash" "^5.5.0"
15 | "@ethersproject/keccak256" "^5.5.0"
16 | "@ethersproject/logger" "^5.5.0"
17 | "@ethersproject/properties" "^5.5.0"
18 | "@ethersproject/strings" "^5.5.0"
19 |
20 | "@ethersproject/abstract-provider@^5.5.0":
21 | version "5.5.1"
22 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.5.1.tgz#2f1f6e8a3ab7d378d8ad0b5718460f85649710c5"
23 | integrity sha512-m+MA/ful6eKbxpr99xUYeRvLkfnlqzrF8SZ46d/xFB1A7ZVknYc/sXJG0RcufF52Qn2jeFj1hhcoQ7IXjNKUqg==
24 | dependencies:
25 | "@ethersproject/bignumber" "^5.5.0"
26 | "@ethersproject/bytes" "^5.5.0"
27 | "@ethersproject/logger" "^5.5.0"
28 | "@ethersproject/networks" "^5.5.0"
29 | "@ethersproject/properties" "^5.5.0"
30 | "@ethersproject/transactions" "^5.5.0"
31 | "@ethersproject/web" "^5.5.0"
32 |
33 | "@ethersproject/abstract-signer@^5.5.0":
34 | version "5.5.0"
35 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.5.0.tgz#590ff6693370c60ae376bf1c7ada59eb2a8dd08d"
36 | integrity sha512-lj//7r250MXVLKI7sVarXAbZXbv9P50lgmJQGr2/is82EwEb8r7HrxsmMqAjTsztMYy7ohrIhGMIml+Gx4D3mA==
37 | dependencies:
38 | "@ethersproject/abstract-provider" "^5.5.0"
39 | "@ethersproject/bignumber" "^5.5.0"
40 | "@ethersproject/bytes" "^5.5.0"
41 | "@ethersproject/logger" "^5.5.0"
42 | "@ethersproject/properties" "^5.5.0"
43 |
44 | "@ethersproject/address@^5.0.2":
45 | version "5.0.11"
46 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.0.11.tgz#12022e8c590c33939beb5ab18b401ecf585eac59"
47 | integrity sha512-Et4GBdD8/tsBGjCEOKee9upN29qjL5kbRcmJifb4Penmiuh9GARXL2/xpXvEp5EW+EIW/rfCHFJrkYBgoQFQBw==
48 | dependencies:
49 | "@ethersproject/bignumber" "^5.0.13"
50 | "@ethersproject/bytes" "^5.0.9"
51 | "@ethersproject/keccak256" "^5.0.7"
52 | "@ethersproject/logger" "^5.0.8"
53 | "@ethersproject/rlp" "^5.0.7"
54 |
55 | "@ethersproject/address@^5.5.0":
56 | version "5.5.0"
57 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.5.0.tgz#bcc6f576a553f21f3dd7ba17248f81b473c9c78f"
58 | integrity sha512-l4Nj0eWlTUh6ro5IbPTgbpT4wRbdH5l8CQf7icF7sb/SI3Nhd9Y9HzhonTSTi6CefI0necIw7LJqQPopPLZyWw==
59 | dependencies:
60 | "@ethersproject/bignumber" "^5.5.0"
61 | "@ethersproject/bytes" "^5.5.0"
62 | "@ethersproject/keccak256" "^5.5.0"
63 | "@ethersproject/logger" "^5.5.0"
64 | "@ethersproject/rlp" "^5.5.0"
65 |
66 | "@ethersproject/base64@^5.5.0":
67 | version "5.5.0"
68 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.5.0.tgz#881e8544e47ed976930836986e5eb8fab259c090"
69 | integrity sha512-tdayUKhU1ljrlHzEWbStXazDpsx4eg1dBXUSI6+mHlYklOXoXF6lZvw8tnD6oVaWfnMxAgRSKROg3cVKtCcppA==
70 | dependencies:
71 | "@ethersproject/bytes" "^5.5.0"
72 |
73 | "@ethersproject/basex@^5.5.0":
74 | version "5.5.0"
75 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.5.0.tgz#e40a53ae6d6b09ab4d977bd037010d4bed21b4d3"
76 | integrity sha512-ZIodwhHpVJ0Y3hUCfUucmxKsWQA5TMnavp5j/UOuDdzZWzJlRmuOjcTMIGgHCYuZmHt36BfiSyQPSRskPxbfaQ==
77 | dependencies:
78 | "@ethersproject/bytes" "^5.5.0"
79 | "@ethersproject/properties" "^5.5.0"
80 |
81 | "@ethersproject/bignumber@^5.0.13":
82 | version "5.0.15"
83 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.0.15.tgz#b089b3f1e0381338d764ac1c10512f0c93b184ed"
84 | integrity sha512-MTADqnyacvdRwtKh7o9ujwNDSM1SDJjYDMYAzjIgjoi9rh6TY4suMbhCa3i2vh3SUXiXSICyTI8ui+NPdrZ9Lw==
85 | dependencies:
86 | "@ethersproject/bytes" "^5.0.9"
87 | "@ethersproject/logger" "^5.0.8"
88 | bn.js "^4.4.0"
89 |
90 | "@ethersproject/bignumber@^5.5.0":
91 | version "5.5.0"
92 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.5.0.tgz#875b143f04a216f4f8b96245bde942d42d279527"
93 | integrity sha512-6Xytlwvy6Rn3U3gKEc1vP7nR92frHkv6wtVr95LFR3jREXiCPzdWxKQ1cx4JGQBXxcguAwjA8murlYN2TSiEbg==
94 | dependencies:
95 | "@ethersproject/bytes" "^5.5.0"
96 | "@ethersproject/logger" "^5.5.0"
97 | bn.js "^4.11.9"
98 |
99 | "@ethersproject/bytes@^5.0.9":
100 | version "5.0.11"
101 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.0.11.tgz#21118e75b1d00db068984c15530e316021101276"
102 | integrity sha512-D51plLYY5qF05AsoVQwIZVLqlBkaTPVHVP/1WmmBIWyHB0cRW0C9kh0kx5Exo51rB63Hk8PfHxc7SmpoaQFEyg==
103 | dependencies:
104 | "@ethersproject/logger" "^5.0.8"
105 |
106 | "@ethersproject/bytes@^5.5.0":
107 | version "5.5.0"
108 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.5.0.tgz#cb11c526de657e7b45d2e0f0246fb3b9d29a601c"
109 | integrity sha512-ABvc7BHWhZU9PNM/tANm/Qx4ostPGadAuQzWTr3doklZOhDlmcBqclrQe/ZXUIj3K8wC28oYeuRa+A37tX9kog==
110 | dependencies:
111 | "@ethersproject/logger" "^5.5.0"
112 |
113 | "@ethersproject/constants@^5.5.0":
114 | version "5.5.0"
115 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.5.0.tgz#d2a2cd7d94bd1d58377d1d66c4f53c9be4d0a45e"
116 | integrity sha512-2MsRRVChkvMWR+GyMGY4N1sAX9Mt3J9KykCsgUFd/1mwS0UH1qw+Bv9k1UJb3X3YJYFco9H20pjSlOIfCG5HYQ==
117 | dependencies:
118 | "@ethersproject/bignumber" "^5.5.0"
119 |
120 | "@ethersproject/contracts@^5.5.0":
121 | version "5.5.0"
122 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.5.0.tgz#b735260d4bd61283a670a82d5275e2a38892c197"
123 | integrity sha512-2viY7NzyvJkh+Ug17v7g3/IJC8HqZBDcOjYARZLdzRxrfGlRgmYgl6xPRKVbEzy1dWKw/iv7chDcS83pg6cLxg==
124 | dependencies:
125 | "@ethersproject/abi" "^5.5.0"
126 | "@ethersproject/abstract-provider" "^5.5.0"
127 | "@ethersproject/abstract-signer" "^5.5.0"
128 | "@ethersproject/address" "^5.5.0"
129 | "@ethersproject/bignumber" "^5.5.0"
130 | "@ethersproject/bytes" "^5.5.0"
131 | "@ethersproject/constants" "^5.5.0"
132 | "@ethersproject/logger" "^5.5.0"
133 | "@ethersproject/properties" "^5.5.0"
134 | "@ethersproject/transactions" "^5.5.0"
135 |
136 | "@ethersproject/hash@^5.5.0":
137 | version "5.5.0"
138 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.5.0.tgz#7cee76d08f88d1873574c849e0207dcb32380cc9"
139 | integrity sha512-dnGVpK1WtBjmnp3mUT0PlU2MpapnwWI0PibldQEq1408tQBAbZpPidkWoVVuNMOl/lISO3+4hXZWCL3YV7qzfg==
140 | dependencies:
141 | "@ethersproject/abstract-signer" "^5.5.0"
142 | "@ethersproject/address" "^5.5.0"
143 | "@ethersproject/bignumber" "^5.5.0"
144 | "@ethersproject/bytes" "^5.5.0"
145 | "@ethersproject/keccak256" "^5.5.0"
146 | "@ethersproject/logger" "^5.5.0"
147 | "@ethersproject/properties" "^5.5.0"
148 | "@ethersproject/strings" "^5.5.0"
149 |
150 | "@ethersproject/hdnode@^5.5.0":
151 | version "5.5.0"
152 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.5.0.tgz#4a04e28f41c546f7c978528ea1575206a200ddf6"
153 | integrity sha512-mcSOo9zeUg1L0CoJH7zmxwUG5ggQHU1UrRf8jyTYy6HxdZV+r0PBoL1bxr+JHIPXRzS6u/UW4mEn43y0tmyF8Q==
154 | dependencies:
155 | "@ethersproject/abstract-signer" "^5.5.0"
156 | "@ethersproject/basex" "^5.5.0"
157 | "@ethersproject/bignumber" "^5.5.0"
158 | "@ethersproject/bytes" "^5.5.0"
159 | "@ethersproject/logger" "^5.5.0"
160 | "@ethersproject/pbkdf2" "^5.5.0"
161 | "@ethersproject/properties" "^5.5.0"
162 | "@ethersproject/sha2" "^5.5.0"
163 | "@ethersproject/signing-key" "^5.5.0"
164 | "@ethersproject/strings" "^5.5.0"
165 | "@ethersproject/transactions" "^5.5.0"
166 | "@ethersproject/wordlists" "^5.5.0"
167 |
168 | "@ethersproject/json-wallets@^5.5.0":
169 | version "5.5.0"
170 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.5.0.tgz#dd522d4297e15bccc8e1427d247ec8376b60e325"
171 | integrity sha512-9lA21XQnCdcS72xlBn1jfQdj2A1VUxZzOzi9UkNdnokNKke/9Ya2xA9aIK1SC3PQyBDLt4C+dfps7ULpkvKikQ==
172 | dependencies:
173 | "@ethersproject/abstract-signer" "^5.5.0"
174 | "@ethersproject/address" "^5.5.0"
175 | "@ethersproject/bytes" "^5.5.0"
176 | "@ethersproject/hdnode" "^5.5.0"
177 | "@ethersproject/keccak256" "^5.5.0"
178 | "@ethersproject/logger" "^5.5.0"
179 | "@ethersproject/pbkdf2" "^5.5.0"
180 | "@ethersproject/properties" "^5.5.0"
181 | "@ethersproject/random" "^5.5.0"
182 | "@ethersproject/strings" "^5.5.0"
183 | "@ethersproject/transactions" "^5.5.0"
184 | aes-js "3.0.0"
185 | scrypt-js "3.0.1"
186 |
187 | "@ethersproject/keccak256@^5.0.7":
188 | version "5.0.9"
189 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.0.9.tgz#ca0d86e4af56c13b1ef25e533bde3e96d28f647d"
190 | integrity sha512-zhdUTj6RGtCJSgU+bDrWF6cGbvW453LoIC1DSNWrTlXzC7WuH4a+EiPrgc7/kNoRxerKuA/cxYlI8GwNtVtDlw==
191 | dependencies:
192 | "@ethersproject/bytes" "^5.0.9"
193 | js-sha3 "0.5.7"
194 |
195 | "@ethersproject/keccak256@^5.5.0":
196 | version "5.5.0"
197 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.5.0.tgz#e4b1f9d7701da87c564ffe336f86dcee82983492"
198 | integrity sha512-5VoFCTjo2rYbBe1l2f4mccaRFN/4VQEYFwwn04aJV2h7qf4ZvI2wFxUE1XOX+snbwCLRzIeikOqtAoPwMza9kg==
199 | dependencies:
200 | "@ethersproject/bytes" "^5.5.0"
201 | js-sha3 "0.8.0"
202 |
203 | "@ethersproject/logger@^5.0.8":
204 | version "5.0.10"
205 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.0.10.tgz#fd884688b3143253e0356ef92d5f22d109d2e026"
206 | integrity sha512-0y2T2NqykDrbPM3Zw9RSbPkDOxwChAL8detXaom76CfYoGxsOnRP/zTX8OUAV+x9LdwzgbWvWmeXrc0M7SuDZw==
207 |
208 | "@ethersproject/logger@^5.5.0":
209 | version "5.5.0"
210 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.5.0.tgz#0c2caebeff98e10aefa5aef27d7441c7fd18cf5d"
211 | integrity sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg==
212 |
213 | "@ethersproject/networks@^5.5.0":
214 | version "5.5.1"
215 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.5.1.tgz#b7f7b9fb88dec1ea48f739b7fb9621311aa8ce6c"
216 | integrity sha512-tYRDM4zZtSUcKnD4UMuAlj7SeXH/k5WC4SP2u1Pn57++JdXHkRu2zwNkgNogZoxHzhm9Q6qqurDBVptHOsW49Q==
217 | dependencies:
218 | "@ethersproject/logger" "^5.5.0"
219 |
220 | "@ethersproject/pbkdf2@^5.5.0":
221 | version "5.5.0"
222 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.5.0.tgz#e25032cdf02f31505d47afbf9c3e000d95c4a050"
223 | integrity sha512-SaDvQFvXPnz1QGpzr6/HToLifftSXGoXrbpZ6BvoZhmx4bNLHrxDe8MZisuecyOziP1aVEwzC2Hasj+86TgWVg==
224 | dependencies:
225 | "@ethersproject/bytes" "^5.5.0"
226 | "@ethersproject/sha2" "^5.5.0"
227 |
228 | "@ethersproject/properties@^5.5.0":
229 | version "5.5.0"
230 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.5.0.tgz#61f00f2bb83376d2071baab02245f92070c59995"
231 | integrity sha512-l3zRQg3JkD8EL3CPjNK5g7kMx4qSwiR60/uk5IVjd3oq1MZR5qUg40CNOoEJoX5wc3DyY5bt9EbMk86C7x0DNA==
232 | dependencies:
233 | "@ethersproject/logger" "^5.5.0"
234 |
235 | "@ethersproject/providers@^5.5.1":
236 | version "5.5.1"
237 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.5.1.tgz#ba87e3c93219bbd2e2edf8b369873aee774abf04"
238 | integrity sha512-2zdD5sltACDWhjUE12Kucg2PcgM6V2q9JMyVvObtVGnzJu+QSmibbP+BHQyLWZUBfLApx2942+7DC5D+n4wBQQ==
239 | dependencies:
240 | "@ethersproject/abstract-provider" "^5.5.0"
241 | "@ethersproject/abstract-signer" "^5.5.0"
242 | "@ethersproject/address" "^5.5.0"
243 | "@ethersproject/basex" "^5.5.0"
244 | "@ethersproject/bignumber" "^5.5.0"
245 | "@ethersproject/bytes" "^5.5.0"
246 | "@ethersproject/constants" "^5.5.0"
247 | "@ethersproject/hash" "^5.5.0"
248 | "@ethersproject/logger" "^5.5.0"
249 | "@ethersproject/networks" "^5.5.0"
250 | "@ethersproject/properties" "^5.5.0"
251 | "@ethersproject/random" "^5.5.0"
252 | "@ethersproject/rlp" "^5.5.0"
253 | "@ethersproject/sha2" "^5.5.0"
254 | "@ethersproject/strings" "^5.5.0"
255 | "@ethersproject/transactions" "^5.5.0"
256 | "@ethersproject/web" "^5.5.0"
257 | bech32 "1.1.4"
258 | ws "7.4.6"
259 |
260 | "@ethersproject/random@^5.5.0":
261 | version "5.5.0"
262 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.5.0.tgz#305ed9e033ca537735365ac12eed88580b0f81f9"
263 | integrity sha512-egGYZwZ/YIFKMHcoBUo8t3a8Hb/TKYX8BCBoLjudVCZh892welR3jOxgOmb48xznc9bTcMm7Tpwc1gHC1PFNFQ==
264 | dependencies:
265 | "@ethersproject/bytes" "^5.5.0"
266 | "@ethersproject/logger" "^5.5.0"
267 |
268 | "@ethersproject/rlp@^5.0.7":
269 | version "5.0.9"
270 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.0.9.tgz#da205bf8a34d3c3409eb73ddd237130a4b376aff"
271 | integrity sha512-ns1U7ZMVeruUW6JXc4om+1w3w4ynHN/0fpwmeNTsAjwGKoF8SAUgue6ylKpHKWSti2idx7jDxbn8hNNFHk67CA==
272 | dependencies:
273 | "@ethersproject/bytes" "^5.0.9"
274 | "@ethersproject/logger" "^5.0.8"
275 |
276 | "@ethersproject/rlp@^5.5.0":
277 | version "5.5.0"
278 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.5.0.tgz#530f4f608f9ca9d4f89c24ab95db58ab56ab99a0"
279 | integrity sha512-hLv8XaQ8PTI9g2RHoQGf/WSxBfTB/NudRacbzdxmst5VHAqd1sMibWG7SENzT5Dj3yZ3kJYx+WiRYEcQTAkcYA==
280 | dependencies:
281 | "@ethersproject/bytes" "^5.5.0"
282 | "@ethersproject/logger" "^5.5.0"
283 |
284 | "@ethersproject/sha2@^5.5.0":
285 | version "5.5.0"
286 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.5.0.tgz#a40a054c61f98fd9eee99af2c3cc6ff57ec24db7"
287 | integrity sha512-B5UBoglbCiHamRVPLA110J+2uqsifpZaTmid2/7W5rbtYVz6gus6/hSDieIU/6gaKIDcOj12WnOdiymEUHIAOA==
288 | dependencies:
289 | "@ethersproject/bytes" "^5.5.0"
290 | "@ethersproject/logger" "^5.5.0"
291 | hash.js "1.1.7"
292 |
293 | "@ethersproject/signing-key@^5.5.0":
294 | version "5.5.0"
295 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.5.0.tgz#2aa37169ce7e01e3e80f2c14325f624c29cedbe0"
296 | integrity sha512-5VmseH7qjtNmDdZBswavhotYbWB0bOwKIlOTSlX14rKn5c11QmJwGt4GHeo7NrL/Ycl7uo9AHvEqs5xZgFBTng==
297 | dependencies:
298 | "@ethersproject/bytes" "^5.5.0"
299 | "@ethersproject/logger" "^5.5.0"
300 | "@ethersproject/properties" "^5.5.0"
301 | bn.js "^4.11.9"
302 | elliptic "6.5.4"
303 | hash.js "1.1.7"
304 |
305 | "@ethersproject/strings@^5.5.0":
306 | version "5.5.0"
307 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.5.0.tgz#e6784d00ec6c57710755699003bc747e98c5d549"
308 | integrity sha512-9fy3TtF5LrX/wTrBaT8FGE6TDJyVjOvXynXJz5MT5azq+E6D92zuKNx7i29sWW2FjVOaWjAsiZ1ZWznuduTIIQ==
309 | dependencies:
310 | "@ethersproject/bytes" "^5.5.0"
311 | "@ethersproject/constants" "^5.5.0"
312 | "@ethersproject/logger" "^5.5.0"
313 |
314 | "@ethersproject/transactions@^5.5.0":
315 | version "5.5.0"
316 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.5.0.tgz#7e9bf72e97bcdf69db34fe0d59e2f4203c7a2908"
317 | integrity sha512-9RZYSKX26KfzEd/1eqvv8pLauCKzDTub0Ko4LfIgaERvRuwyaNV78mJs7cpIgZaDl6RJui4o49lHwwCM0526zA==
318 | dependencies:
319 | "@ethersproject/address" "^5.5.0"
320 | "@ethersproject/bignumber" "^5.5.0"
321 | "@ethersproject/bytes" "^5.5.0"
322 | "@ethersproject/constants" "^5.5.0"
323 | "@ethersproject/keccak256" "^5.5.0"
324 | "@ethersproject/logger" "^5.5.0"
325 | "@ethersproject/properties" "^5.5.0"
326 | "@ethersproject/rlp" "^5.5.0"
327 | "@ethersproject/signing-key" "^5.5.0"
328 |
329 | "@ethersproject/wallet@^5.5.0":
330 | version "5.5.0"
331 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.5.0.tgz#322a10527a440ece593980dca6182f17d54eae75"
332 | integrity sha512-Mlu13hIctSYaZmUOo7r2PhNSd8eaMPVXe1wxrz4w4FCE4tDYBywDH+bAR1Xz2ADyXGwqYMwstzTrtUVIsKDO0Q==
333 | dependencies:
334 | "@ethersproject/abstract-provider" "^5.5.0"
335 | "@ethersproject/abstract-signer" "^5.5.0"
336 | "@ethersproject/address" "^5.5.0"
337 | "@ethersproject/bignumber" "^5.5.0"
338 | "@ethersproject/bytes" "^5.5.0"
339 | "@ethersproject/hash" "^5.5.0"
340 | "@ethersproject/hdnode" "^5.5.0"
341 | "@ethersproject/json-wallets" "^5.5.0"
342 | "@ethersproject/keccak256" "^5.5.0"
343 | "@ethersproject/logger" "^5.5.0"
344 | "@ethersproject/properties" "^5.5.0"
345 | "@ethersproject/random" "^5.5.0"
346 | "@ethersproject/signing-key" "^5.5.0"
347 | "@ethersproject/transactions" "^5.5.0"
348 | "@ethersproject/wordlists" "^5.5.0"
349 |
350 | "@ethersproject/web@^5.5.0":
351 | version "5.5.1"
352 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.5.1.tgz#cfcc4a074a6936c657878ac58917a61341681316"
353 | integrity sha512-olvLvc1CB12sREc1ROPSHTdFCdvMh0J5GSJYiQg2D0hdD4QmJDy8QYDb1CvoqD/bF1c++aeKv2sR5uduuG9dQg==
354 | dependencies:
355 | "@ethersproject/base64" "^5.5.0"
356 | "@ethersproject/bytes" "^5.5.0"
357 | "@ethersproject/logger" "^5.5.0"
358 | "@ethersproject/properties" "^5.5.0"
359 | "@ethersproject/strings" "^5.5.0"
360 |
361 | "@ethersproject/wordlists@^5.5.0":
362 | version "5.5.0"
363 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.5.0.tgz#aac74963aa43e643638e5172353d931b347d584f"
364 | integrity sha512-bL0UTReWDiaQJJYOC9sh/XcRu/9i2jMrzf8VLRmPKx58ckSlOJiohODkECCO50dtLZHcGU6MLXQ4OOrgBwP77Q==
365 | dependencies:
366 | "@ethersproject/bytes" "^5.5.0"
367 | "@ethersproject/hash" "^5.5.0"
368 | "@ethersproject/logger" "^5.5.0"
369 | "@ethersproject/properties" "^5.5.0"
370 | "@ethersproject/strings" "^5.5.0"
371 |
372 | "@openzeppelin/contracts@3.4.1-solc-0.7-2":
373 | version "3.4.1-solc-0.7-2"
374 | resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz#371c67ebffe50f551c3146a9eec5fe6ffe862e92"
375 | integrity sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==
376 |
377 | "@types/bn.js@^4.11.3":
378 | version "4.11.6"
379 | resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c"
380 | integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==
381 | dependencies:
382 | "@types/node" "*"
383 |
384 | "@types/chai@^4.2.12":
385 | version "4.2.15"
386 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.15.tgz#b7a6d263c2cecf44b6de9a051cf496249b154553"
387 | integrity sha512-rYff6FI+ZTKAPkJUoyz7Udq3GaoDZnxYDEvdEdFZASiA7PoErltHezDishqQiSDWrGxvxmplH304jyzQmjp0AQ==
388 |
389 | "@types/mocha@^8.0.3":
390 | version "8.2.1"
391 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.2.1.tgz#f3f3ae4590c5386fc7c543aae9b78d4cf30ffee9"
392 | integrity sha512-NysN+bNqj6E0Hv4CTGWSlPzMW6vTKjDpOteycDkV4IWBsO+PU48JonrPzV9ODjiI2XrjmA05KInLgF5ivZ/YGQ==
393 |
394 | "@types/node@*", "@types/node@^14.6.3":
395 | version "14.14.32"
396 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.32.tgz#90c5c4a8d72bbbfe53033f122341343249183448"
397 | integrity sha512-/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg==
398 |
399 | "@types/pbkdf2@^3.0.0":
400 | version "3.1.0"
401 | resolved "https://registry.yarnpkg.com/@types/pbkdf2/-/pbkdf2-3.1.0.tgz#039a0e9b67da0cdc4ee5dab865caa6b267bb66b1"
402 | integrity sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==
403 | dependencies:
404 | "@types/node" "*"
405 |
406 | "@types/secp256k1@^4.0.1":
407 | version "4.0.1"
408 | resolved "https://registry.yarnpkg.com/@types/secp256k1/-/secp256k1-4.0.1.tgz#fb3aa61a1848ad97d7425ff9dcba784549fca5a4"
409 | integrity sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==
410 | dependencies:
411 | "@types/node" "*"
412 |
413 | "@ungap/promise-all-settled@1.1.2":
414 | version "1.1.2"
415 | resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
416 | integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
417 |
418 | "@uniswap/lib@^4.0.1-alpha":
419 | version "4.0.1-alpha"
420 | resolved "https://registry.yarnpkg.com/@uniswap/lib/-/lib-4.0.1-alpha.tgz#2881008e55f075344675b3bca93f020b028fbd02"
421 | integrity sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==
422 |
423 | "@uniswap/sdk-core@^1.0.8":
424 | version "1.0.8"
425 | resolved "https://registry.yarnpkg.com/@uniswap/sdk-core/-/sdk-core-1.0.8.tgz#ef71021bd7f2791bdb146b740f876a4f2d89c05b"
426 | integrity sha512-ted1NTEj023A501rVLdYHqvJt+abAJZPyYZKMLgQ0OGsT/rO8NCYR4kZgvwumv+c7ZlUM8jdmnkiPVH+lFc/kw==
427 | dependencies:
428 | "@ethersproject/address" "^5.0.2"
429 | big.js "^5.2.2"
430 | decimal.js-light "^2.5.0"
431 | jsbi "^3.1.4"
432 | tiny-invariant "^1.1.0"
433 | tiny-warning "^1.0.3"
434 | toformat "^2.0.0"
435 |
436 | "@uniswap/swap-router-contracts@1.1.0":
437 | version "1.1.0"
438 | resolved "https://registry.yarnpkg.com/@uniswap/swap-router-contracts/-/swap-router-contracts-1.1.0.tgz#e027b14d4c172f231c53c48e1fd708a78d7d94d8"
439 | integrity sha512-GPmpx1lvjXWloB95+YUabr3UHJYr3scnSS8EzaNXnNrIz9nYZ+XQcMaJxOKe85Yi7IfcUQpj0HzD2TW99dtolA==
440 | dependencies:
441 | "@openzeppelin/contracts" "3.4.1-solc-0.7-2"
442 | "@uniswap/v2-core" "1.0.1"
443 | "@uniswap/v3-core" "1.0.0"
444 | "@uniswap/v3-periphery" "1.3.0"
445 | hardhat-watcher "^2.1.1"
446 |
447 | "@uniswap/v2-core@1.0.1":
448 | version "1.0.1"
449 | resolved "https://registry.yarnpkg.com/@uniswap/v2-core/-/v2-core-1.0.1.tgz#af8f508bf183204779938969e2e54043e147d425"
450 | integrity sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==
451 |
452 | "@uniswap/v3-core@1.0.0":
453 | version "1.0.0"
454 | resolved "https://registry.yarnpkg.com/@uniswap/v3-core/-/v3-core-1.0.0.tgz#6c24adacc4c25dceee0ba3ca142b35adbd7e359d"
455 | integrity sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==
456 |
457 | "@uniswap/v3-periphery@1.1.1":
458 | version "1.1.1"
459 | resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.1.1.tgz#be6dfca7b29318ea0d76a7baf15d3b33c3c5e90a"
460 | integrity sha512-orqD2Xy4lxVPF6pxd7ECSJY0gzEuqyeVSDHjzM86uWxOXlA4Nlh5pvI959KaS32pSOFBOVVA4XbbZywbJj+CZg==
461 | dependencies:
462 | "@openzeppelin/contracts" "3.4.1-solc-0.7-2"
463 | "@uniswap/lib" "^4.0.1-alpha"
464 | "@uniswap/v2-core" "1.0.1"
465 | "@uniswap/v3-core" "1.0.0"
466 | base64-sol "1.0.1"
467 | hardhat-watcher "^2.1.1"
468 |
469 | "@uniswap/v3-periphery@1.3.0", "v3-periphery-1_3_0@npm:@uniswap/v3-periphery@1.3.0":
470 | version "1.3.0"
471 | resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.3.0.tgz#37f0a1ef6025221722e50e9f3f2009c2d5d6e4ec"
472 | integrity sha512-HjHdI5RkjBl8zz3bqHShrbULFoZSrjbbrRHoO2vbzn+WRzTa6xY4PWphZv2Tlcb38YEKfKHp6NPl5hVedac8uw==
473 | dependencies:
474 | "@openzeppelin/contracts" "3.4.1-solc-0.7-2"
475 | "@uniswap/lib" "^4.0.1-alpha"
476 | "@uniswap/v2-core" "1.0.1"
477 | "@uniswap/v3-core" "1.0.0"
478 | base64-sol "1.0.1"
479 | hardhat-watcher "^2.1.1"
480 |
481 | "@uniswap/v3-periphery@^1.0.1":
482 | version "1.1.0"
483 | resolved "https://registry.yarnpkg.com/@uniswap/v3-periphery/-/v3-periphery-1.1.0.tgz#0afdf4d0bed536d06988a9d29f466c05f9f3286b"
484 | integrity sha512-fZU0Ohf4uIpHxMEKuTjdjIPM/fWPh35m5sRAKo93RqAlwPD8UmMhngXEwcC4Hj8fz3bimmoY++2DiniGUVzpdQ==
485 | dependencies:
486 | "@openzeppelin/contracts" "3.4.1-solc-0.7-2"
487 | "@uniswap/lib" "^4.0.1-alpha"
488 | "@uniswap/v2-core" "1.0.1"
489 | "@uniswap/v3-core" "1.0.0"
490 | base64-sol "1.0.1"
491 | hardhat-watcher "^2.1.1"
492 |
493 | "@uniswap/v3-staker@1.0.2":
494 | version "1.0.2"
495 | resolved "https://registry.yarnpkg.com/@uniswap/v3-staker/-/v3-staker-1.0.2.tgz#febad4905903032bb114ab58138c2d5200c87a3c"
496 | integrity sha512-+swIh/yhY9GQGyQxT4Gz54aXYLK+uc3qsmIvaAX+FjvhcL9TGOvS9tXbQsCZM4AJW63vj6TLsmHIjGMIePL1BQ==
497 | dependencies:
498 | "@openzeppelin/contracts" "3.4.1-solc-0.7-2"
499 | "@uniswap/v3-core" "1.0.0"
500 | "@uniswap/v3-periphery" "^1.0.1"
501 |
502 | "@vercel/ncc@^0.33.1":
503 | version "0.33.1"
504 | resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.33.1.tgz#b240080a3c1ded9446a30955a06a79851bb38f71"
505 | integrity sha512-Mlsps/P0PLZwsCFtSol23FGqT3FhBGb4B1AuGQ52JTAtXhak+b0Fh/4T55r0/SVQPeRiX9pNItOEHwakGPmZYA==
506 |
507 | aes-js@3.0.0:
508 | version "3.0.0"
509 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d"
510 | integrity sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0=
511 |
512 | ansi-colors@4.1.1:
513 | version "4.1.1"
514 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
515 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
516 |
517 | ansi-regex@^3.0.0:
518 | version "3.0.0"
519 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
520 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
521 |
522 | ansi-regex@^4.1.0:
523 | version "4.1.0"
524 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
525 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
526 |
527 | ansi-regex@^5.0.0:
528 | version "5.0.0"
529 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
530 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
531 |
532 | ansi-styles@^3.2.0:
533 | version "3.2.1"
534 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
535 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
536 | dependencies:
537 | color-convert "^1.9.0"
538 |
539 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
540 | version "4.3.0"
541 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
542 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
543 | dependencies:
544 | color-convert "^2.0.1"
545 |
546 | anymatch@~3.1.1:
547 | version "3.1.1"
548 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
549 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
550 | dependencies:
551 | normalize-path "^3.0.0"
552 | picomatch "^2.0.4"
553 |
554 | anymatch@~3.1.2:
555 | version "3.1.2"
556 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
557 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
558 | dependencies:
559 | normalize-path "^3.0.0"
560 | picomatch "^2.0.4"
561 |
562 | arg@^4.1.0:
563 | version "4.1.3"
564 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
565 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
566 |
567 | argparse@^2.0.1:
568 | version "2.0.1"
569 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
570 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
571 |
572 | assertion-error@^1.1.0:
573 | version "1.1.0"
574 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b"
575 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==
576 |
577 | balanced-match@^1.0.0:
578 | version "1.0.0"
579 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
580 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
581 |
582 | base-x@^3.0.2:
583 | version "3.0.8"
584 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.8.tgz#1e1106c2537f0162e8b52474a557ebb09000018d"
585 | integrity sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==
586 | dependencies:
587 | safe-buffer "^5.0.1"
588 |
589 | base64-sol@1.0.1:
590 | version "1.0.1"
591 | resolved "https://registry.yarnpkg.com/base64-sol/-/base64-sol-1.0.1.tgz#91317aa341f0bc763811783c5729f1c2574600f6"
592 | integrity sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==
593 |
594 | bech32@1.1.4:
595 | version "1.1.4"
596 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9"
597 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==
598 |
599 | big.js@^5.2.2:
600 | version "5.2.2"
601 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
602 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
603 |
604 | binary-extensions@^2.0.0:
605 | version "2.2.0"
606 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
607 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
608 |
609 | blakejs@^1.1.0:
610 | version "1.1.0"
611 | resolved "https://registry.yarnpkg.com/blakejs/-/blakejs-1.1.0.tgz#69df92ef953aa88ca51a32df6ab1c54a155fc7a5"
612 | integrity sha1-ad+S75U6qIylGjLfarHFShVfx6U=
613 |
614 | bn.js@^4.11.0, bn.js@^4.11.1, bn.js@^4.11.9, bn.js@^4.4.0:
615 | version "4.12.0"
616 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
617 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
618 |
619 | brace-expansion@^1.1.7:
620 | version "1.1.11"
621 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
622 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
623 | dependencies:
624 | balanced-match "^1.0.0"
625 | concat-map "0.0.1"
626 |
627 | braces@~3.0.2:
628 | version "3.0.2"
629 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
630 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
631 | dependencies:
632 | fill-range "^7.0.1"
633 |
634 | brorand@^1.1.0:
635 | version "1.1.0"
636 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
637 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
638 |
639 | browser-stdout@1.3.1:
640 | version "1.3.1"
641 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
642 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
643 |
644 | browserify-aes@^1.2.0:
645 | version "1.2.0"
646 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
647 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
648 | dependencies:
649 | buffer-xor "^1.0.3"
650 | cipher-base "^1.0.0"
651 | create-hash "^1.1.0"
652 | evp_bytestokey "^1.0.3"
653 | inherits "^2.0.1"
654 | safe-buffer "^5.0.1"
655 |
656 | bs58@^4.0.0:
657 | version "4.0.1"
658 | resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a"
659 | integrity sha1-vhYedsNU9veIrkBx9j806MTwpCo=
660 | dependencies:
661 | base-x "^3.0.2"
662 |
663 | bs58check@^2.1.2:
664 | version "2.1.2"
665 | resolved "https://registry.yarnpkg.com/bs58check/-/bs58check-2.1.2.tgz#53b018291228d82a5aa08e7d796fdafda54aebfc"
666 | integrity sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==
667 | dependencies:
668 | bs58 "^4.0.0"
669 | create-hash "^1.1.0"
670 | safe-buffer "^5.1.2"
671 |
672 | buffer-from@^1.0.0:
673 | version "1.1.1"
674 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
675 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
676 |
677 | buffer-xor@^1.0.3:
678 | version "1.0.3"
679 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
680 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
681 |
682 | camelcase@^5.0.0:
683 | version "5.3.1"
684 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
685 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
686 |
687 | camelcase@^6.0.0:
688 | version "6.2.0"
689 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
690 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
691 |
692 | chai@^4.2.0:
693 | version "4.3.3"
694 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.3.tgz#f2b2ad9736999d07a7ff95cf1e7086c43a76f72d"
695 | integrity sha512-MPSLOZwxxnA0DhLE84klnGPojWFK5KuhP7/j5dTsxpr2S3XlkqJP5WbyYl1gCTWvG2Z5N+HD4F472WsbEZL6Pw==
696 | dependencies:
697 | assertion-error "^1.1.0"
698 | check-error "^1.0.2"
699 | deep-eql "^3.0.1"
700 | get-func-name "^2.0.0"
701 | pathval "^1.1.1"
702 | type-detect "^4.0.5"
703 |
704 | chalk@^4.0.0:
705 | version "4.1.0"
706 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
707 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
708 | dependencies:
709 | ansi-styles "^4.1.0"
710 | supports-color "^7.1.0"
711 |
712 | check-error@^1.0.2:
713 | version "1.0.2"
714 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
715 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=
716 |
717 | chokidar@3.5.1:
718 | version "3.5.1"
719 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
720 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
721 | dependencies:
722 | anymatch "~3.1.1"
723 | braces "~3.0.2"
724 | glob-parent "~5.1.0"
725 | is-binary-path "~2.1.0"
726 | is-glob "~4.0.1"
727 | normalize-path "~3.0.0"
728 | readdirp "~3.5.0"
729 | optionalDependencies:
730 | fsevents "~2.3.1"
731 |
732 | chokidar@^3.4.3:
733 | version "3.5.2"
734 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
735 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
736 | dependencies:
737 | anymatch "~3.1.2"
738 | braces "~3.0.2"
739 | glob-parent "~5.1.2"
740 | is-binary-path "~2.1.0"
741 | is-glob "~4.0.1"
742 | normalize-path "~3.0.0"
743 | readdirp "~3.6.0"
744 | optionalDependencies:
745 | fsevents "~2.3.2"
746 |
747 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
748 | version "1.0.4"
749 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
750 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
751 | dependencies:
752 | inherits "^2.0.1"
753 | safe-buffer "^5.0.1"
754 |
755 | cliui@^5.0.0:
756 | version "5.0.0"
757 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
758 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
759 | dependencies:
760 | string-width "^3.1.0"
761 | strip-ansi "^5.2.0"
762 | wrap-ansi "^5.1.0"
763 |
764 | cliui@^7.0.2:
765 | version "7.0.4"
766 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
767 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
768 | dependencies:
769 | string-width "^4.2.0"
770 | strip-ansi "^6.0.0"
771 | wrap-ansi "^7.0.0"
772 |
773 | color-convert@^1.9.0:
774 | version "1.9.3"
775 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
776 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
777 | dependencies:
778 | color-name "1.1.3"
779 |
780 | color-convert@^2.0.1:
781 | version "2.0.1"
782 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
783 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
784 | dependencies:
785 | color-name "~1.1.4"
786 |
787 | color-name@1.1.3:
788 | version "1.1.3"
789 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
790 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
791 |
792 | color-name@~1.1.4:
793 | version "1.1.4"
794 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
795 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
796 |
797 | commander@^6.1.0:
798 | version "6.2.1"
799 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
800 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
801 |
802 | concat-map@0.0.1:
803 | version "0.0.1"
804 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
805 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
806 |
807 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
808 | version "1.2.0"
809 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
810 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
811 | dependencies:
812 | cipher-base "^1.0.1"
813 | inherits "^2.0.1"
814 | md5.js "^1.3.4"
815 | ripemd160 "^2.0.1"
816 | sha.js "^2.4.0"
817 |
818 | create-hmac@^1.1.4, create-hmac@^1.1.7:
819 | version "1.1.7"
820 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
821 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
822 | dependencies:
823 | cipher-base "^1.0.3"
824 | create-hash "^1.1.0"
825 | inherits "^2.0.1"
826 | ripemd160 "^2.0.0"
827 | safe-buffer "^5.0.1"
828 | sha.js "^2.4.8"
829 |
830 | create-require@^1.1.0:
831 | version "1.1.1"
832 | resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
833 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
834 |
835 | cross-spawn@^6.0.0:
836 | version "6.0.5"
837 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
838 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
839 | dependencies:
840 | nice-try "^1.0.4"
841 | path-key "^2.0.1"
842 | semver "^5.5.0"
843 | shebang-command "^1.2.0"
844 | which "^1.2.9"
845 |
846 | debug@4.3.1:
847 | version "4.3.1"
848 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
849 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
850 | dependencies:
851 | ms "2.1.2"
852 |
853 | decamelize@^1.2.0:
854 | version "1.2.0"
855 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
856 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
857 |
858 | decamelize@^4.0.0:
859 | version "4.0.0"
860 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
861 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
862 |
863 | decimal.js-light@^2.5.0:
864 | version "2.5.1"
865 | resolved "https://registry.yarnpkg.com/decimal.js-light/-/decimal.js-light-2.5.1.tgz#134fd32508f19e208f4fb2f8dac0d2626a867934"
866 | integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==
867 |
868 | deep-eql@^3.0.1:
869 | version "3.0.1"
870 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df"
871 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==
872 | dependencies:
873 | type-detect "^4.0.0"
874 |
875 | diff@5.0.0:
876 | version "5.0.0"
877 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
878 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
879 |
880 | diff@^4.0.1:
881 | version "4.0.2"
882 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
883 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
884 |
885 | elliptic@6.5.4, elliptic@^6.5.2:
886 | version "6.5.4"
887 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
888 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
889 | dependencies:
890 | bn.js "^4.11.9"
891 | brorand "^1.1.0"
892 | hash.js "^1.0.0"
893 | hmac-drbg "^1.0.1"
894 | inherits "^2.0.4"
895 | minimalistic-assert "^1.0.1"
896 | minimalistic-crypto-utils "^1.0.1"
897 |
898 | emoji-regex@^7.0.1:
899 | version "7.0.3"
900 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
901 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
902 |
903 | emoji-regex@^8.0.0:
904 | version "8.0.0"
905 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
906 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
907 |
908 | end-of-stream@^1.1.0:
909 | version "1.4.4"
910 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
911 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
912 | dependencies:
913 | once "^1.4.0"
914 |
915 | escalade@^3.1.1:
916 | version "3.1.1"
917 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
918 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
919 |
920 | escape-string-regexp@4.0.0:
921 | version "4.0.0"
922 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
923 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
924 |
925 | ethereum-cryptography@^0.1.3:
926 | version "0.1.3"
927 | resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz#8d6143cfc3d74bf79bbd8edecdf29e4ae20dd191"
928 | integrity sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==
929 | dependencies:
930 | "@types/pbkdf2" "^3.0.0"
931 | "@types/secp256k1" "^4.0.1"
932 | blakejs "^1.1.0"
933 | browserify-aes "^1.2.0"
934 | bs58check "^2.1.2"
935 | create-hash "^1.2.0"
936 | create-hmac "^1.1.7"
937 | hash.js "^1.1.7"
938 | keccak "^3.0.0"
939 | pbkdf2 "^3.0.17"
940 | randombytes "^2.1.0"
941 | safe-buffer "^5.1.2"
942 | scrypt-js "^3.0.0"
943 | secp256k1 "^4.0.1"
944 | setimmediate "^1.0.5"
945 |
946 | ethereumjs-util@6.2.1:
947 | version "6.2.1"
948 | resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz#fcb4e4dd5ceacb9d2305426ab1a5cd93e3163b69"
949 | integrity sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==
950 | dependencies:
951 | "@types/bn.js" "^4.11.3"
952 | bn.js "^4.11.0"
953 | create-hash "^1.1.2"
954 | elliptic "^6.5.2"
955 | ethereum-cryptography "^0.1.3"
956 | ethjs-util "0.1.6"
957 | rlp "^2.2.3"
958 |
959 | ethjs-util@0.1.6:
960 | version "0.1.6"
961 | resolved "https://registry.yarnpkg.com/ethjs-util/-/ethjs-util-0.1.6.tgz#f308b62f185f9fe6237132fb2a9818866a5cd536"
962 | integrity sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==
963 | dependencies:
964 | is-hex-prefixed "1.0.0"
965 | strip-hex-prefix "1.0.0"
966 |
967 | evp_bytestokey@^1.0.3:
968 | version "1.0.3"
969 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
970 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
971 | dependencies:
972 | md5.js "^1.3.4"
973 | safe-buffer "^5.1.1"
974 |
975 | execa@^1.0.0:
976 | version "1.0.0"
977 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
978 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
979 | dependencies:
980 | cross-spawn "^6.0.0"
981 | get-stream "^4.0.0"
982 | is-stream "^1.1.0"
983 | npm-run-path "^2.0.0"
984 | p-finally "^1.0.0"
985 | signal-exit "^3.0.0"
986 | strip-eof "^1.0.0"
987 |
988 | fill-range@^7.0.1:
989 | version "7.0.1"
990 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
991 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
992 | dependencies:
993 | to-regex-range "^5.0.1"
994 |
995 | find-up@5.0.0:
996 | version "5.0.0"
997 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
998 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
999 | dependencies:
1000 | locate-path "^6.0.0"
1001 | path-exists "^4.0.0"
1002 |
1003 | find-up@^3.0.0:
1004 | version "3.0.0"
1005 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
1006 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
1007 | dependencies:
1008 | locate-path "^3.0.0"
1009 |
1010 | flat@^5.0.2:
1011 | version "5.0.2"
1012 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
1013 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
1014 |
1015 | fs.realpath@^1.0.0:
1016 | version "1.0.0"
1017 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1018 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1019 |
1020 | fsevents@~2.3.1, fsevents@~2.3.2:
1021 | version "2.3.2"
1022 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1023 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1024 |
1025 | ganache-cli@^6.10.1:
1026 | version "6.12.2"
1027 | resolved "https://registry.yarnpkg.com/ganache-cli/-/ganache-cli-6.12.2.tgz#c0920f7db0d4ac062ffe2375cb004089806f627a"
1028 | integrity sha512-bnmwnJDBDsOWBUP8E/BExWf85TsdDEFelQSzihSJm9VChVO1SHp94YXLP5BlA4j/OTxp0wR4R1Tje9OHOuAJVw==
1029 | dependencies:
1030 | ethereumjs-util "6.2.1"
1031 | source-map-support "0.5.12"
1032 | yargs "13.2.4"
1033 |
1034 | get-caller-file@^2.0.1, get-caller-file@^2.0.5:
1035 | version "2.0.5"
1036 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
1037 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
1038 |
1039 | get-func-name@^2.0.0:
1040 | version "2.0.0"
1041 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
1042 | integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=
1043 |
1044 | get-stream@^4.0.0:
1045 | version "4.1.0"
1046 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
1047 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
1048 | dependencies:
1049 | pump "^3.0.0"
1050 |
1051 | glob-parent@~5.1.0, glob-parent@~5.1.2:
1052 | version "5.1.2"
1053 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1054 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1055 | dependencies:
1056 | is-glob "^4.0.1"
1057 |
1058 | glob@7.1.6:
1059 | version "7.1.6"
1060 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
1061 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
1062 | dependencies:
1063 | fs.realpath "^1.0.0"
1064 | inflight "^1.0.4"
1065 | inherits "2"
1066 | minimatch "^3.0.4"
1067 | once "^1.3.0"
1068 | path-is-absolute "^1.0.0"
1069 |
1070 | growl@1.10.5:
1071 | version "1.10.5"
1072 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
1073 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
1074 |
1075 | hardhat-watcher@^2.1.1:
1076 | version "2.1.1"
1077 | resolved "https://registry.yarnpkg.com/hardhat-watcher/-/hardhat-watcher-2.1.1.tgz#8b05fec429ed45da11808bbf6054a90f3e34c51a"
1078 | integrity sha512-zilmvxAYD34IofBrwOliQn4z92UiDmt2c949DW4Gokf0vS0qk4YTfVCi/LmUBICThGygNANE3WfnRTpjCJGtDA==
1079 | dependencies:
1080 | chokidar "^3.4.3"
1081 |
1082 | has-flag@^4.0.0:
1083 | version "4.0.0"
1084 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1085 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1086 |
1087 | hash-base@^3.0.0:
1088 | version "3.1.0"
1089 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
1090 | integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
1091 | dependencies:
1092 | inherits "^2.0.4"
1093 | readable-stream "^3.6.0"
1094 | safe-buffer "^5.2.0"
1095 |
1096 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7:
1097 | version "1.1.7"
1098 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
1099 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
1100 | dependencies:
1101 | inherits "^2.0.3"
1102 | minimalistic-assert "^1.0.1"
1103 |
1104 | he@1.2.0:
1105 | version "1.2.0"
1106 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
1107 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
1108 |
1109 | hmac-drbg@^1.0.1:
1110 | version "1.0.1"
1111 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1112 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
1113 | dependencies:
1114 | hash.js "^1.0.3"
1115 | minimalistic-assert "^1.0.0"
1116 | minimalistic-crypto-utils "^1.0.1"
1117 |
1118 | immer@^7.0.8:
1119 | version "7.0.15"
1120 | resolved "https://registry.yarnpkg.com/immer/-/immer-7.0.15.tgz#dc3bc6db87401659d2e737c67a21b227c484a4ad"
1121 | integrity sha512-yM7jo9+hvYgvdCQdqvhCNRRio0SCXc8xDPzA25SvKWa7b1WVPjLwQs1VYU5JPXjcJPTqAa5NP5dqpORGYBQ2AA==
1122 |
1123 | inflight@^1.0.4:
1124 | version "1.0.6"
1125 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1126 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1127 | dependencies:
1128 | once "^1.3.0"
1129 | wrappy "1"
1130 |
1131 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4:
1132 | version "2.0.4"
1133 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1134 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1135 |
1136 | invert-kv@^2.0.0:
1137 | version "2.0.0"
1138 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
1139 | integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
1140 |
1141 | is-binary-path@~2.1.0:
1142 | version "2.1.0"
1143 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1144 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1145 | dependencies:
1146 | binary-extensions "^2.0.0"
1147 |
1148 | is-extglob@^2.1.1:
1149 | version "2.1.1"
1150 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1151 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1152 |
1153 | is-fullwidth-code-point@^2.0.0:
1154 | version "2.0.0"
1155 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1156 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
1157 |
1158 | is-fullwidth-code-point@^3.0.0:
1159 | version "3.0.0"
1160 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
1161 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1162 |
1163 | is-glob@^4.0.1, is-glob@~4.0.1:
1164 | version "4.0.1"
1165 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1166 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
1167 | dependencies:
1168 | is-extglob "^2.1.1"
1169 |
1170 | is-hex-prefixed@1.0.0:
1171 | version "1.0.0"
1172 | resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
1173 | integrity sha1-fY035q135dEnFIkTxXPggtd39VQ=
1174 |
1175 | is-number@^7.0.0:
1176 | version "7.0.0"
1177 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1178 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1179 |
1180 | is-plain-obj@^2.1.0:
1181 | version "2.1.0"
1182 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
1183 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
1184 |
1185 | is-stream@^1.1.0:
1186 | version "1.1.0"
1187 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1188 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
1189 |
1190 | isexe@^2.0.0:
1191 | version "2.0.0"
1192 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1193 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1194 |
1195 | js-sha3@0.5.7:
1196 | version "0.5.7"
1197 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7"
1198 | integrity sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=
1199 |
1200 | js-sha3@0.8.0:
1201 | version "0.8.0"
1202 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
1203 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==
1204 |
1205 | js-yaml@4.0.0:
1206 | version "4.0.0"
1207 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
1208 | integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
1209 | dependencies:
1210 | argparse "^2.0.1"
1211 |
1212 | jsbi@^3.1.4:
1213 | version "3.1.4"
1214 | resolved "https://registry.yarnpkg.com/jsbi/-/jsbi-3.1.4.tgz#9654dd02207a66a4911b4e4bb74265bc2cbc9dd0"
1215 | integrity sha512-52QRRFSsi9impURE8ZUbzAMCLjPm4THO7H2fcuIvaaeFTbSysvkodbQQXIVsNgq/ypDbq6dJiuGKL0vZ/i9hUg==
1216 |
1217 | keccak@^3.0.0:
1218 | version "3.0.1"
1219 | resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.1.tgz#ae30a0e94dbe43414f741375cff6d64c8bea0bff"
1220 | integrity sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==
1221 | dependencies:
1222 | node-addon-api "^2.0.0"
1223 | node-gyp-build "^4.2.0"
1224 |
1225 | lcid@^2.0.0:
1226 | version "2.0.0"
1227 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
1228 | integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==
1229 | dependencies:
1230 | invert-kv "^2.0.0"
1231 |
1232 | locate-path@^3.0.0:
1233 | version "3.0.0"
1234 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
1235 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
1236 | dependencies:
1237 | p-locate "^3.0.0"
1238 | path-exists "^3.0.0"
1239 |
1240 | locate-path@^6.0.0:
1241 | version "6.0.0"
1242 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
1243 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1244 | dependencies:
1245 | p-locate "^5.0.0"
1246 |
1247 | log-symbols@4.0.0:
1248 | version "4.0.0"
1249 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920"
1250 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==
1251 | dependencies:
1252 | chalk "^4.0.0"
1253 |
1254 | make-error@^1.1.1:
1255 | version "1.3.6"
1256 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
1257 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
1258 |
1259 | map-age-cleaner@^0.1.1:
1260 | version "0.1.3"
1261 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
1262 | integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
1263 | dependencies:
1264 | p-defer "^1.0.0"
1265 |
1266 | md5.js@^1.3.4:
1267 | version "1.3.5"
1268 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
1269 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
1270 | dependencies:
1271 | hash-base "^3.0.0"
1272 | inherits "^2.0.1"
1273 | safe-buffer "^5.1.2"
1274 |
1275 | mem@^4.0.0:
1276 | version "4.3.0"
1277 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
1278 | integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==
1279 | dependencies:
1280 | map-age-cleaner "^0.1.1"
1281 | mimic-fn "^2.0.0"
1282 | p-is-promise "^2.0.0"
1283 |
1284 | mimic-fn@^2.0.0:
1285 | version "2.1.0"
1286 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
1287 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
1288 |
1289 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
1290 | version "1.0.1"
1291 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
1292 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
1293 |
1294 | minimalistic-crypto-utils@^1.0.1:
1295 | version "1.0.1"
1296 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1297 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
1298 |
1299 | minimatch@3.0.4, minimatch@^3.0.4:
1300 | version "3.0.4"
1301 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1302 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
1303 | dependencies:
1304 | brace-expansion "^1.1.7"
1305 |
1306 | mocha@^8.1.3:
1307 | version "8.3.1"
1308 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.3.1.tgz#b9eda6da1eb8cb8d29860a9c2205de5b8a076560"
1309 | integrity sha512-5SBMxANWqOv5bw3Hx+HVgaWlcWcFEQDUdaUAr1AUU+qwtx6cowhn7gEDT/DwQP7uYxnvShdUOVLbTYAHOEGfDQ==
1310 | dependencies:
1311 | "@ungap/promise-all-settled" "1.1.2"
1312 | ansi-colors "4.1.1"
1313 | browser-stdout "1.3.1"
1314 | chokidar "3.5.1"
1315 | debug "4.3.1"
1316 | diff "5.0.0"
1317 | escape-string-regexp "4.0.0"
1318 | find-up "5.0.0"
1319 | glob "7.1.6"
1320 | growl "1.10.5"
1321 | he "1.2.0"
1322 | js-yaml "4.0.0"
1323 | log-symbols "4.0.0"
1324 | minimatch "3.0.4"
1325 | ms "2.1.3"
1326 | nanoid "3.1.20"
1327 | serialize-javascript "5.0.1"
1328 | strip-json-comments "3.1.1"
1329 | supports-color "8.1.1"
1330 | which "2.0.2"
1331 | wide-align "1.1.3"
1332 | workerpool "6.1.0"
1333 | yargs "16.2.0"
1334 | yargs-parser "20.2.4"
1335 | yargs-unparser "2.0.0"
1336 |
1337 | ms@2.1.2:
1338 | version "2.1.2"
1339 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1340 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1341 |
1342 | ms@2.1.3:
1343 | version "2.1.3"
1344 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1345 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1346 |
1347 | nanoid@3.1.20:
1348 | version "3.1.20"
1349 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
1350 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
1351 |
1352 | nice-try@^1.0.4:
1353 | version "1.0.5"
1354 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
1355 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
1356 |
1357 | node-addon-api@^2.0.0:
1358 | version "2.0.2"
1359 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
1360 | integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==
1361 |
1362 | node-gyp-build@^4.2.0:
1363 | version "4.2.3"
1364 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739"
1365 | integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==
1366 |
1367 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1368 | version "3.0.0"
1369 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1370 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1371 |
1372 | npm-run-path@^2.0.0:
1373 | version "2.0.2"
1374 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1375 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
1376 | dependencies:
1377 | path-key "^2.0.0"
1378 |
1379 | once@^1.3.0, once@^1.3.1, once@^1.4.0:
1380 | version "1.4.0"
1381 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1382 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1383 | dependencies:
1384 | wrappy "1"
1385 |
1386 | os-locale@^3.1.0:
1387 | version "3.1.0"
1388 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
1389 | integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
1390 | dependencies:
1391 | execa "^1.0.0"
1392 | lcid "^2.0.0"
1393 | mem "^4.0.0"
1394 |
1395 | p-defer@^1.0.0:
1396 | version "1.0.0"
1397 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
1398 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
1399 |
1400 | p-finally@^1.0.0:
1401 | version "1.0.0"
1402 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1403 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
1404 |
1405 | p-is-promise@^2.0.0:
1406 | version "2.1.0"
1407 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
1408 | integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
1409 |
1410 | p-limit@^2.0.0:
1411 | version "2.3.0"
1412 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
1413 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
1414 | dependencies:
1415 | p-try "^2.0.0"
1416 |
1417 | p-limit@^3.0.2:
1418 | version "3.1.0"
1419 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
1420 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1421 | dependencies:
1422 | yocto-queue "^0.1.0"
1423 |
1424 | p-locate@^3.0.0:
1425 | version "3.0.0"
1426 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
1427 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
1428 | dependencies:
1429 | p-limit "^2.0.0"
1430 |
1431 | p-locate@^5.0.0:
1432 | version "5.0.0"
1433 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
1434 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1435 | dependencies:
1436 | p-limit "^3.0.2"
1437 |
1438 | p-try@^2.0.0:
1439 | version "2.2.0"
1440 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
1441 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
1442 |
1443 | path-exists@^3.0.0:
1444 | version "3.0.0"
1445 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1446 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1447 |
1448 | path-exists@^4.0.0:
1449 | version "4.0.0"
1450 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1451 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1452 |
1453 | path-is-absolute@^1.0.0:
1454 | version "1.0.1"
1455 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1456 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1457 |
1458 | path-key@^2.0.0, path-key@^2.0.1:
1459 | version "2.0.1"
1460 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1461 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
1462 |
1463 | pathval@^1.1.1:
1464 | version "1.1.1"
1465 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
1466 | integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
1467 |
1468 | pbkdf2@^3.0.17:
1469 | version "3.1.1"
1470 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94"
1471 | integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==
1472 | dependencies:
1473 | create-hash "^1.1.2"
1474 | create-hmac "^1.1.4"
1475 | ripemd160 "^2.0.1"
1476 | safe-buffer "^5.0.1"
1477 | sha.js "^2.4.8"
1478 |
1479 | picomatch@^2.0.4, picomatch@^2.2.1:
1480 | version "2.2.2"
1481 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
1482 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
1483 |
1484 | prettier@^2.1.1:
1485 | version "2.2.1"
1486 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
1487 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
1488 |
1489 | pump@^3.0.0:
1490 | version "3.0.0"
1491 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
1492 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
1493 | dependencies:
1494 | end-of-stream "^1.1.0"
1495 | once "^1.3.1"
1496 |
1497 | randombytes@^2.1.0:
1498 | version "2.1.0"
1499 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
1500 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
1501 | dependencies:
1502 | safe-buffer "^5.1.0"
1503 |
1504 | readable-stream@^3.6.0:
1505 | version "3.6.0"
1506 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
1507 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
1508 | dependencies:
1509 | inherits "^2.0.3"
1510 | string_decoder "^1.1.1"
1511 | util-deprecate "^1.0.1"
1512 |
1513 | readdirp@~3.5.0:
1514 | version "3.5.0"
1515 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
1516 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
1517 | dependencies:
1518 | picomatch "^2.2.1"
1519 |
1520 | readdirp@~3.6.0:
1521 | version "3.6.0"
1522 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
1523 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
1524 | dependencies:
1525 | picomatch "^2.2.1"
1526 |
1527 | require-directory@^2.1.1:
1528 | version "2.1.1"
1529 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1530 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
1531 |
1532 | require-main-filename@^2.0.0:
1533 | version "2.0.0"
1534 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
1535 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
1536 |
1537 | ripemd160@^2.0.0, ripemd160@^2.0.1:
1538 | version "2.0.2"
1539 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
1540 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
1541 | dependencies:
1542 | hash-base "^3.0.0"
1543 | inherits "^2.0.1"
1544 |
1545 | rlp@^2.2.3:
1546 | version "2.2.6"
1547 | resolved "https://registry.yarnpkg.com/rlp/-/rlp-2.2.6.tgz#c80ba6266ac7a483ef1e69e8e2f056656de2fb2c"
1548 | integrity sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==
1549 | dependencies:
1550 | bn.js "^4.11.1"
1551 |
1552 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
1553 | version "5.2.1"
1554 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
1555 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
1556 |
1557 | scrypt-js@3.0.1, scrypt-js@^3.0.0:
1558 | version "3.0.1"
1559 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312"
1560 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==
1561 |
1562 | secp256k1@^4.0.1:
1563 | version "4.0.2"
1564 | resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-4.0.2.tgz#15dd57d0f0b9fdb54ac1fa1694f40e5e9a54f4a1"
1565 | integrity sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==
1566 | dependencies:
1567 | elliptic "^6.5.2"
1568 | node-addon-api "^2.0.0"
1569 | node-gyp-build "^4.2.0"
1570 |
1571 | semver@^5.5.0:
1572 | version "5.7.1"
1573 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
1574 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
1575 |
1576 | serialize-javascript@5.0.1:
1577 | version "5.0.1"
1578 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
1579 | integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
1580 | dependencies:
1581 | randombytes "^2.1.0"
1582 |
1583 | set-blocking@^2.0.0:
1584 | version "2.0.0"
1585 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1586 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
1587 |
1588 | setimmediate@^1.0.5:
1589 | version "1.0.5"
1590 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
1591 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
1592 |
1593 | sha.js@^2.4.0, sha.js@^2.4.8:
1594 | version "2.4.11"
1595 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
1596 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
1597 | dependencies:
1598 | inherits "^2.0.1"
1599 | safe-buffer "^5.0.1"
1600 |
1601 | shebang-command@^1.2.0:
1602 | version "1.2.0"
1603 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1604 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
1605 | dependencies:
1606 | shebang-regex "^1.0.0"
1607 |
1608 | shebang-regex@^1.0.0:
1609 | version "1.0.0"
1610 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1611 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
1612 |
1613 | signal-exit@^3.0.0:
1614 | version "3.0.3"
1615 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
1616 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
1617 |
1618 | source-map-support@0.5.12:
1619 | version "0.5.12"
1620 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599"
1621 | integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==
1622 | dependencies:
1623 | buffer-from "^1.0.0"
1624 | source-map "^0.6.0"
1625 |
1626 | source-map-support@^0.5.17:
1627 | version "0.5.19"
1628 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
1629 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
1630 | dependencies:
1631 | buffer-from "^1.0.0"
1632 | source-map "^0.6.0"
1633 |
1634 | source-map@^0.6.0:
1635 | version "0.6.1"
1636 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
1637 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1638 |
1639 | "string-width@^1.0.2 || 2":
1640 | version "2.1.1"
1641 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1642 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
1643 | dependencies:
1644 | is-fullwidth-code-point "^2.0.0"
1645 | strip-ansi "^4.0.0"
1646 |
1647 | string-width@^3.0.0, string-width@^3.1.0:
1648 | version "3.1.0"
1649 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
1650 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
1651 | dependencies:
1652 | emoji-regex "^7.0.1"
1653 | is-fullwidth-code-point "^2.0.0"
1654 | strip-ansi "^5.1.0"
1655 |
1656 | string-width@^4.1.0, string-width@^4.2.0:
1657 | version "4.2.2"
1658 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
1659 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
1660 | dependencies:
1661 | emoji-regex "^8.0.0"
1662 | is-fullwidth-code-point "^3.0.0"
1663 | strip-ansi "^6.0.0"
1664 |
1665 | string_decoder@^1.1.1:
1666 | version "1.3.0"
1667 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
1668 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
1669 | dependencies:
1670 | safe-buffer "~5.2.0"
1671 |
1672 | strip-ansi@^4.0.0:
1673 | version "4.0.0"
1674 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1675 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
1676 | dependencies:
1677 | ansi-regex "^3.0.0"
1678 |
1679 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
1680 | version "5.2.0"
1681 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
1682 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
1683 | dependencies:
1684 | ansi-regex "^4.1.0"
1685 |
1686 | strip-ansi@^6.0.0:
1687 | version "6.0.0"
1688 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
1689 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
1690 | dependencies:
1691 | ansi-regex "^5.0.0"
1692 |
1693 | strip-eof@^1.0.0:
1694 | version "1.0.0"
1695 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1696 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
1697 |
1698 | strip-hex-prefix@1.0.0:
1699 | version "1.0.0"
1700 | resolved "https://registry.yarnpkg.com/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz#0c5f155fef1151373377de9dbb588da05500e36f"
1701 | integrity sha1-DF8VX+8RUTczd96du1iNoFUA428=
1702 | dependencies:
1703 | is-hex-prefixed "1.0.0"
1704 |
1705 | strip-json-comments@3.1.1:
1706 | version "3.1.1"
1707 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
1708 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1709 |
1710 | supports-color@8.1.1:
1711 | version "8.1.1"
1712 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
1713 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
1714 | dependencies:
1715 | has-flag "^4.0.0"
1716 |
1717 | supports-color@^7.1.0:
1718 | version "7.2.0"
1719 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1720 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1721 | dependencies:
1722 | has-flag "^4.0.0"
1723 |
1724 | tiny-invariant@^1.1.0:
1725 | version "1.1.0"
1726 | resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875"
1727 | integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==
1728 |
1729 | tiny-warning@^1.0.3:
1730 | version "1.0.3"
1731 | resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
1732 | integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
1733 |
1734 | to-regex-range@^5.0.1:
1735 | version "5.0.1"
1736 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1737 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1738 | dependencies:
1739 | is-number "^7.0.0"
1740 |
1741 | toformat@^2.0.0:
1742 | version "2.0.0"
1743 | resolved "https://registry.yarnpkg.com/toformat/-/toformat-2.0.0.tgz#7a043fd2dfbe9021a4e36e508835ba32056739d8"
1744 | integrity sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==
1745 |
1746 | ts-node@^9.0.0:
1747 | version "9.1.1"
1748 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
1749 | integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
1750 | dependencies:
1751 | arg "^4.1.0"
1752 | create-require "^1.1.0"
1753 | diff "^4.0.1"
1754 | make-error "^1.1.1"
1755 | source-map-support "^0.5.17"
1756 | yn "3.1.1"
1757 |
1758 | type-detect@^4.0.0, type-detect@^4.0.5:
1759 | version "4.0.8"
1760 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
1761 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
1762 |
1763 | typescript@^4.0.2:
1764 | version "4.2.3"
1765 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3"
1766 | integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==
1767 |
1768 | util-deprecate@^1.0.1:
1769 | version "1.0.2"
1770 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1771 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
1772 |
1773 | which-module@^2.0.0:
1774 | version "2.0.0"
1775 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
1776 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
1777 |
1778 | which@2.0.2:
1779 | version "2.0.2"
1780 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1781 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1782 | dependencies:
1783 | isexe "^2.0.0"
1784 |
1785 | which@^1.2.9:
1786 | version "1.3.1"
1787 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
1788 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
1789 | dependencies:
1790 | isexe "^2.0.0"
1791 |
1792 | wide-align@1.1.3:
1793 | version "1.1.3"
1794 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
1795 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
1796 | dependencies:
1797 | string-width "^1.0.2 || 2"
1798 |
1799 | workerpool@6.1.0:
1800 | version "6.1.0"
1801 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b"
1802 | integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
1803 |
1804 | wrap-ansi@^5.1.0:
1805 | version "5.1.0"
1806 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
1807 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
1808 | dependencies:
1809 | ansi-styles "^3.2.0"
1810 | string-width "^3.0.0"
1811 | strip-ansi "^5.0.0"
1812 |
1813 | wrap-ansi@^7.0.0:
1814 | version "7.0.0"
1815 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1816 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1817 | dependencies:
1818 | ansi-styles "^4.0.0"
1819 | string-width "^4.1.0"
1820 | strip-ansi "^6.0.0"
1821 |
1822 | wrappy@1:
1823 | version "1.0.2"
1824 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1825 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
1826 |
1827 | ws@7.4.6:
1828 | version "7.4.6"
1829 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
1830 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
1831 |
1832 | y18n@^4.0.0:
1833 | version "4.0.1"
1834 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
1835 | integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
1836 |
1837 | y18n@^5.0.5:
1838 | version "5.0.5"
1839 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
1840 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
1841 |
1842 | yargs-parser@20.2.4:
1843 | version "20.2.4"
1844 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
1845 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
1846 |
1847 | yargs-parser@^13.1.0:
1848 | version "13.1.2"
1849 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
1850 | integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
1851 | dependencies:
1852 | camelcase "^5.0.0"
1853 | decamelize "^1.2.0"
1854 |
1855 | yargs-parser@^20.2.2:
1856 | version "20.2.6"
1857 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20"
1858 | integrity sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA==
1859 |
1860 | yargs-unparser@2.0.0:
1861 | version "2.0.0"
1862 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb"
1863 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==
1864 | dependencies:
1865 | camelcase "^6.0.0"
1866 | decamelize "^4.0.0"
1867 | flat "^5.0.2"
1868 | is-plain-obj "^2.1.0"
1869 |
1870 | yargs@13.2.4:
1871 | version "13.2.4"
1872 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83"
1873 | integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==
1874 | dependencies:
1875 | cliui "^5.0.0"
1876 | find-up "^3.0.0"
1877 | get-caller-file "^2.0.1"
1878 | os-locale "^3.1.0"
1879 | require-directory "^2.1.1"
1880 | require-main-filename "^2.0.0"
1881 | set-blocking "^2.0.0"
1882 | string-width "^3.0.0"
1883 | which-module "^2.0.0"
1884 | y18n "^4.0.0"
1885 | yargs-parser "^13.1.0"
1886 |
1887 | yargs@16.2.0:
1888 | version "16.2.0"
1889 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
1890 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
1891 | dependencies:
1892 | cliui "^7.0.2"
1893 | escalade "^3.1.1"
1894 | get-caller-file "^2.0.5"
1895 | require-directory "^2.1.1"
1896 | string-width "^4.2.0"
1897 | y18n "^5.0.5"
1898 | yargs-parser "^20.2.2"
1899 |
1900 | yn@3.1.1:
1901 | version "3.1.1"
1902 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
1903 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
1904 |
1905 | yocto-queue@^0.1.0:
1906 | version "0.1.0"
1907 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1908 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1909 |
--------------------------------------------------------------------------------