zkjson 0.6.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +537 -0
- package/assets/collection.png +0 -0
- package/assets/db.png +0 -0
- package/assets/encode.png +0 -0
- package/assets/query.png +0 -0
- package/assets/rollup.png +0 -0
- package/assets/structure.png +0 -0
- package/assets/weavedb.png +0 -0
- package/assets/zkjson.png +0 -0
- package/benchmark/components/ui/avatar.jsx +49 -0
- package/benchmark/components/ui/checkbox.jsx +17 -0
- package/benchmark/components/ui/close-button.jsx +20 -0
- package/benchmark/components/ui/color-mode.jsx +89 -0
- package/benchmark/components/ui/dialog.jsx +54 -0
- package/benchmark/components/ui/drawer.jsx +44 -0
- package/benchmark/components/ui/field.jsx +22 -0
- package/benchmark/components/ui/input-group.jsx +39 -0
- package/benchmark/components/ui/popover.jsx +49 -0
- package/benchmark/components/ui/provider.jsx +12 -0
- package/benchmark/components/ui/radio.jsx +17 -0
- package/benchmark/components/ui/slider.jsx +107 -0
- package/benchmark/components/ui/tooltip.jsx +35 -0
- package/benchmark/jsconfig.json +7 -0
- package/benchmark/lib/cbor.js +387 -0
- package/benchmark/lib/msgpack.js +651 -0
- package/benchmark/next.config.mjs +6 -0
- package/benchmark/package.json +22 -0
- package/benchmark/pages/_app.js +9 -0
- package/benchmark/pages/_document.js +13 -0
- package/benchmark/pages/api/hello.js +5 -0
- package/benchmark/pages/index.js +438 -0
- package/benchmark/public/favicon.ico +0 -0
- package/benchmark/public/file.svg +1 -0
- package/benchmark/public/globe.svg +1 -0
- package/benchmark/public/next.svg +1 -0
- package/benchmark/public/vercel.svg +1 -0
- package/benchmark/public/window.svg +1 -0
- package/benchmark/yarn.lock +2448 -0
- package/circom/collection/collection.circom +32 -0
- package/circom/collection/compile.sh +10 -0
- package/circom/collection/gen.js +34 -0
- package/circom/collection/generateInput.js +10 -0
- package/circom/collection/index.circom +4 -0
- package/circom/collection/test.js +21 -0
- package/circom/collection/verifier.sol +247 -0
- package/circom/db/compile.sh +10 -0
- package/circom/db/db.circom +39 -0
- package/circom/db/gen.js +30 -0
- package/circom/db/generateInput.js +10 -0
- package/circom/db/index.circom +4 -0
- package/circom/db/test.js +21 -0
- package/circom/db/verifier.sol +261 -0
- package/circom/ipfs/calculate_total.circom +17 -0
- package/circom/ipfs/compile.sh +10 -0
- package/circom/ipfs/gen.js +18 -0
- package/circom/ipfs/generateInput.js +10 -0
- package/circom/ipfs/index.circom +4 -0
- package/circom/ipfs/ipfs.circom +62 -0
- package/circom/ipfs/parse.circom +289 -0
- package/circom/ipfs/sha256.circom +99 -0
- package/circom/ipfs/test.js +167 -0
- package/circom/ipfs/verifier.sol +261 -0
- package/circom/json/compile.sh +10 -0
- package/circom/json/gen.js +22 -0
- package/circom/json/gen2.js +21 -0
- package/circom/json/generateInput.js +20 -0
- package/circom/json/index.circom +4 -0
- package/circom/json/json.circom +81 -0
- package/circom/json/test.js +100 -0
- package/circom/json/verifier.sol +247 -0
- package/circom/query/compile.sh +10 -0
- package/circom/query/gen.js +28 -0
- package/circom/query/generateInput.js +11 -0
- package/circom/query/index.circom +4 -0
- package/circom/query/query.circom +58 -0
- package/circom/query/test.js +20 -0
- package/circom/query/verifier.sol +177 -0
- package/circom/rollup/compile.sh +10 -0
- package/circom/rollup/gen.js +36 -0
- package/circom/rollup/generateInput.js +11 -0
- package/circom/rollup/index.circom +4 -0
- package/circom/rollup/rollup.circom +43 -0
- package/circom/rollup/test.js +35 -0
- package/circom/rollup/verifier.sol +240 -0
- package/circom/scripts/ceremony.js +39 -0
- package/circom/scripts/ceremony.sh +6 -0
- package/circom/scripts/compile.js +113 -0
- package/circom/scripts/compile.sh +16 -0
- package/circom/utils/uint.circom +512 -0
- package/circom/utils/utils.circom +628 -0
- package/demos/arweave/jsconfig.json +7 -0
- package/demos/arweave/lib/ZKArweave.json +617 -0
- package/demos/arweave/lib/encoder.js +375 -0
- package/demos/arweave/next.config.js +6 -0
- package/demos/arweave/package.json +26 -0
- package/demos/arweave/pages/_app.js +9 -0
- package/demos/arweave/pages/_document.js +19 -0
- package/demos/arweave/pages/api/arweave.js +31 -0
- package/demos/arweave/pages/api/hello.js +5 -0
- package/demos/arweave/pages/index.js +869 -0
- package/demos/arweave/public/circuit.wasm +0 -0
- package/demos/arweave/public/circuit_final.zkey +0 -0
- package/demos/arweave/public/verification_key.json +149 -0
- package/demos/arweave/vercel.json +7 -0
- package/demos/arweave/yarn.lock +2510 -0
- package/demos/simple/jsconfig.json +7 -0
- package/demos/simple/lib/encoder.js +375 -0
- package/demos/simple/next.config.js +6 -0
- package/demos/simple/package.json +24 -0
- package/demos/simple/pages/_app.js +9 -0
- package/demos/simple/pages/_document.js +13 -0
- package/demos/simple/pages/api/hello.js +5 -0
- package/demos/simple/pages/index.js +342 -0
- package/demos/simple/public/circuit.wasm +0 -0
- package/demos/simple/public/circuit_final.zkey +0 -0
- package/demos/simple/public/verification_key.json +149 -0
- package/demos/simple/yarn.lock +2519 -0
- package/docs/README.md +17 -0
- package/docs/simple-zkjson.md +210 -0
- package/docs/solidity-contracts.md +216 -0
- package/docs/zk-circuits.md +125 -0
- package/docs/zkdb-rollup.md +218 -0
- package/docs/zkjson-sdk.md +254 -0
- package/docs/zkjson-v1_5.md +365 -0
- package/package.json +16 -7
- package/{contracts → sdk/contracts}/NORollup.sol +0 -2
- package/sdk/package.json +15 -0
- package/sdk/yarn.lock +881 -0
- package/solidity/README.md +13 -0
- package/solidity/arguments.js +4 -0
- package/solidity/contracts/NORollup.sol +13 -0
- package/solidity/contracts/OPRollup.sol +14 -0
- package/solidity/contracts/ZKIPFS.sol +95 -0
- package/solidity/contracts/ZKJson.sol +21 -0
- package/solidity/contracts/ZKQuery.sol +286 -0
- package/solidity/contracts/ZKRollup.sol +35 -0
- package/solidity/contracts/apps/NORU.sol +66 -0
- package/solidity/contracts/apps/SimpleJSON.sol +64 -0
- package/solidity/contracts/apps/SimpleOPRU.sol +67 -0
- package/solidity/contracts/apps/SimpleRU.sol +67 -0
- package/solidity/contracts/apps/Token.sol +12 -0
- package/solidity/contracts/apps/ZKArweave.sol +89 -0
- package/solidity/contracts/apps/ZKBridge.sol +74 -0
- package/solidity/contracts/apps/ZKNFT.sol +63 -0
- package/solidity/contracts/verifiers/verifier_db.sol +275 -0
- package/solidity/contracts/verifiers/verifier_ipfs.sol +464 -0
- package/solidity/contracts/verifiers/verifier_json.sol +261 -0
- package/solidity/contracts/verifiers/verifier_rollup.sol +240 -0
- package/solidity/package.json +27 -0
- package/solidity/scripts/deploy.js +33 -0
- package/solidity/test/NORU.js +66 -0
- package/solidity/test/ZKArweave.js +97 -0
- package/solidity/test/arweave.js +55 -0
- package/solidity/test/bridge.js +71 -0
- package/solidity/test/simple.js +76 -0
- package/solidity/test/simpleOPRU.js +98 -0
- package/solidity/test/simpleRU.js +94 -0
- package/solidity/test/zknft.js +98 -0
- package/solidity/yarn.lock +4152 -0
- package/test/test.js +304 -0
- /package/{circomlibjs.js → sdk/circomlibjs.js} +0 -0
- /package/{collection.js → sdk/collection.js} +0 -0
- /package/{contracts → sdk/contracts}/OPRollup.sol +0 -0
- /package/{contracts → sdk/contracts}/ZKIPFS.sol +0 -0
- /package/{contracts → sdk/contracts}/ZKJson.sol +0 -0
- /package/{contracts → sdk/contracts}/ZKQuery.sol +0 -0
- /package/{contracts → sdk/contracts}/ZKRollup.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/SimpleJSON.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/SimpleOPRU.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/SimpleRU.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/Token.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/ZKArweave.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/ZKBridge.sol +0 -0
- /package/{contracts → sdk/contracts}/apps/ZKNFT.sol +0 -0
- /package/{contracts → sdk/contracts}/verifiers/verifier_db.sol +0 -0
- /package/{contracts → sdk/contracts}/verifiers/verifier_ipfs.sol +0 -0
- /package/{contracts → sdk/contracts}/verifiers/verifier_json.sol +0 -0
- /package/{contracts → sdk/contracts}/verifiers/verifier_rollup.sol +0 -0
- /package/{db.js → sdk/db.js} +0 -0
- /package/{doc.js → sdk/doc.js} +0 -0
- /package/{encoder-v1_5.js → sdk/encoder-v1_5.js} +0 -0
- /package/{encoder.js → sdk/encoder.js} +0 -0
- /package/{index.js → sdk/index.js} +0 -0
- /package/{json.js → sdk/json.js} +0 -0
- /package/{nft.js → sdk/nft.js} +0 -0
- /package/{parse.js → sdk/parse.js} +0 -0
- /package/{uint.js → sdk/uint.js} +0 -0
package/sdk/yarn.lock
ADDED
@@ -0,0 +1,881 @@
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
2
|
+
# yarn lockfile v1
|
3
|
+
|
4
|
+
|
5
|
+
"@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0":
|
6
|
+
version "5.7.0"
|
7
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449"
|
8
|
+
integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==
|
9
|
+
dependencies:
|
10
|
+
"@ethersproject/address" "^5.7.0"
|
11
|
+
"@ethersproject/bignumber" "^5.7.0"
|
12
|
+
"@ethersproject/bytes" "^5.7.0"
|
13
|
+
"@ethersproject/constants" "^5.7.0"
|
14
|
+
"@ethersproject/hash" "^5.7.0"
|
15
|
+
"@ethersproject/keccak256" "^5.7.0"
|
16
|
+
"@ethersproject/logger" "^5.7.0"
|
17
|
+
"@ethersproject/properties" "^5.7.0"
|
18
|
+
"@ethersproject/strings" "^5.7.0"
|
19
|
+
|
20
|
+
"@ethersproject/abstract-provider@5.7.0", "@ethersproject/abstract-provider@^5.7.0":
|
21
|
+
version "5.7.0"
|
22
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef"
|
23
|
+
integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==
|
24
|
+
dependencies:
|
25
|
+
"@ethersproject/bignumber" "^5.7.0"
|
26
|
+
"@ethersproject/bytes" "^5.7.0"
|
27
|
+
"@ethersproject/logger" "^5.7.0"
|
28
|
+
"@ethersproject/networks" "^5.7.0"
|
29
|
+
"@ethersproject/properties" "^5.7.0"
|
30
|
+
"@ethersproject/transactions" "^5.7.0"
|
31
|
+
"@ethersproject/web" "^5.7.0"
|
32
|
+
|
33
|
+
"@ethersproject/abstract-signer@5.7.0", "@ethersproject/abstract-signer@^5.7.0":
|
34
|
+
version "5.7.0"
|
35
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2"
|
36
|
+
integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==
|
37
|
+
dependencies:
|
38
|
+
"@ethersproject/abstract-provider" "^5.7.0"
|
39
|
+
"@ethersproject/bignumber" "^5.7.0"
|
40
|
+
"@ethersproject/bytes" "^5.7.0"
|
41
|
+
"@ethersproject/logger" "^5.7.0"
|
42
|
+
"@ethersproject/properties" "^5.7.0"
|
43
|
+
|
44
|
+
"@ethersproject/address@5.7.0", "@ethersproject/address@^5.7.0":
|
45
|
+
version "5.7.0"
|
46
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37"
|
47
|
+
integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==
|
48
|
+
dependencies:
|
49
|
+
"@ethersproject/bignumber" "^5.7.0"
|
50
|
+
"@ethersproject/bytes" "^5.7.0"
|
51
|
+
"@ethersproject/keccak256" "^5.7.0"
|
52
|
+
"@ethersproject/logger" "^5.7.0"
|
53
|
+
"@ethersproject/rlp" "^5.7.0"
|
54
|
+
|
55
|
+
"@ethersproject/base64@5.7.0", "@ethersproject/base64@^5.7.0":
|
56
|
+
version "5.7.0"
|
57
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c"
|
58
|
+
integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==
|
59
|
+
dependencies:
|
60
|
+
"@ethersproject/bytes" "^5.7.0"
|
61
|
+
|
62
|
+
"@ethersproject/basex@5.7.0", "@ethersproject/basex@^5.7.0":
|
63
|
+
version "5.7.0"
|
64
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b"
|
65
|
+
integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==
|
66
|
+
dependencies:
|
67
|
+
"@ethersproject/bytes" "^5.7.0"
|
68
|
+
"@ethersproject/properties" "^5.7.0"
|
69
|
+
|
70
|
+
"@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.7.0":
|
71
|
+
version "5.7.0"
|
72
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2"
|
73
|
+
integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==
|
74
|
+
dependencies:
|
75
|
+
"@ethersproject/bytes" "^5.7.0"
|
76
|
+
"@ethersproject/logger" "^5.7.0"
|
77
|
+
bn.js "^5.2.1"
|
78
|
+
|
79
|
+
"@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.7.0":
|
80
|
+
version "5.7.0"
|
81
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d"
|
82
|
+
integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==
|
83
|
+
dependencies:
|
84
|
+
"@ethersproject/logger" "^5.7.0"
|
85
|
+
|
86
|
+
"@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.7.0":
|
87
|
+
version "5.7.0"
|
88
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e"
|
89
|
+
integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==
|
90
|
+
dependencies:
|
91
|
+
"@ethersproject/bignumber" "^5.7.0"
|
92
|
+
|
93
|
+
"@ethersproject/contracts@5.7.0":
|
94
|
+
version "5.7.0"
|
95
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.7.0.tgz#c305e775abd07e48aa590e1a877ed5c316f8bd1e"
|
96
|
+
integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==
|
97
|
+
dependencies:
|
98
|
+
"@ethersproject/abi" "^5.7.0"
|
99
|
+
"@ethersproject/abstract-provider" "^5.7.0"
|
100
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
101
|
+
"@ethersproject/address" "^5.7.0"
|
102
|
+
"@ethersproject/bignumber" "^5.7.0"
|
103
|
+
"@ethersproject/bytes" "^5.7.0"
|
104
|
+
"@ethersproject/constants" "^5.7.0"
|
105
|
+
"@ethersproject/logger" "^5.7.0"
|
106
|
+
"@ethersproject/properties" "^5.7.0"
|
107
|
+
"@ethersproject/transactions" "^5.7.0"
|
108
|
+
|
109
|
+
"@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.7.0":
|
110
|
+
version "5.7.0"
|
111
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7"
|
112
|
+
integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==
|
113
|
+
dependencies:
|
114
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
115
|
+
"@ethersproject/address" "^5.7.0"
|
116
|
+
"@ethersproject/base64" "^5.7.0"
|
117
|
+
"@ethersproject/bignumber" "^5.7.0"
|
118
|
+
"@ethersproject/bytes" "^5.7.0"
|
119
|
+
"@ethersproject/keccak256" "^5.7.0"
|
120
|
+
"@ethersproject/logger" "^5.7.0"
|
121
|
+
"@ethersproject/properties" "^5.7.0"
|
122
|
+
"@ethersproject/strings" "^5.7.0"
|
123
|
+
|
124
|
+
"@ethersproject/hdnode@5.7.0", "@ethersproject/hdnode@^5.7.0":
|
125
|
+
version "5.7.0"
|
126
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf"
|
127
|
+
integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==
|
128
|
+
dependencies:
|
129
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
130
|
+
"@ethersproject/basex" "^5.7.0"
|
131
|
+
"@ethersproject/bignumber" "^5.7.0"
|
132
|
+
"@ethersproject/bytes" "^5.7.0"
|
133
|
+
"@ethersproject/logger" "^5.7.0"
|
134
|
+
"@ethersproject/pbkdf2" "^5.7.0"
|
135
|
+
"@ethersproject/properties" "^5.7.0"
|
136
|
+
"@ethersproject/sha2" "^5.7.0"
|
137
|
+
"@ethersproject/signing-key" "^5.7.0"
|
138
|
+
"@ethersproject/strings" "^5.7.0"
|
139
|
+
"@ethersproject/transactions" "^5.7.0"
|
140
|
+
"@ethersproject/wordlists" "^5.7.0"
|
141
|
+
|
142
|
+
"@ethersproject/json-wallets@5.7.0", "@ethersproject/json-wallets@^5.7.0":
|
143
|
+
version "5.7.0"
|
144
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360"
|
145
|
+
integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==
|
146
|
+
dependencies:
|
147
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
148
|
+
"@ethersproject/address" "^5.7.0"
|
149
|
+
"@ethersproject/bytes" "^5.7.0"
|
150
|
+
"@ethersproject/hdnode" "^5.7.0"
|
151
|
+
"@ethersproject/keccak256" "^5.7.0"
|
152
|
+
"@ethersproject/logger" "^5.7.0"
|
153
|
+
"@ethersproject/pbkdf2" "^5.7.0"
|
154
|
+
"@ethersproject/properties" "^5.7.0"
|
155
|
+
"@ethersproject/random" "^5.7.0"
|
156
|
+
"@ethersproject/strings" "^5.7.0"
|
157
|
+
"@ethersproject/transactions" "^5.7.0"
|
158
|
+
aes-js "3.0.0"
|
159
|
+
scrypt-js "3.0.1"
|
160
|
+
|
161
|
+
"@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.7.0":
|
162
|
+
version "5.7.0"
|
163
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a"
|
164
|
+
integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==
|
165
|
+
dependencies:
|
166
|
+
"@ethersproject/bytes" "^5.7.0"
|
167
|
+
js-sha3 "0.8.0"
|
168
|
+
|
169
|
+
"@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.7.0":
|
170
|
+
version "5.7.0"
|
171
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892"
|
172
|
+
integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==
|
173
|
+
|
174
|
+
"@ethersproject/networks@5.7.1", "@ethersproject/networks@^5.7.0":
|
175
|
+
version "5.7.1"
|
176
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6"
|
177
|
+
integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==
|
178
|
+
dependencies:
|
179
|
+
"@ethersproject/logger" "^5.7.0"
|
180
|
+
|
181
|
+
"@ethersproject/pbkdf2@5.7.0", "@ethersproject/pbkdf2@^5.7.0":
|
182
|
+
version "5.7.0"
|
183
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102"
|
184
|
+
integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==
|
185
|
+
dependencies:
|
186
|
+
"@ethersproject/bytes" "^5.7.0"
|
187
|
+
"@ethersproject/sha2" "^5.7.0"
|
188
|
+
|
189
|
+
"@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.7.0":
|
190
|
+
version "5.7.0"
|
191
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30"
|
192
|
+
integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==
|
193
|
+
dependencies:
|
194
|
+
"@ethersproject/logger" "^5.7.0"
|
195
|
+
|
196
|
+
"@ethersproject/providers@5.7.2":
|
197
|
+
version "5.7.2"
|
198
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb"
|
199
|
+
integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==
|
200
|
+
dependencies:
|
201
|
+
"@ethersproject/abstract-provider" "^5.7.0"
|
202
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
203
|
+
"@ethersproject/address" "^5.7.0"
|
204
|
+
"@ethersproject/base64" "^5.7.0"
|
205
|
+
"@ethersproject/basex" "^5.7.0"
|
206
|
+
"@ethersproject/bignumber" "^5.7.0"
|
207
|
+
"@ethersproject/bytes" "^5.7.0"
|
208
|
+
"@ethersproject/constants" "^5.7.0"
|
209
|
+
"@ethersproject/hash" "^5.7.0"
|
210
|
+
"@ethersproject/logger" "^5.7.0"
|
211
|
+
"@ethersproject/networks" "^5.7.0"
|
212
|
+
"@ethersproject/properties" "^5.7.0"
|
213
|
+
"@ethersproject/random" "^5.7.0"
|
214
|
+
"@ethersproject/rlp" "^5.7.0"
|
215
|
+
"@ethersproject/sha2" "^5.7.0"
|
216
|
+
"@ethersproject/strings" "^5.7.0"
|
217
|
+
"@ethersproject/transactions" "^5.7.0"
|
218
|
+
"@ethersproject/web" "^5.7.0"
|
219
|
+
bech32 "1.1.4"
|
220
|
+
ws "7.4.6"
|
221
|
+
|
222
|
+
"@ethersproject/random@5.7.0", "@ethersproject/random@^5.7.0":
|
223
|
+
version "5.7.0"
|
224
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c"
|
225
|
+
integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==
|
226
|
+
dependencies:
|
227
|
+
"@ethersproject/bytes" "^5.7.0"
|
228
|
+
"@ethersproject/logger" "^5.7.0"
|
229
|
+
|
230
|
+
"@ethersproject/rlp@5.7.0", "@ethersproject/rlp@^5.7.0":
|
231
|
+
version "5.7.0"
|
232
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304"
|
233
|
+
integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==
|
234
|
+
dependencies:
|
235
|
+
"@ethersproject/bytes" "^5.7.0"
|
236
|
+
"@ethersproject/logger" "^5.7.0"
|
237
|
+
|
238
|
+
"@ethersproject/sha2@5.7.0", "@ethersproject/sha2@^5.7.0":
|
239
|
+
version "5.7.0"
|
240
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb"
|
241
|
+
integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==
|
242
|
+
dependencies:
|
243
|
+
"@ethersproject/bytes" "^5.7.0"
|
244
|
+
"@ethersproject/logger" "^5.7.0"
|
245
|
+
hash.js "1.1.7"
|
246
|
+
|
247
|
+
"@ethersproject/signing-key@5.7.0", "@ethersproject/signing-key@^5.7.0":
|
248
|
+
version "5.7.0"
|
249
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3"
|
250
|
+
integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==
|
251
|
+
dependencies:
|
252
|
+
"@ethersproject/bytes" "^5.7.0"
|
253
|
+
"@ethersproject/logger" "^5.7.0"
|
254
|
+
"@ethersproject/properties" "^5.7.0"
|
255
|
+
bn.js "^5.2.1"
|
256
|
+
elliptic "6.5.4"
|
257
|
+
hash.js "1.1.7"
|
258
|
+
|
259
|
+
"@ethersproject/solidity@5.7.0":
|
260
|
+
version "5.7.0"
|
261
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.7.0.tgz#5e9c911d8a2acce2a5ebb48a5e2e0af20b631cb8"
|
262
|
+
integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==
|
263
|
+
dependencies:
|
264
|
+
"@ethersproject/bignumber" "^5.7.0"
|
265
|
+
"@ethersproject/bytes" "^5.7.0"
|
266
|
+
"@ethersproject/keccak256" "^5.7.0"
|
267
|
+
"@ethersproject/logger" "^5.7.0"
|
268
|
+
"@ethersproject/sha2" "^5.7.0"
|
269
|
+
"@ethersproject/strings" "^5.7.0"
|
270
|
+
|
271
|
+
"@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.7.0":
|
272
|
+
version "5.7.0"
|
273
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2"
|
274
|
+
integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==
|
275
|
+
dependencies:
|
276
|
+
"@ethersproject/bytes" "^5.7.0"
|
277
|
+
"@ethersproject/constants" "^5.7.0"
|
278
|
+
"@ethersproject/logger" "^5.7.0"
|
279
|
+
|
280
|
+
"@ethersproject/transactions@5.7.0", "@ethersproject/transactions@^5.7.0":
|
281
|
+
version "5.7.0"
|
282
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b"
|
283
|
+
integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==
|
284
|
+
dependencies:
|
285
|
+
"@ethersproject/address" "^5.7.0"
|
286
|
+
"@ethersproject/bignumber" "^5.7.0"
|
287
|
+
"@ethersproject/bytes" "^5.7.0"
|
288
|
+
"@ethersproject/constants" "^5.7.0"
|
289
|
+
"@ethersproject/keccak256" "^5.7.0"
|
290
|
+
"@ethersproject/logger" "^5.7.0"
|
291
|
+
"@ethersproject/properties" "^5.7.0"
|
292
|
+
"@ethersproject/rlp" "^5.7.0"
|
293
|
+
"@ethersproject/signing-key" "^5.7.0"
|
294
|
+
|
295
|
+
"@ethersproject/units@5.7.0":
|
296
|
+
version "5.7.0"
|
297
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.7.0.tgz#637b563d7e14f42deeee39245275d477aae1d8b1"
|
298
|
+
integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==
|
299
|
+
dependencies:
|
300
|
+
"@ethersproject/bignumber" "^5.7.0"
|
301
|
+
"@ethersproject/constants" "^5.7.0"
|
302
|
+
"@ethersproject/logger" "^5.7.0"
|
303
|
+
|
304
|
+
"@ethersproject/wallet@5.7.0":
|
305
|
+
version "5.7.0"
|
306
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.7.0.tgz#4e5d0790d96fe21d61d38fb40324e6c7ef350b2d"
|
307
|
+
integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==
|
308
|
+
dependencies:
|
309
|
+
"@ethersproject/abstract-provider" "^5.7.0"
|
310
|
+
"@ethersproject/abstract-signer" "^5.7.0"
|
311
|
+
"@ethersproject/address" "^5.7.0"
|
312
|
+
"@ethersproject/bignumber" "^5.7.0"
|
313
|
+
"@ethersproject/bytes" "^5.7.0"
|
314
|
+
"@ethersproject/hash" "^5.7.0"
|
315
|
+
"@ethersproject/hdnode" "^5.7.0"
|
316
|
+
"@ethersproject/json-wallets" "^5.7.0"
|
317
|
+
"@ethersproject/keccak256" "^5.7.0"
|
318
|
+
"@ethersproject/logger" "^5.7.0"
|
319
|
+
"@ethersproject/properties" "^5.7.0"
|
320
|
+
"@ethersproject/random" "^5.7.0"
|
321
|
+
"@ethersproject/signing-key" "^5.7.0"
|
322
|
+
"@ethersproject/transactions" "^5.7.0"
|
323
|
+
"@ethersproject/wordlists" "^5.7.0"
|
324
|
+
|
325
|
+
"@ethersproject/web@5.7.1", "@ethersproject/web@^5.7.0":
|
326
|
+
version "5.7.1"
|
327
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae"
|
328
|
+
integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==
|
329
|
+
dependencies:
|
330
|
+
"@ethersproject/base64" "^5.7.0"
|
331
|
+
"@ethersproject/bytes" "^5.7.0"
|
332
|
+
"@ethersproject/logger" "^5.7.0"
|
333
|
+
"@ethersproject/properties" "^5.7.0"
|
334
|
+
"@ethersproject/strings" "^5.7.0"
|
335
|
+
|
336
|
+
"@ethersproject/wordlists@5.7.0", "@ethersproject/wordlists@^5.7.0":
|
337
|
+
version "5.7.0"
|
338
|
+
resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5"
|
339
|
+
integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==
|
340
|
+
dependencies:
|
341
|
+
"@ethersproject/bytes" "^5.7.0"
|
342
|
+
"@ethersproject/hash" "^5.7.0"
|
343
|
+
"@ethersproject/logger" "^5.7.0"
|
344
|
+
"@ethersproject/properties" "^5.7.0"
|
345
|
+
"@ethersproject/strings" "^5.7.0"
|
346
|
+
|
347
|
+
"@iden3/bigarray@0.0.2":
|
348
|
+
version "0.0.2"
|
349
|
+
resolved "https://registry.yarnpkg.com/@iden3/bigarray/-/bigarray-0.0.2.tgz#6fc4ba5be18daf8a26ee393f2fb62b80d98c05e9"
|
350
|
+
integrity sha512-Xzdyxqm1bOFF6pdIsiHLLl3HkSLjbhqJHVyqaTxXt3RqXBEnmsUmEW47H7VOi/ak7TdkRpNkxjyK5Zbkm+y52g==
|
351
|
+
|
352
|
+
"@iden3/binfileutils@0.0.11":
|
353
|
+
version "0.0.11"
|
354
|
+
resolved "https://registry.yarnpkg.com/@iden3/binfileutils/-/binfileutils-0.0.11.tgz#9ffbbcc1279f2b2182bb6dcff4eee8a5b2167911"
|
355
|
+
integrity sha512-LylnJoZ0CTdgErnKY8OxohvW4K+p6UHD3sxt+3P9AmMyBQjYR4IpoqoYZZ+9aMj89cmCQ21UvdhndAx04er3NA==
|
356
|
+
dependencies:
|
357
|
+
fastfile "0.0.20"
|
358
|
+
ffjavascript "^0.2.48"
|
359
|
+
|
360
|
+
aes-js@3.0.0:
|
361
|
+
version "3.0.0"
|
362
|
+
resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d"
|
363
|
+
integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==
|
364
|
+
|
365
|
+
ansi-styles@^4.1.0:
|
366
|
+
version "4.3.0"
|
367
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
368
|
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
369
|
+
dependencies:
|
370
|
+
color-convert "^2.0.1"
|
371
|
+
|
372
|
+
async@^3.2.3:
|
373
|
+
version "3.2.5"
|
374
|
+
resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66"
|
375
|
+
integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==
|
376
|
+
|
377
|
+
b4a@^1.0.1:
|
378
|
+
version "1.6.4"
|
379
|
+
resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9"
|
380
|
+
integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==
|
381
|
+
|
382
|
+
balanced-match@^1.0.0:
|
383
|
+
version "1.0.2"
|
384
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
385
|
+
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
386
|
+
|
387
|
+
bech32@1.1.4:
|
388
|
+
version "1.1.4"
|
389
|
+
resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9"
|
390
|
+
integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==
|
391
|
+
|
392
|
+
bfj@^7.0.2:
|
393
|
+
version "7.1.0"
|
394
|
+
resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.1.0.tgz#c5177d522103f9040e1b12980fe8c38cf41d3f8b"
|
395
|
+
integrity sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==
|
396
|
+
dependencies:
|
397
|
+
bluebird "^3.7.2"
|
398
|
+
check-types "^11.2.3"
|
399
|
+
hoopy "^0.1.4"
|
400
|
+
jsonpath "^1.1.1"
|
401
|
+
tryer "^1.0.1"
|
402
|
+
|
403
|
+
blake-hash@^2.0.0:
|
404
|
+
version "2.0.0"
|
405
|
+
resolved "https://registry.yarnpkg.com/blake-hash/-/blake-hash-2.0.0.tgz#af184dce641951126d05b7d1c3de3224f538d66e"
|
406
|
+
integrity sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==
|
407
|
+
dependencies:
|
408
|
+
node-addon-api "^3.0.0"
|
409
|
+
node-gyp-build "^4.2.2"
|
410
|
+
readable-stream "^3.6.0"
|
411
|
+
|
412
|
+
blake2b-wasm@^2.4.0:
|
413
|
+
version "2.4.0"
|
414
|
+
resolved "https://registry.yarnpkg.com/blake2b-wasm/-/blake2b-wasm-2.4.0.tgz#9115649111edbbd87eb24ce7c04b427e4e2be5be"
|
415
|
+
integrity sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==
|
416
|
+
dependencies:
|
417
|
+
b4a "^1.0.1"
|
418
|
+
nanoassert "^2.0.0"
|
419
|
+
|
420
|
+
blake2b@^2.1.3:
|
421
|
+
version "2.1.4"
|
422
|
+
resolved "https://registry.yarnpkg.com/blake2b/-/blake2b-2.1.4.tgz#817d278526ddb4cd673bfb1af16d1ad61e393ba3"
|
423
|
+
integrity sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==
|
424
|
+
dependencies:
|
425
|
+
blake2b-wasm "^2.4.0"
|
426
|
+
nanoassert "^2.0.0"
|
427
|
+
|
428
|
+
bluebird@^3.7.2:
|
429
|
+
version "3.7.2"
|
430
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
|
431
|
+
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
|
432
|
+
|
433
|
+
bn.js@^4.11.9:
|
434
|
+
version "4.12.0"
|
435
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
|
436
|
+
integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
|
437
|
+
|
438
|
+
bn.js@^5.2.1:
|
439
|
+
version "5.2.1"
|
440
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
|
441
|
+
integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
|
442
|
+
|
443
|
+
brace-expansion@^1.1.7:
|
444
|
+
version "1.1.11"
|
445
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
446
|
+
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
|
447
|
+
dependencies:
|
448
|
+
balanced-match "^1.0.0"
|
449
|
+
concat-map "0.0.1"
|
450
|
+
|
451
|
+
brace-expansion@^2.0.1:
|
452
|
+
version "2.0.1"
|
453
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
|
454
|
+
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
|
455
|
+
dependencies:
|
456
|
+
balanced-match "^1.0.0"
|
457
|
+
|
458
|
+
brorand@^1.1.0:
|
459
|
+
version "1.1.0"
|
460
|
+
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
461
|
+
integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
|
462
|
+
|
463
|
+
chalk@^4.0.2:
|
464
|
+
version "4.1.2"
|
465
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
|
466
|
+
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
|
467
|
+
dependencies:
|
468
|
+
ansi-styles "^4.1.0"
|
469
|
+
supports-color "^7.1.0"
|
470
|
+
|
471
|
+
check-types@^11.2.3:
|
472
|
+
version "11.2.3"
|
473
|
+
resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71"
|
474
|
+
integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==
|
475
|
+
|
476
|
+
circom_runtime@0.1.24:
|
477
|
+
version "0.1.24"
|
478
|
+
resolved "https://registry.yarnpkg.com/circom_runtime/-/circom_runtime-0.1.24.tgz#60ca8a31c3675802fbab5a0bcdeb02556e510733"
|
479
|
+
integrity sha512-H7/7I2J/cBmRnZm9docOCGhfxzS61BEm4TMCWcrZGsWNBQhePNfQq88Oj2XpUfzmBTCd8pRvRb3Mvazt3TMrJw==
|
480
|
+
dependencies:
|
481
|
+
ffjavascript "0.2.60"
|
482
|
+
|
483
|
+
color-convert@^2.0.1:
|
484
|
+
version "2.0.1"
|
485
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
486
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
487
|
+
dependencies:
|
488
|
+
color-name "~1.1.4"
|
489
|
+
|
490
|
+
color-name@~1.1.4:
|
491
|
+
version "1.1.4"
|
492
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
493
|
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
494
|
+
|
495
|
+
concat-map@0.0.1:
|
496
|
+
version "0.0.1"
|
497
|
+
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
498
|
+
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
|
499
|
+
|
500
|
+
deep-is@~0.1.3:
|
501
|
+
version "0.1.4"
|
502
|
+
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
|
503
|
+
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
|
504
|
+
|
505
|
+
ejs@^3.1.6:
|
506
|
+
version "3.1.9"
|
507
|
+
resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361"
|
508
|
+
integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==
|
509
|
+
dependencies:
|
510
|
+
jake "^10.8.5"
|
511
|
+
|
512
|
+
elliptic@6.5.4:
|
513
|
+
version "6.5.4"
|
514
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
|
515
|
+
integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
|
516
|
+
dependencies:
|
517
|
+
bn.js "^4.11.9"
|
518
|
+
brorand "^1.1.0"
|
519
|
+
hash.js "^1.0.0"
|
520
|
+
hmac-drbg "^1.0.1"
|
521
|
+
inherits "^2.0.4"
|
522
|
+
minimalistic-assert "^1.0.1"
|
523
|
+
minimalistic-crypto-utils "^1.0.1"
|
524
|
+
|
525
|
+
escodegen@^1.8.1:
|
526
|
+
version "1.14.3"
|
527
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
|
528
|
+
integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
|
529
|
+
dependencies:
|
530
|
+
esprima "^4.0.1"
|
531
|
+
estraverse "^4.2.0"
|
532
|
+
esutils "^2.0.2"
|
533
|
+
optionator "^0.8.1"
|
534
|
+
optionalDependencies:
|
535
|
+
source-map "~0.6.1"
|
536
|
+
|
537
|
+
esprima@1.2.2:
|
538
|
+
version "1.2.2"
|
539
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.2.tgz#76a0fd66fcfe154fd292667dc264019750b1657b"
|
540
|
+
integrity sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==
|
541
|
+
|
542
|
+
esprima@^4.0.1:
|
543
|
+
version "4.0.1"
|
544
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
545
|
+
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
546
|
+
|
547
|
+
estraverse@^4.2.0:
|
548
|
+
version "4.3.0"
|
549
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
550
|
+
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
551
|
+
|
552
|
+
esutils@^2.0.2:
|
553
|
+
version "2.0.3"
|
554
|
+
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
555
|
+
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
556
|
+
|
557
|
+
ethers@^5.5.1:
|
558
|
+
version "5.7.2"
|
559
|
+
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e"
|
560
|
+
integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==
|
561
|
+
dependencies:
|
562
|
+
"@ethersproject/abi" "5.7.0"
|
563
|
+
"@ethersproject/abstract-provider" "5.7.0"
|
564
|
+
"@ethersproject/abstract-signer" "5.7.0"
|
565
|
+
"@ethersproject/address" "5.7.0"
|
566
|
+
"@ethersproject/base64" "5.7.0"
|
567
|
+
"@ethersproject/basex" "5.7.0"
|
568
|
+
"@ethersproject/bignumber" "5.7.0"
|
569
|
+
"@ethersproject/bytes" "5.7.0"
|
570
|
+
"@ethersproject/constants" "5.7.0"
|
571
|
+
"@ethersproject/contracts" "5.7.0"
|
572
|
+
"@ethersproject/hash" "5.7.0"
|
573
|
+
"@ethersproject/hdnode" "5.7.0"
|
574
|
+
"@ethersproject/json-wallets" "5.7.0"
|
575
|
+
"@ethersproject/keccak256" "5.7.0"
|
576
|
+
"@ethersproject/logger" "5.7.0"
|
577
|
+
"@ethersproject/networks" "5.7.1"
|
578
|
+
"@ethersproject/pbkdf2" "5.7.0"
|
579
|
+
"@ethersproject/properties" "5.7.0"
|
580
|
+
"@ethersproject/providers" "5.7.2"
|
581
|
+
"@ethersproject/random" "5.7.0"
|
582
|
+
"@ethersproject/rlp" "5.7.0"
|
583
|
+
"@ethersproject/sha2" "5.7.0"
|
584
|
+
"@ethersproject/signing-key" "5.7.0"
|
585
|
+
"@ethersproject/solidity" "5.7.0"
|
586
|
+
"@ethersproject/strings" "5.7.0"
|
587
|
+
"@ethersproject/transactions" "5.7.0"
|
588
|
+
"@ethersproject/units" "5.7.0"
|
589
|
+
"@ethersproject/wallet" "5.7.0"
|
590
|
+
"@ethersproject/web" "5.7.1"
|
591
|
+
"@ethersproject/wordlists" "5.7.0"
|
592
|
+
|
593
|
+
fast-levenshtein@~2.0.6:
|
594
|
+
version "2.0.6"
|
595
|
+
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
596
|
+
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
|
597
|
+
|
598
|
+
fastfile@0.0.20:
|
599
|
+
version "0.0.20"
|
600
|
+
resolved "https://registry.yarnpkg.com/fastfile/-/fastfile-0.0.20.tgz#794a143d58cfda2e24c298e5ef619c748c8a1879"
|
601
|
+
integrity sha512-r5ZDbgImvVWCP0lA/cGNgQcZqR+aYdFx3u+CtJqUE510pBUVGMn4ulL/iRTI4tACTYsNJ736uzFxEBXesPAktA==
|
602
|
+
|
603
|
+
ffjavascript@0.2.60:
|
604
|
+
version "0.2.60"
|
605
|
+
resolved "https://registry.yarnpkg.com/ffjavascript/-/ffjavascript-0.2.60.tgz#4d8ae613d6bf4e98b3cc29ba10c626f5853854cf"
|
606
|
+
integrity sha512-T/9bnEL5xAZRDbQoEMf+pM9nrhK+C3JyZNmqiWub26EQorW7Jt+jR54gpqDhceA4Nj0YctPQwYnl8xa52/A26A==
|
607
|
+
dependencies:
|
608
|
+
wasmbuilder "0.0.16"
|
609
|
+
wasmcurves "0.2.2"
|
610
|
+
web-worker "^1.2.0"
|
611
|
+
|
612
|
+
ffjavascript@0.2.63, ffjavascript@^0.2.45, ffjavascript@^0.2.48:
|
613
|
+
version "0.2.63"
|
614
|
+
resolved "https://registry.yarnpkg.com/ffjavascript/-/ffjavascript-0.2.63.tgz#0c1216a1f123dc9181df69e144473704d2f115eb"
|
615
|
+
integrity sha512-dBgdsfGks58b66JnUZeZpGxdMIDQ4QsD3VYlRJyFVrKQHb2kJy4R2gufx5oetrTxXPT+aEjg0dOvOLg1N0on4A==
|
616
|
+
dependencies:
|
617
|
+
wasmbuilder "0.0.16"
|
618
|
+
wasmcurves "0.2.2"
|
619
|
+
web-worker "1.2.0"
|
620
|
+
|
621
|
+
filelist@^1.0.4:
|
622
|
+
version "1.0.4"
|
623
|
+
resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
|
624
|
+
integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==
|
625
|
+
dependencies:
|
626
|
+
minimatch "^5.0.1"
|
627
|
+
|
628
|
+
has-flag@^4.0.0:
|
629
|
+
version "4.0.0"
|
630
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
631
|
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
632
|
+
|
633
|
+
hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3:
|
634
|
+
version "1.1.7"
|
635
|
+
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
|
636
|
+
integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
|
637
|
+
dependencies:
|
638
|
+
inherits "^2.0.3"
|
639
|
+
minimalistic-assert "^1.0.1"
|
640
|
+
|
641
|
+
hmac-drbg@^1.0.1:
|
642
|
+
version "1.0.1"
|
643
|
+
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
644
|
+
integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==
|
645
|
+
dependencies:
|
646
|
+
hash.js "^1.0.3"
|
647
|
+
minimalistic-assert "^1.0.0"
|
648
|
+
minimalistic-crypto-utils "^1.0.1"
|
649
|
+
|
650
|
+
hoopy@^0.1.4:
|
651
|
+
version "0.1.4"
|
652
|
+
resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d"
|
653
|
+
integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
|
654
|
+
|
655
|
+
inherits@^2.0.3, inherits@^2.0.4:
|
656
|
+
version "2.0.4"
|
657
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
658
|
+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
659
|
+
|
660
|
+
jake@^10.8.5:
|
661
|
+
version "10.8.7"
|
662
|
+
resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f"
|
663
|
+
integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==
|
664
|
+
dependencies:
|
665
|
+
async "^3.2.3"
|
666
|
+
chalk "^4.0.2"
|
667
|
+
filelist "^1.0.4"
|
668
|
+
minimatch "^3.1.2"
|
669
|
+
|
670
|
+
js-sha3@0.8.0, js-sha3@^0.8.0:
|
671
|
+
version "0.8.0"
|
672
|
+
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
|
673
|
+
integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==
|
674
|
+
|
675
|
+
jsonpath@^1.1.1:
|
676
|
+
version "1.1.1"
|
677
|
+
resolved "https://registry.yarnpkg.com/jsonpath/-/jsonpath-1.1.1.tgz#0ca1ed8fb65bb3309248cc9d5466d12d5b0b9901"
|
678
|
+
integrity sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==
|
679
|
+
dependencies:
|
680
|
+
esprima "1.2.2"
|
681
|
+
static-eval "2.0.2"
|
682
|
+
underscore "1.12.1"
|
683
|
+
|
684
|
+
levn@~0.3.0:
|
685
|
+
version "0.3.0"
|
686
|
+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
687
|
+
integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
|
688
|
+
dependencies:
|
689
|
+
prelude-ls "~1.1.2"
|
690
|
+
type-check "~0.3.2"
|
691
|
+
|
692
|
+
logplease@^1.2.15:
|
693
|
+
version "1.2.15"
|
694
|
+
resolved "https://registry.yarnpkg.com/logplease/-/logplease-1.2.15.tgz#3da442e93751a5992cc19010a826b08d0293c48a"
|
695
|
+
integrity sha512-jLlHnlsPSJjpwUfcNyUxXCl33AYg2cHhIf9QhGL2T4iPT0XPB+xP1LRKFPgIg1M/sg9kAJvy94w9CzBNrfnstA==
|
696
|
+
|
697
|
+
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
|
698
|
+
version "1.0.1"
|
699
|
+
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
|
700
|
+
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
|
701
|
+
|
702
|
+
minimalistic-crypto-utils@^1.0.1:
|
703
|
+
version "1.0.1"
|
704
|
+
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
705
|
+
integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
|
706
|
+
|
707
|
+
minimatch@^3.1.2:
|
708
|
+
version "3.1.2"
|
709
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
|
710
|
+
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
|
711
|
+
dependencies:
|
712
|
+
brace-expansion "^1.1.7"
|
713
|
+
|
714
|
+
minimatch@^5.0.1:
|
715
|
+
version "5.1.6"
|
716
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
|
717
|
+
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
|
718
|
+
dependencies:
|
719
|
+
brace-expansion "^2.0.1"
|
720
|
+
|
721
|
+
nanoassert@^2.0.0:
|
722
|
+
version "2.0.0"
|
723
|
+
resolved "https://registry.yarnpkg.com/nanoassert/-/nanoassert-2.0.0.tgz#a05f86de6c7a51618038a620f88878ed1e490c09"
|
724
|
+
integrity sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==
|
725
|
+
|
726
|
+
node-addon-api@^3.0.0:
|
727
|
+
version "3.2.1"
|
728
|
+
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161"
|
729
|
+
integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==
|
730
|
+
|
731
|
+
node-gyp-build@^4.2.2:
|
732
|
+
version "4.8.0"
|
733
|
+
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.0.tgz#3fee9c1731df4581a3f9ead74664369ff00d26dd"
|
734
|
+
integrity sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==
|
735
|
+
|
736
|
+
optionator@^0.8.1:
|
737
|
+
version "0.8.3"
|
738
|
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
739
|
+
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
|
740
|
+
dependencies:
|
741
|
+
deep-is "~0.1.3"
|
742
|
+
fast-levenshtein "~2.0.6"
|
743
|
+
levn "~0.3.0"
|
744
|
+
prelude-ls "~1.1.2"
|
745
|
+
type-check "~0.3.2"
|
746
|
+
word-wrap "~1.2.3"
|
747
|
+
|
748
|
+
prelude-ls@~1.1.2:
|
749
|
+
version "1.1.2"
|
750
|
+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
751
|
+
integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
|
752
|
+
|
753
|
+
r1csfile@0.0.47:
|
754
|
+
version "0.0.47"
|
755
|
+
resolved "https://registry.yarnpkg.com/r1csfile/-/r1csfile-0.0.47.tgz#ed95a0dc8e910e9c070253906f7a31bd8c5333c8"
|
756
|
+
integrity sha512-oI4mAwuh1WwuFg95eJDNDDL8hCaZkwnPuNZrQdLBWvDoRU7EG+L/MOHL7SwPW2Y+ZuYcTLpj3rBkgllBQZN/JA==
|
757
|
+
dependencies:
|
758
|
+
"@iden3/bigarray" "0.0.2"
|
759
|
+
"@iden3/binfileutils" "0.0.11"
|
760
|
+
fastfile "0.0.20"
|
761
|
+
ffjavascript "0.2.60"
|
762
|
+
|
763
|
+
ramda@^0.29.1:
|
764
|
+
version "0.29.1"
|
765
|
+
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.29.1.tgz#408a6165b9555b7ba2fc62555804b6c5a2eca196"
|
766
|
+
integrity sha512-OfxIeWzd4xdUNxlWhgFazxsA/nl3mS4/jGZI5n00uWOoSSFRhC1b6gl6xvmzUamgmqELraWp0J/qqVlXYPDPyA==
|
767
|
+
|
768
|
+
readable-stream@^3.6.0:
|
769
|
+
version "3.6.2"
|
770
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
|
771
|
+
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
|
772
|
+
dependencies:
|
773
|
+
inherits "^2.0.3"
|
774
|
+
string_decoder "^1.1.1"
|
775
|
+
util-deprecate "^1.0.1"
|
776
|
+
|
777
|
+
safe-buffer@~5.2.0:
|
778
|
+
version "5.2.1"
|
779
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
780
|
+
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
781
|
+
|
782
|
+
scrypt-js@3.0.1:
|
783
|
+
version "3.0.1"
|
784
|
+
resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312"
|
785
|
+
integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==
|
786
|
+
|
787
|
+
snarkjs@^0.7.3:
|
788
|
+
version "0.7.3"
|
789
|
+
resolved "https://registry.yarnpkg.com/snarkjs/-/snarkjs-0.7.3.tgz#7f703d05b810235255f2d0a70d8a9b8b3ea916e5"
|
790
|
+
integrity sha512-cDLpWqdqEJSCQNc+cXYX1XTKdUZBtYEisuOsgmXf/HUsN5WmGN+FO7HfCS+cMQT1Nzbm1a9gAEpKH6KRtDtS1Q==
|
791
|
+
dependencies:
|
792
|
+
"@iden3/binfileutils" "0.0.11"
|
793
|
+
bfj "^7.0.2"
|
794
|
+
blake2b-wasm "^2.4.0"
|
795
|
+
circom_runtime "0.1.24"
|
796
|
+
ejs "^3.1.6"
|
797
|
+
fastfile "0.0.20"
|
798
|
+
ffjavascript "0.2.63"
|
799
|
+
js-sha3 "^0.8.0"
|
800
|
+
logplease "^1.2.15"
|
801
|
+
r1csfile "0.0.47"
|
802
|
+
|
803
|
+
source-map@~0.6.1:
|
804
|
+
version "0.6.1"
|
805
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
806
|
+
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
807
|
+
|
808
|
+
static-eval@2.0.2:
|
809
|
+
version "2.0.2"
|
810
|
+
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.2.tgz#2d1759306b1befa688938454c546b7871f806a42"
|
811
|
+
integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==
|
812
|
+
dependencies:
|
813
|
+
escodegen "^1.8.1"
|
814
|
+
|
815
|
+
string_decoder@^1.1.1:
|
816
|
+
version "1.3.0"
|
817
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
|
818
|
+
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
|
819
|
+
dependencies:
|
820
|
+
safe-buffer "~5.2.0"
|
821
|
+
|
822
|
+
supports-color@^7.1.0:
|
823
|
+
version "7.2.0"
|
824
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
825
|
+
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
826
|
+
dependencies:
|
827
|
+
has-flag "^4.0.0"
|
828
|
+
|
829
|
+
tryer@^1.0.1:
|
830
|
+
version "1.0.1"
|
831
|
+
resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8"
|
832
|
+
integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
|
833
|
+
|
834
|
+
type-check@~0.3.2:
|
835
|
+
version "0.3.2"
|
836
|
+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
|
837
|
+
integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
|
838
|
+
dependencies:
|
839
|
+
prelude-ls "~1.1.2"
|
840
|
+
|
841
|
+
underscore@1.12.1:
|
842
|
+
version "1.12.1"
|
843
|
+
resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e"
|
844
|
+
integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
|
845
|
+
|
846
|
+
util-deprecate@^1.0.1:
|
847
|
+
version "1.0.2"
|
848
|
+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
849
|
+
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
|
850
|
+
|
851
|
+
wasmbuilder@0.0.16:
|
852
|
+
version "0.0.16"
|
853
|
+
resolved "https://registry.yarnpkg.com/wasmbuilder/-/wasmbuilder-0.0.16.tgz#f34c1f2c047d2f6e1065cbfec5603988f16d8549"
|
854
|
+
integrity sha512-Qx3lEFqaVvp1cEYW7Bfi+ebRJrOiwz2Ieu7ZG2l7YyeSJIok/reEQCQCuicj/Y32ITIJuGIM9xZQppGx5LrQdA==
|
855
|
+
|
856
|
+
wasmcurves@0.2.2:
|
857
|
+
version "0.2.2"
|
858
|
+
resolved "https://registry.yarnpkg.com/wasmcurves/-/wasmcurves-0.2.2.tgz#ca444f6a6f6e2a5cbe6629d98ff478a62b4ccb2b"
|
859
|
+
integrity sha512-JRY908NkmKjFl4ytnTu5ED6AwPD+8VJ9oc94kdq7h5bIwbj0L4TDJ69mG+2aLs2SoCmGfqIesMWTEJjtYsoQXQ==
|
860
|
+
dependencies:
|
861
|
+
wasmbuilder "0.0.16"
|
862
|
+
|
863
|
+
web-worker@1.2.0:
|
864
|
+
version "1.2.0"
|
865
|
+
resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da"
|
866
|
+
integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==
|
867
|
+
|
868
|
+
web-worker@^1.2.0:
|
869
|
+
version "1.3.0"
|
870
|
+
resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.3.0.tgz#e5f2df5c7fe356755a5fb8f8410d4312627e6776"
|
871
|
+
integrity sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==
|
872
|
+
|
873
|
+
word-wrap@~1.2.3:
|
874
|
+
version "1.2.5"
|
875
|
+
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
|
876
|
+
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
|
877
|
+
|
878
|
+
ws@7.4.6:
|
879
|
+
version "7.4.6"
|
880
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
|
881
|
+
integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==
|