@openzeppelin/wizard 0.5.6 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/environments/hardhat/package-lock.json +1452 -1441
- package/dist/environments/hardhat/package.json +2 -2
- package/dist/environments/hardhat/upgradeable/package-lock.json +1099 -1399
- package/dist/environments/hardhat/upgradeable/package.json +3 -3
- package/dist/erc20.d.ts.map +1 -1
- package/dist/erc20.js +8 -13
- package/dist/erc20.js.map +1 -1
- package/dist/governor.d.ts.map +1 -1
- package/dist/governor.js +1 -5
- package/dist/governor.js.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/signer.d.ts +1 -8
- package/dist/signer.d.ts.map +1 -1
- package/dist/signer.js +56 -60
- package/dist/signer.js.map +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/dist/utils/version.js +1 -1
- package/dist/zip-hardhat.d.ts.map +1 -1
- package/dist/zip-hardhat.js +25 -5
- package/dist/zip-hardhat.js.map +1 -1
- package/package.json +4 -4
- package/src/environments/hardhat/package-lock.json +1452 -1441
- package/src/environments/hardhat/package.json +2 -2
- package/src/environments/hardhat/upgradeable/package-lock.json +1099 -1399
- package/src/environments/hardhat/upgradeable/package.json +3 -3
- package/src/erc20.ts +8 -20
- package/src/governor.ts +1 -6
- package/src/index.ts +8 -0
- package/src/signer.ts +59 -64
- package/src/utils/version.ts +1 -1
- package/src/zip-hardhat.ts +29 -5
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"version": "0.0.1",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@nomicfoundation/hardhat-toolbox": "^
|
|
13
|
-
"@openzeppelin/contracts": "^5.
|
|
14
|
-
"@openzeppelin/contracts-upgradeable": "^5.
|
|
12
|
+
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
|
|
13
|
+
"@openzeppelin/contracts": "^5.4.0",
|
|
14
|
+
"@openzeppelin/contracts-upgradeable": "^5.4.0",
|
|
15
15
|
"@openzeppelin/hardhat-upgrades": "^3.0.0",
|
|
16
16
|
"hardhat": "^2.16.1"
|
|
17
17
|
}
|
|
@@ -697,6 +697,18 @@
|
|
|
697
697
|
"dev": true,
|
|
698
698
|
"license": "(Apache-2.0 WITH LLVM-exception)"
|
|
699
699
|
},
|
|
700
|
+
"node_modules/@colors/colors": {
|
|
701
|
+
"version": "1.5.0",
|
|
702
|
+
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
703
|
+
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
|
|
704
|
+
"dev": true,
|
|
705
|
+
"license": "MIT",
|
|
706
|
+
"optional": true,
|
|
707
|
+
"peer": true,
|
|
708
|
+
"engines": {
|
|
709
|
+
"node": ">=0.1.90"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
700
712
|
"node_modules/@cspotcode/source-map-support": {
|
|
701
713
|
"version": "0.8.1",
|
|
702
714
|
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
|
@@ -905,32 +917,10 @@
|
|
|
905
917
|
"@ethersproject/bytes": "^5.7.0"
|
|
906
918
|
}
|
|
907
919
|
},
|
|
908
|
-
"node_modules/@ethersproject/basex": {
|
|
909
|
-
"version": "5.7.0",
|
|
910
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz",
|
|
911
|
-
"integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==",
|
|
912
|
-
"dev": true,
|
|
913
|
-
"funding": [
|
|
914
|
-
{
|
|
915
|
-
"type": "individual",
|
|
916
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"type": "individual",
|
|
920
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
921
|
-
}
|
|
922
|
-
],
|
|
923
|
-
"license": "MIT",
|
|
924
|
-
"peer": true,
|
|
925
|
-
"dependencies": {
|
|
926
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
927
|
-
"@ethersproject/properties": "^5.7.0"
|
|
928
|
-
}
|
|
929
|
-
},
|
|
930
920
|
"node_modules/@ethersproject/bignumber": {
|
|
931
|
-
"version": "5.
|
|
932
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.
|
|
933
|
-
"integrity": "sha512-
|
|
921
|
+
"version": "5.8.0",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz",
|
|
923
|
+
"integrity": "sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==",
|
|
934
924
|
"dev": true,
|
|
935
925
|
"funding": [
|
|
936
926
|
{
|
|
@@ -944,15 +934,15 @@
|
|
|
944
934
|
],
|
|
945
935
|
"license": "MIT",
|
|
946
936
|
"dependencies": {
|
|
947
|
-
"@ethersproject/bytes": "^5.
|
|
948
|
-
"@ethersproject/logger": "^5.
|
|
937
|
+
"@ethersproject/bytes": "^5.8.0",
|
|
938
|
+
"@ethersproject/logger": "^5.8.0",
|
|
949
939
|
"bn.js": "^5.2.1"
|
|
950
940
|
}
|
|
951
941
|
},
|
|
952
942
|
"node_modules/@ethersproject/bytes": {
|
|
953
|
-
"version": "5.
|
|
954
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.
|
|
955
|
-
"integrity": "sha512-
|
|
943
|
+
"version": "5.8.0",
|
|
944
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz",
|
|
945
|
+
"integrity": "sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==",
|
|
956
946
|
"dev": true,
|
|
957
947
|
"funding": [
|
|
958
948
|
{
|
|
@@ -966,13 +956,13 @@
|
|
|
966
956
|
],
|
|
967
957
|
"license": "MIT",
|
|
968
958
|
"dependencies": {
|
|
969
|
-
"@ethersproject/logger": "^5.
|
|
959
|
+
"@ethersproject/logger": "^5.8.0"
|
|
970
960
|
}
|
|
971
961
|
},
|
|
972
962
|
"node_modules/@ethersproject/constants": {
|
|
973
|
-
"version": "5.
|
|
974
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.
|
|
975
|
-
"integrity": "sha512-
|
|
963
|
+
"version": "5.8.0",
|
|
964
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz",
|
|
965
|
+
"integrity": "sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==",
|
|
976
966
|
"dev": true,
|
|
977
967
|
"funding": [
|
|
978
968
|
{
|
|
@@ -986,37 +976,7 @@
|
|
|
986
976
|
],
|
|
987
977
|
"license": "MIT",
|
|
988
978
|
"dependencies": {
|
|
989
|
-
"@ethersproject/bignumber": "^5.
|
|
990
|
-
}
|
|
991
|
-
},
|
|
992
|
-
"node_modules/@ethersproject/contracts": {
|
|
993
|
-
"version": "5.7.0",
|
|
994
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz",
|
|
995
|
-
"integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==",
|
|
996
|
-
"dev": true,
|
|
997
|
-
"funding": [
|
|
998
|
-
{
|
|
999
|
-
"type": "individual",
|
|
1000
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"type": "individual",
|
|
1004
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1005
|
-
}
|
|
1006
|
-
],
|
|
1007
|
-
"license": "MIT",
|
|
1008
|
-
"peer": true,
|
|
1009
|
-
"dependencies": {
|
|
1010
|
-
"@ethersproject/abi": "^5.7.0",
|
|
1011
|
-
"@ethersproject/abstract-provider": "^5.7.0",
|
|
1012
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
1013
|
-
"@ethersproject/address": "^5.7.0",
|
|
1014
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1015
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1016
|
-
"@ethersproject/constants": "^5.7.0",
|
|
1017
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1018
|
-
"@ethersproject/properties": "^5.7.0",
|
|
1019
|
-
"@ethersproject/transactions": "^5.7.0"
|
|
979
|
+
"@ethersproject/bignumber": "^5.8.0"
|
|
1020
980
|
}
|
|
1021
981
|
},
|
|
1022
982
|
"node_modules/@ethersproject/hash": {
|
|
@@ -1047,79 +1007,6 @@
|
|
|
1047
1007
|
"@ethersproject/strings": "^5.7.0"
|
|
1048
1008
|
}
|
|
1049
1009
|
},
|
|
1050
|
-
"node_modules/@ethersproject/hdnode": {
|
|
1051
|
-
"version": "5.7.0",
|
|
1052
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz",
|
|
1053
|
-
"integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==",
|
|
1054
|
-
"dev": true,
|
|
1055
|
-
"funding": [
|
|
1056
|
-
{
|
|
1057
|
-
"type": "individual",
|
|
1058
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1059
|
-
},
|
|
1060
|
-
{
|
|
1061
|
-
"type": "individual",
|
|
1062
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1063
|
-
}
|
|
1064
|
-
],
|
|
1065
|
-
"license": "MIT",
|
|
1066
|
-
"peer": true,
|
|
1067
|
-
"dependencies": {
|
|
1068
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
1069
|
-
"@ethersproject/basex": "^5.7.0",
|
|
1070
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1071
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1072
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1073
|
-
"@ethersproject/pbkdf2": "^5.7.0",
|
|
1074
|
-
"@ethersproject/properties": "^5.7.0",
|
|
1075
|
-
"@ethersproject/sha2": "^5.7.0",
|
|
1076
|
-
"@ethersproject/signing-key": "^5.7.0",
|
|
1077
|
-
"@ethersproject/strings": "^5.7.0",
|
|
1078
|
-
"@ethersproject/transactions": "^5.7.0",
|
|
1079
|
-
"@ethersproject/wordlists": "^5.7.0"
|
|
1080
|
-
}
|
|
1081
|
-
},
|
|
1082
|
-
"node_modules/@ethersproject/json-wallets": {
|
|
1083
|
-
"version": "5.7.0",
|
|
1084
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz",
|
|
1085
|
-
"integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==",
|
|
1086
|
-
"dev": true,
|
|
1087
|
-
"funding": [
|
|
1088
|
-
{
|
|
1089
|
-
"type": "individual",
|
|
1090
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"type": "individual",
|
|
1094
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1095
|
-
}
|
|
1096
|
-
],
|
|
1097
|
-
"license": "MIT",
|
|
1098
|
-
"peer": true,
|
|
1099
|
-
"dependencies": {
|
|
1100
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
1101
|
-
"@ethersproject/address": "^5.7.0",
|
|
1102
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1103
|
-
"@ethersproject/hdnode": "^5.7.0",
|
|
1104
|
-
"@ethersproject/keccak256": "^5.7.0",
|
|
1105
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1106
|
-
"@ethersproject/pbkdf2": "^5.7.0",
|
|
1107
|
-
"@ethersproject/properties": "^5.7.0",
|
|
1108
|
-
"@ethersproject/random": "^5.7.0",
|
|
1109
|
-
"@ethersproject/strings": "^5.7.0",
|
|
1110
|
-
"@ethersproject/transactions": "^5.7.0",
|
|
1111
|
-
"aes-js": "3.0.0",
|
|
1112
|
-
"scrypt-js": "3.0.1"
|
|
1113
|
-
}
|
|
1114
|
-
},
|
|
1115
|
-
"node_modules/@ethersproject/json-wallets/node_modules/aes-js": {
|
|
1116
|
-
"version": "3.0.0",
|
|
1117
|
-
"resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz",
|
|
1118
|
-
"integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==",
|
|
1119
|
-
"dev": true,
|
|
1120
|
-
"license": "MIT",
|
|
1121
|
-
"peer": true
|
|
1122
|
-
},
|
|
1123
1010
|
"node_modules/@ethersproject/keccak256": {
|
|
1124
1011
|
"version": "5.7.0",
|
|
1125
1012
|
"resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz",
|
|
@@ -1142,9 +1029,9 @@
|
|
|
1142
1029
|
}
|
|
1143
1030
|
},
|
|
1144
1031
|
"node_modules/@ethersproject/logger": {
|
|
1145
|
-
"version": "5.
|
|
1146
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.
|
|
1147
|
-
"integrity": "sha512-
|
|
1032
|
+
"version": "5.8.0",
|
|
1033
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz",
|
|
1034
|
+
"integrity": "sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==",
|
|
1148
1035
|
"dev": true,
|
|
1149
1036
|
"funding": [
|
|
1150
1037
|
{
|
|
@@ -1178,28 +1065,6 @@
|
|
|
1178
1065
|
"@ethersproject/logger": "^5.7.0"
|
|
1179
1066
|
}
|
|
1180
1067
|
},
|
|
1181
|
-
"node_modules/@ethersproject/pbkdf2": {
|
|
1182
|
-
"version": "5.7.0",
|
|
1183
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz",
|
|
1184
|
-
"integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==",
|
|
1185
|
-
"dev": true,
|
|
1186
|
-
"funding": [
|
|
1187
|
-
{
|
|
1188
|
-
"type": "individual",
|
|
1189
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"type": "individual",
|
|
1193
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1194
|
-
}
|
|
1195
|
-
],
|
|
1196
|
-
"license": "MIT",
|
|
1197
|
-
"peer": true,
|
|
1198
|
-
"dependencies": {
|
|
1199
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1200
|
-
"@ethersproject/sha2": "^5.7.0"
|
|
1201
|
-
}
|
|
1202
|
-
},
|
|
1203
1068
|
"node_modules/@ethersproject/properties": {
|
|
1204
1069
|
"version": "5.7.0",
|
|
1205
1070
|
"resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz",
|
|
@@ -1220,91 +1085,6 @@
|
|
|
1220
1085
|
"@ethersproject/logger": "^5.7.0"
|
|
1221
1086
|
}
|
|
1222
1087
|
},
|
|
1223
|
-
"node_modules/@ethersproject/providers": {
|
|
1224
|
-
"version": "5.7.2",
|
|
1225
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz",
|
|
1226
|
-
"integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==",
|
|
1227
|
-
"dev": true,
|
|
1228
|
-
"funding": [
|
|
1229
|
-
{
|
|
1230
|
-
"type": "individual",
|
|
1231
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1232
|
-
},
|
|
1233
|
-
{
|
|
1234
|
-
"type": "individual",
|
|
1235
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1236
|
-
}
|
|
1237
|
-
],
|
|
1238
|
-
"license": "MIT",
|
|
1239
|
-
"peer": true,
|
|
1240
|
-
"dependencies": {
|
|
1241
|
-
"@ethersproject/abstract-provider": "^5.7.0",
|
|
1242
|
-
"@ethersproject/abstract-signer": "^5.7.0",
|
|
1243
|
-
"@ethersproject/address": "^5.7.0",
|
|
1244
|
-
"@ethersproject/base64": "^5.7.0",
|
|
1245
|
-
"@ethersproject/basex": "^5.7.0",
|
|
1246
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1247
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1248
|
-
"@ethersproject/constants": "^5.7.0",
|
|
1249
|
-
"@ethersproject/hash": "^5.7.0",
|
|
1250
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1251
|
-
"@ethersproject/networks": "^5.7.0",
|
|
1252
|
-
"@ethersproject/properties": "^5.7.0",
|
|
1253
|
-
"@ethersproject/random": "^5.7.0",
|
|
1254
|
-
"@ethersproject/rlp": "^5.7.0",
|
|
1255
|
-
"@ethersproject/sha2": "^5.7.0",
|
|
1256
|
-
"@ethersproject/strings": "^5.7.0",
|
|
1257
|
-
"@ethersproject/transactions": "^5.7.0",
|
|
1258
|
-
"@ethersproject/web": "^5.7.0",
|
|
1259
|
-
"bech32": "1.1.4",
|
|
1260
|
-
"ws": "7.4.6"
|
|
1261
|
-
}
|
|
1262
|
-
},
|
|
1263
|
-
"node_modules/@ethersproject/providers/node_modules/ws": {
|
|
1264
|
-
"version": "7.4.6",
|
|
1265
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
|
|
1266
|
-
"integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
|
|
1267
|
-
"dev": true,
|
|
1268
|
-
"license": "MIT",
|
|
1269
|
-
"peer": true,
|
|
1270
|
-
"engines": {
|
|
1271
|
-
"node": ">=8.3.0"
|
|
1272
|
-
},
|
|
1273
|
-
"peerDependencies": {
|
|
1274
|
-
"bufferutil": "^4.0.1",
|
|
1275
|
-
"utf-8-validate": "^5.0.2"
|
|
1276
|
-
},
|
|
1277
|
-
"peerDependenciesMeta": {
|
|
1278
|
-
"bufferutil": {
|
|
1279
|
-
"optional": true
|
|
1280
|
-
},
|
|
1281
|
-
"utf-8-validate": {
|
|
1282
|
-
"optional": true
|
|
1283
|
-
}
|
|
1284
|
-
}
|
|
1285
|
-
},
|
|
1286
|
-
"node_modules/@ethersproject/random": {
|
|
1287
|
-
"version": "5.7.0",
|
|
1288
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz",
|
|
1289
|
-
"integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==",
|
|
1290
|
-
"dev": true,
|
|
1291
|
-
"funding": [
|
|
1292
|
-
{
|
|
1293
|
-
"type": "individual",
|
|
1294
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1295
|
-
},
|
|
1296
|
-
{
|
|
1297
|
-
"type": "individual",
|
|
1298
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1299
|
-
}
|
|
1300
|
-
],
|
|
1301
|
-
"license": "MIT",
|
|
1302
|
-
"peer": true,
|
|
1303
|
-
"dependencies": {
|
|
1304
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1305
|
-
"@ethersproject/logger": "^5.7.0"
|
|
1306
|
-
}
|
|
1307
|
-
},
|
|
1308
1088
|
"node_modules/@ethersproject/rlp": {
|
|
1309
1089
|
"version": "5.7.0",
|
|
1310
1090
|
"resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz",
|
|
@@ -1326,29 +1106,6 @@
|
|
|
1326
1106
|
"@ethersproject/logger": "^5.7.0"
|
|
1327
1107
|
}
|
|
1328
1108
|
},
|
|
1329
|
-
"node_modules/@ethersproject/sha2": {
|
|
1330
|
-
"version": "5.7.0",
|
|
1331
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz",
|
|
1332
|
-
"integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==",
|
|
1333
|
-
"dev": true,
|
|
1334
|
-
"funding": [
|
|
1335
|
-
{
|
|
1336
|
-
"type": "individual",
|
|
1337
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1338
|
-
},
|
|
1339
|
-
{
|
|
1340
|
-
"type": "individual",
|
|
1341
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1342
|
-
}
|
|
1343
|
-
],
|
|
1344
|
-
"license": "MIT",
|
|
1345
|
-
"peer": true,
|
|
1346
|
-
"dependencies": {
|
|
1347
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1348
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1349
|
-
"hash.js": "1.1.7"
|
|
1350
|
-
}
|
|
1351
|
-
},
|
|
1352
1109
|
"node_modules/@ethersproject/signing-key": {
|
|
1353
1110
|
"version": "5.7.0",
|
|
1354
1111
|
"resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz",
|
|
@@ -1374,32 +1131,6 @@
|
|
|
1374
1131
|
"hash.js": "1.1.7"
|
|
1375
1132
|
}
|
|
1376
1133
|
},
|
|
1377
|
-
"node_modules/@ethersproject/solidity": {
|
|
1378
|
-
"version": "5.7.0",
|
|
1379
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz",
|
|
1380
|
-
"integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==",
|
|
1381
|
-
"dev": true,
|
|
1382
|
-
"funding": [
|
|
1383
|
-
{
|
|
1384
|
-
"type": "individual",
|
|
1385
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"type": "individual",
|
|
1389
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1390
|
-
}
|
|
1391
|
-
],
|
|
1392
|
-
"license": "MIT",
|
|
1393
|
-
"peer": true,
|
|
1394
|
-
"dependencies": {
|
|
1395
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1396
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1397
|
-
"@ethersproject/keccak256": "^5.7.0",
|
|
1398
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1399
|
-
"@ethersproject/sha2": "^5.7.0",
|
|
1400
|
-
"@ethersproject/strings": "^5.7.0"
|
|
1401
|
-
}
|
|
1402
|
-
},
|
|
1403
1134
|
"node_modules/@ethersproject/strings": {
|
|
1404
1135
|
"version": "5.7.0",
|
|
1405
1136
|
"resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz",
|
|
@@ -1451,32 +1182,9 @@
|
|
|
1451
1182
|
}
|
|
1452
1183
|
},
|
|
1453
1184
|
"node_modules/@ethersproject/units": {
|
|
1454
|
-
"version": "5.
|
|
1455
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.
|
|
1456
|
-
"integrity": "sha512-
|
|
1457
|
-
"dev": true,
|
|
1458
|
-
"funding": [
|
|
1459
|
-
{
|
|
1460
|
-
"type": "individual",
|
|
1461
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
"type": "individual",
|
|
1465
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1466
|
-
}
|
|
1467
|
-
],
|
|
1468
|
-
"license": "MIT",
|
|
1469
|
-
"peer": true,
|
|
1470
|
-
"dependencies": {
|
|
1471
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1472
|
-
"@ethersproject/constants": "^5.7.0",
|
|
1473
|
-
"@ethersproject/logger": "^5.7.0"
|
|
1474
|
-
}
|
|
1475
|
-
},
|
|
1476
|
-
"node_modules/@ethersproject/wallet": {
|
|
1477
|
-
"version": "5.7.0",
|
|
1478
|
-
"resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz",
|
|
1479
|
-
"integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==",
|
|
1185
|
+
"version": "5.8.0",
|
|
1186
|
+
"resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.8.0.tgz",
|
|
1187
|
+
"integrity": "sha512-lxq0CAnc5kMGIiWW4Mr041VT8IhNM+Pn5T3haO74XZWFulk7wH1Gv64HqE96hT4a7iiNMdOCFEBgaxWuk8ETKQ==",
|
|
1480
1188
|
"dev": true,
|
|
1481
1189
|
"funding": [
|
|
1482
1190
|
{
|
|
@@ -1491,21 +1199,9 @@
|
|
|
1491
1199
|
"license": "MIT",
|
|
1492
1200
|
"peer": true,
|
|
1493
1201
|
"dependencies": {
|
|
1494
|
-
"@ethersproject/
|
|
1495
|
-
"@ethersproject/
|
|
1496
|
-
"@ethersproject/
|
|
1497
|
-
"@ethersproject/bignumber": "^5.7.0",
|
|
1498
|
-
"@ethersproject/bytes": "^5.7.0",
|
|
1499
|
-
"@ethersproject/hash": "^5.7.0",
|
|
1500
|
-
"@ethersproject/hdnode": "^5.7.0",
|
|
1501
|
-
"@ethersproject/json-wallets": "^5.7.0",
|
|
1502
|
-
"@ethersproject/keccak256": "^5.7.0",
|
|
1503
|
-
"@ethersproject/logger": "^5.7.0",
|
|
1504
|
-
"@ethersproject/properties": "^5.7.0",
|
|
1505
|
-
"@ethersproject/random": "^5.7.0",
|
|
1506
|
-
"@ethersproject/signing-key": "^5.7.0",
|
|
1507
|
-
"@ethersproject/transactions": "^5.7.0",
|
|
1508
|
-
"@ethersproject/wordlists": "^5.7.0"
|
|
1202
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
1203
|
+
"@ethersproject/constants": "^5.8.0",
|
|
1204
|
+
"@ethersproject/logger": "^5.8.0"
|
|
1509
1205
|
}
|
|
1510
1206
|
},
|
|
1511
1207
|
"node_modules/@ethersproject/web": {
|
|
@@ -1532,39 +1228,124 @@
|
|
|
1532
1228
|
"@ethersproject/strings": "^5.7.0"
|
|
1533
1229
|
}
|
|
1534
1230
|
},
|
|
1535
|
-
"node_modules/@
|
|
1536
|
-
"version": "
|
|
1537
|
-
"resolved": "https://registry.npmjs.org/@
|
|
1538
|
-
"integrity": "sha512-
|
|
1231
|
+
"node_modules/@fastify/busboy": {
|
|
1232
|
+
"version": "2.1.1",
|
|
1233
|
+
"resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz",
|
|
1234
|
+
"integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==",
|
|
1539
1235
|
"dev": true,
|
|
1540
|
-
"funding": [
|
|
1541
|
-
{
|
|
1542
|
-
"type": "individual",
|
|
1543
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
1544
|
-
},
|
|
1545
|
-
{
|
|
1546
|
-
"type": "individual",
|
|
1547
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1548
|
-
}
|
|
1549
|
-
],
|
|
1550
1236
|
"license": "MIT",
|
|
1237
|
+
"engines": {
|
|
1238
|
+
"node": ">=14"
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"node_modules/@isaacs/cliui": {
|
|
1242
|
+
"version": "8.0.2",
|
|
1243
|
+
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
1244
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
1245
|
+
"dev": true,
|
|
1246
|
+
"license": "ISC",
|
|
1551
1247
|
"peer": true,
|
|
1552
1248
|
"dependencies": {
|
|
1553
|
-
"
|
|
1554
|
-
"
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1557
|
-
"
|
|
1249
|
+
"string-width": "^5.1.2",
|
|
1250
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
1251
|
+
"strip-ansi": "^7.0.1",
|
|
1252
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
1253
|
+
"wrap-ansi": "^8.1.0",
|
|
1254
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
1255
|
+
},
|
|
1256
|
+
"engines": {
|
|
1257
|
+
"node": ">=12"
|
|
1558
1258
|
}
|
|
1559
1259
|
},
|
|
1560
|
-
"node_modules/@
|
|
1561
|
-
"version": "
|
|
1562
|
-
"resolved": "https://registry.npmjs.org
|
|
1563
|
-
"integrity": "sha512-
|
|
1260
|
+
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
|
|
1261
|
+
"version": "6.1.0",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
1263
|
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
1564
1264
|
"dev": true,
|
|
1565
1265
|
"license": "MIT",
|
|
1266
|
+
"peer": true,
|
|
1566
1267
|
"engines": {
|
|
1567
|
-
"node": ">=
|
|
1268
|
+
"node": ">=12"
|
|
1269
|
+
},
|
|
1270
|
+
"funding": {
|
|
1271
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
|
|
1275
|
+
"version": "6.2.1",
|
|
1276
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
|
|
1277
|
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
|
|
1278
|
+
"dev": true,
|
|
1279
|
+
"license": "MIT",
|
|
1280
|
+
"peer": true,
|
|
1281
|
+
"engines": {
|
|
1282
|
+
"node": ">=12"
|
|
1283
|
+
},
|
|
1284
|
+
"funding": {
|
|
1285
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
1288
|
+
"node_modules/@isaacs/cliui/node_modules/emoji-regex": {
|
|
1289
|
+
"version": "9.2.2",
|
|
1290
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
|
1291
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
1292
|
+
"dev": true,
|
|
1293
|
+
"license": "MIT",
|
|
1294
|
+
"peer": true
|
|
1295
|
+
},
|
|
1296
|
+
"node_modules/@isaacs/cliui/node_modules/string-width": {
|
|
1297
|
+
"version": "5.1.2",
|
|
1298
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
1299
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
1300
|
+
"dev": true,
|
|
1301
|
+
"license": "MIT",
|
|
1302
|
+
"peer": true,
|
|
1303
|
+
"dependencies": {
|
|
1304
|
+
"eastasianwidth": "^0.2.0",
|
|
1305
|
+
"emoji-regex": "^9.2.2",
|
|
1306
|
+
"strip-ansi": "^7.0.1"
|
|
1307
|
+
},
|
|
1308
|
+
"engines": {
|
|
1309
|
+
"node": ">=12"
|
|
1310
|
+
},
|
|
1311
|
+
"funding": {
|
|
1312
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
|
|
1316
|
+
"version": "7.1.0",
|
|
1317
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
1318
|
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
1319
|
+
"dev": true,
|
|
1320
|
+
"license": "MIT",
|
|
1321
|
+
"peer": true,
|
|
1322
|
+
"dependencies": {
|
|
1323
|
+
"ansi-regex": "^6.0.1"
|
|
1324
|
+
},
|
|
1325
|
+
"engines": {
|
|
1326
|
+
"node": ">=12"
|
|
1327
|
+
},
|
|
1328
|
+
"funding": {
|
|
1329
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
|
|
1333
|
+
"version": "8.1.0",
|
|
1334
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
|
1335
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
1336
|
+
"dev": true,
|
|
1337
|
+
"license": "MIT",
|
|
1338
|
+
"peer": true,
|
|
1339
|
+
"dependencies": {
|
|
1340
|
+
"ansi-styles": "^6.1.0",
|
|
1341
|
+
"string-width": "^5.0.1",
|
|
1342
|
+
"strip-ansi": "^7.0.1"
|
|
1343
|
+
},
|
|
1344
|
+
"engines": {
|
|
1345
|
+
"node": ">=12"
|
|
1346
|
+
},
|
|
1347
|
+
"funding": {
|
|
1348
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
1568
1349
|
}
|
|
1569
1350
|
},
|
|
1570
1351
|
"node_modules/@jridgewell/resolve-uri": {
|
|
@@ -1598,54 +1379,18 @@
|
|
|
1598
1379
|
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
1599
1380
|
}
|
|
1600
1381
|
},
|
|
1601
|
-
"node_modules/@
|
|
1602
|
-
"version": "
|
|
1603
|
-
"resolved": "https://registry.npmjs.org/@
|
|
1604
|
-
"integrity": "sha512-
|
|
1605
|
-
"dev": true,
|
|
1606
|
-
"license": "ISC",
|
|
1607
|
-
"dependencies": {
|
|
1608
|
-
"ethereumjs-abi": "^0.6.8",
|
|
1609
|
-
"ethereumjs-util": "^6.2.1",
|
|
1610
|
-
"ethjs-util": "^0.1.6",
|
|
1611
|
-
"tweetnacl": "^1.0.3",
|
|
1612
|
-
"tweetnacl-util": "^0.15.1"
|
|
1613
|
-
},
|
|
1614
|
-
"engines": {
|
|
1615
|
-
"node": ">=12.0.0"
|
|
1616
|
-
}
|
|
1617
|
-
},
|
|
1618
|
-
"node_modules/@metamask/eth-sig-util/node_modules/@types/bn.js": {
|
|
1619
|
-
"version": "4.11.6",
|
|
1620
|
-
"resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz",
|
|
1621
|
-
"integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==",
|
|
1382
|
+
"node_modules/@noble/ciphers": {
|
|
1383
|
+
"version": "1.3.0",
|
|
1384
|
+
"resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz",
|
|
1385
|
+
"integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==",
|
|
1622
1386
|
"dev": true,
|
|
1623
1387
|
"license": "MIT",
|
|
1624
|
-
"
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz",
|
|
1631
|
-
"integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==",
|
|
1632
|
-
"dev": true,
|
|
1633
|
-
"license": "MIT"
|
|
1634
|
-
},
|
|
1635
|
-
"node_modules/@metamask/eth-sig-util/node_modules/ethereumjs-util": {
|
|
1636
|
-
"version": "6.2.1",
|
|
1637
|
-
"resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz",
|
|
1638
|
-
"integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==",
|
|
1639
|
-
"dev": true,
|
|
1640
|
-
"license": "MPL-2.0",
|
|
1641
|
-
"dependencies": {
|
|
1642
|
-
"@types/bn.js": "^4.11.3",
|
|
1643
|
-
"bn.js": "^4.11.0",
|
|
1644
|
-
"create-hash": "^1.1.2",
|
|
1645
|
-
"elliptic": "^6.5.2",
|
|
1646
|
-
"ethereum-cryptography": "^0.1.3",
|
|
1647
|
-
"ethjs-util": "0.1.6",
|
|
1648
|
-
"rlp": "^2.2.3"
|
|
1388
|
+
"peer": true,
|
|
1389
|
+
"engines": {
|
|
1390
|
+
"node": "^14.21.3 || >=16"
|
|
1391
|
+
},
|
|
1392
|
+
"funding": {
|
|
1393
|
+
"url": "https://paulmillr.com/funding/"
|
|
1649
1394
|
}
|
|
1650
1395
|
},
|
|
1651
1396
|
"node_modules/@noble/curves": {
|
|
@@ -1731,28 +1476,28 @@
|
|
|
1731
1476
|
}
|
|
1732
1477
|
},
|
|
1733
1478
|
"node_modules/@nomicfoundation/edr": {
|
|
1734
|
-
"version": "0.
|
|
1735
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.
|
|
1736
|
-
"integrity": "sha512-
|
|
1479
|
+
"version": "0.11.3",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr/-/edr-0.11.3.tgz",
|
|
1481
|
+
"integrity": "sha512-kqILRkAd455Sd6v8mfP3C1/0tCOynJWY+Ir+k/9Boocu2kObCrsFgG+ZWB7fSBVdd9cPVSNrnhWS+V+PEo637g==",
|
|
1737
1482
|
"dev": true,
|
|
1738
1483
|
"license": "MIT",
|
|
1739
1484
|
"dependencies": {
|
|
1740
|
-
"@nomicfoundation/edr-darwin-arm64": "0.
|
|
1741
|
-
"@nomicfoundation/edr-darwin-x64": "0.
|
|
1742
|
-
"@nomicfoundation/edr-linux-arm64-gnu": "0.
|
|
1743
|
-
"@nomicfoundation/edr-linux-arm64-musl": "0.
|
|
1744
|
-
"@nomicfoundation/edr-linux-x64-gnu": "0.
|
|
1745
|
-
"@nomicfoundation/edr-linux-x64-musl": "0.
|
|
1746
|
-
"@nomicfoundation/edr-win32-x64-msvc": "0.
|
|
1485
|
+
"@nomicfoundation/edr-darwin-arm64": "0.11.3",
|
|
1486
|
+
"@nomicfoundation/edr-darwin-x64": "0.11.3",
|
|
1487
|
+
"@nomicfoundation/edr-linux-arm64-gnu": "0.11.3",
|
|
1488
|
+
"@nomicfoundation/edr-linux-arm64-musl": "0.11.3",
|
|
1489
|
+
"@nomicfoundation/edr-linux-x64-gnu": "0.11.3",
|
|
1490
|
+
"@nomicfoundation/edr-linux-x64-musl": "0.11.3",
|
|
1491
|
+
"@nomicfoundation/edr-win32-x64-msvc": "0.11.3"
|
|
1747
1492
|
},
|
|
1748
1493
|
"engines": {
|
|
1749
1494
|
"node": ">= 18"
|
|
1750
1495
|
}
|
|
1751
1496
|
},
|
|
1752
1497
|
"node_modules/@nomicfoundation/edr-darwin-arm64": {
|
|
1753
|
-
"version": "0.
|
|
1754
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.
|
|
1755
|
-
"integrity": "sha512-
|
|
1498
|
+
"version": "0.11.3",
|
|
1499
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.11.3.tgz",
|
|
1500
|
+
"integrity": "sha512-w0tksbdtSxz9nuzHKsfx4c2mwaD0+l5qKL2R290QdnN9gi9AV62p9DHkOgfBdyg6/a6ZlnQqnISi7C9avk/6VA==",
|
|
1756
1501
|
"dev": true,
|
|
1757
1502
|
"license": "MIT",
|
|
1758
1503
|
"engines": {
|
|
@@ -1760,9 +1505,9 @@
|
|
|
1760
1505
|
}
|
|
1761
1506
|
},
|
|
1762
1507
|
"node_modules/@nomicfoundation/edr-darwin-x64": {
|
|
1763
|
-
"version": "0.
|
|
1764
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.
|
|
1765
|
-
"integrity": "sha512-
|
|
1508
|
+
"version": "0.11.3",
|
|
1509
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.11.3.tgz",
|
|
1510
|
+
"integrity": "sha512-QR4jAFrPbOcrO7O2z2ESg+eUeIZPe2bPIlQYgiJ04ltbSGW27FblOzdd5+S3RoOD/dsZGKAvvy6dadBEl0NgoA==",
|
|
1766
1511
|
"dev": true,
|
|
1767
1512
|
"license": "MIT",
|
|
1768
1513
|
"engines": {
|
|
@@ -1770,9 +1515,9 @@
|
|
|
1770
1515
|
}
|
|
1771
1516
|
},
|
|
1772
1517
|
"node_modules/@nomicfoundation/edr-linux-arm64-gnu": {
|
|
1773
|
-
"version": "0.
|
|
1774
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.
|
|
1775
|
-
"integrity": "sha512-
|
|
1518
|
+
"version": "0.11.3",
|
|
1519
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.11.3.tgz",
|
|
1520
|
+
"integrity": "sha512-Ktjv89RZZiUmOFPspuSBVJ61mBZQ2+HuLmV67InNlh9TSUec/iDjGIwAn59dx0bF/LOSrM7qg5od3KKac4LJDQ==",
|
|
1776
1521
|
"dev": true,
|
|
1777
1522
|
"license": "MIT",
|
|
1778
1523
|
"engines": {
|
|
@@ -1780,9 +1525,9 @@
|
|
|
1780
1525
|
}
|
|
1781
1526
|
},
|
|
1782
1527
|
"node_modules/@nomicfoundation/edr-linux-arm64-musl": {
|
|
1783
|
-
"version": "0.
|
|
1784
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.
|
|
1785
|
-
"integrity": "sha512-
|
|
1528
|
+
"version": "0.11.3",
|
|
1529
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.11.3.tgz",
|
|
1530
|
+
"integrity": "sha512-B3sLJx1rL2E9pfdD4mApiwOZSrX0a/KQSBWdlq1uAhFKqkl00yZaY4LejgZndsJAa4iKGQJlGnw4HCGeVt0+jA==",
|
|
1786
1531
|
"dev": true,
|
|
1787
1532
|
"license": "MIT",
|
|
1788
1533
|
"engines": {
|
|
@@ -1790,9 +1535,9 @@
|
|
|
1790
1535
|
}
|
|
1791
1536
|
},
|
|
1792
1537
|
"node_modules/@nomicfoundation/edr-linux-x64-gnu": {
|
|
1793
|
-
"version": "0.
|
|
1794
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.
|
|
1795
|
-
"integrity": "sha512-
|
|
1538
|
+
"version": "0.11.3",
|
|
1539
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.11.3.tgz",
|
|
1540
|
+
"integrity": "sha512-D/4cFKDXH6UYyKPu6J3Y8TzW11UzeQI0+wS9QcJzjlrrfKj0ENW7g9VihD1O2FvXkdkTjcCZYb6ai8MMTCsaVw==",
|
|
1796
1541
|
"dev": true,
|
|
1797
1542
|
"license": "MIT",
|
|
1798
1543
|
"engines": {
|
|
@@ -1800,9 +1545,9 @@
|
|
|
1800
1545
|
}
|
|
1801
1546
|
},
|
|
1802
1547
|
"node_modules/@nomicfoundation/edr-linux-x64-musl": {
|
|
1803
|
-
"version": "0.
|
|
1804
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.
|
|
1805
|
-
"integrity": "sha512-
|
|
1548
|
+
"version": "0.11.3",
|
|
1549
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.11.3.tgz",
|
|
1550
|
+
"integrity": "sha512-ergXuIb4nIvmf+TqyiDX5tsE49311DrBky6+jNLgsGDTBaN1GS3OFwFS8I6Ri/GGn6xOaT8sKu3q7/m+WdlFzg==",
|
|
1806
1551
|
"dev": true,
|
|
1807
1552
|
"license": "MIT",
|
|
1808
1553
|
"engines": {
|
|
@@ -1810,88 +1555,19 @@
|
|
|
1810
1555
|
}
|
|
1811
1556
|
},
|
|
1812
1557
|
"node_modules/@nomicfoundation/edr-win32-x64-msvc": {
|
|
1813
|
-
"version": "0.
|
|
1814
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.
|
|
1815
|
-
"integrity": "sha512-
|
|
1558
|
+
"version": "0.11.3",
|
|
1559
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.11.3.tgz",
|
|
1560
|
+
"integrity": "sha512-snvEf+WB3OV0wj2A7kQ+ZQqBquMcrozSLXcdnMdEl7Tmn+KDCbmFKBt3Tk0X3qOU4RKQpLPnTxdM07TJNVtung==",
|
|
1816
1561
|
"dev": true,
|
|
1817
1562
|
"license": "MIT",
|
|
1818
1563
|
"engines": {
|
|
1819
1564
|
"node": ">= 18"
|
|
1820
1565
|
}
|
|
1821
1566
|
},
|
|
1822
|
-
"node_modules/@nomicfoundation/ethereumjs-common": {
|
|
1823
|
-
"version": "4.0.4",
|
|
1824
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.4.tgz",
|
|
1825
|
-
"integrity": "sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==",
|
|
1826
|
-
"dev": true,
|
|
1827
|
-
"license": "MIT",
|
|
1828
|
-
"dependencies": {
|
|
1829
|
-
"@nomicfoundation/ethereumjs-util": "9.0.4"
|
|
1830
|
-
}
|
|
1831
|
-
},
|
|
1832
|
-
"node_modules/@nomicfoundation/ethereumjs-rlp": {
|
|
1833
|
-
"version": "5.0.4",
|
|
1834
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.4.tgz",
|
|
1835
|
-
"integrity": "sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==",
|
|
1836
|
-
"dev": true,
|
|
1837
|
-
"license": "MPL-2.0",
|
|
1838
|
-
"bin": {
|
|
1839
|
-
"rlp": "bin/rlp.cjs"
|
|
1840
|
-
},
|
|
1841
|
-
"engines": {
|
|
1842
|
-
"node": ">=18"
|
|
1843
|
-
}
|
|
1844
|
-
},
|
|
1845
|
-
"node_modules/@nomicfoundation/ethereumjs-tx": {
|
|
1846
|
-
"version": "5.0.4",
|
|
1847
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.4.tgz",
|
|
1848
|
-
"integrity": "sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==",
|
|
1849
|
-
"dev": true,
|
|
1850
|
-
"license": "MPL-2.0",
|
|
1851
|
-
"dependencies": {
|
|
1852
|
-
"@nomicfoundation/ethereumjs-common": "4.0.4",
|
|
1853
|
-
"@nomicfoundation/ethereumjs-rlp": "5.0.4",
|
|
1854
|
-
"@nomicfoundation/ethereumjs-util": "9.0.4",
|
|
1855
|
-
"ethereum-cryptography": "0.1.3"
|
|
1856
|
-
},
|
|
1857
|
-
"engines": {
|
|
1858
|
-
"node": ">=18"
|
|
1859
|
-
},
|
|
1860
|
-
"peerDependencies": {
|
|
1861
|
-
"c-kzg": "^2.1.2"
|
|
1862
|
-
},
|
|
1863
|
-
"peerDependenciesMeta": {
|
|
1864
|
-
"c-kzg": {
|
|
1865
|
-
"optional": true
|
|
1866
|
-
}
|
|
1867
|
-
}
|
|
1868
|
-
},
|
|
1869
|
-
"node_modules/@nomicfoundation/ethereumjs-util": {
|
|
1870
|
-
"version": "9.0.4",
|
|
1871
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.4.tgz",
|
|
1872
|
-
"integrity": "sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==",
|
|
1873
|
-
"dev": true,
|
|
1874
|
-
"license": "MPL-2.0",
|
|
1875
|
-
"dependencies": {
|
|
1876
|
-
"@nomicfoundation/ethereumjs-rlp": "5.0.4",
|
|
1877
|
-
"ethereum-cryptography": "0.1.3"
|
|
1878
|
-
},
|
|
1879
|
-
"engines": {
|
|
1880
|
-
"node": ">=18"
|
|
1881
|
-
},
|
|
1882
|
-
"peerDependencies": {
|
|
1883
|
-
"c-kzg": "^2.1.2"
|
|
1884
|
-
},
|
|
1885
|
-
"peerDependenciesMeta": {
|
|
1886
|
-
"c-kzg": {
|
|
1887
|
-
"optional": true
|
|
1888
|
-
}
|
|
1889
|
-
}
|
|
1890
|
-
},
|
|
1891
1567
|
"node_modules/@nomicfoundation/hardhat-chai-matchers": {
|
|
1892
|
-
"version": "2.0
|
|
1893
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-2.0.
|
|
1894
|
-
"integrity": "sha512-
|
|
1568
|
+
"version": "2.1.0",
|
|
1569
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-2.1.0.tgz",
|
|
1570
|
+
"integrity": "sha512-GPhBNafh1fCnVD9Y7BYvoLnblnvfcq3j8YDbO1gGe/1nOFWzGmV7gFu5DkwFXF+IpYsS+t96o9qc/mPu3V3Vfw==",
|
|
1895
1571
|
"dev": true,
|
|
1896
1572
|
"license": "MIT",
|
|
1897
1573
|
"peer": true,
|
|
@@ -1902,16 +1578,16 @@
|
|
|
1902
1578
|
"ordinal": "^1.0.3"
|
|
1903
1579
|
},
|
|
1904
1580
|
"peerDependencies": {
|
|
1905
|
-
"@nomicfoundation/hardhat-ethers": "^3.
|
|
1581
|
+
"@nomicfoundation/hardhat-ethers": "^3.1.0",
|
|
1906
1582
|
"chai": "^4.2.0",
|
|
1907
|
-
"ethers": "^6.
|
|
1908
|
-
"hardhat": "^2.
|
|
1583
|
+
"ethers": "^6.14.0",
|
|
1584
|
+
"hardhat": "^2.26.0"
|
|
1909
1585
|
}
|
|
1910
1586
|
},
|
|
1911
1587
|
"node_modules/@nomicfoundation/hardhat-ethers": {
|
|
1912
|
-
"version": "3.0
|
|
1913
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers/-/hardhat-ethers-3.0.
|
|
1914
|
-
"integrity": "sha512-
|
|
1588
|
+
"version": "3.1.0",
|
|
1589
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ethers/-/hardhat-ethers-3.1.0.tgz",
|
|
1590
|
+
"integrity": "sha512-jx6fw3Ms7QBwFGT2MU6ICG292z0P81u6g54JjSV105+FbTZOF4FJqPksLfDybxkkOeq28eDxbqq7vpxRYyIlxA==",
|
|
1915
1591
|
"dev": true,
|
|
1916
1592
|
"license": "MIT",
|
|
1917
1593
|
"peer": true,
|
|
@@ -1920,20 +1596,20 @@
|
|
|
1920
1596
|
"lodash.isequal": "^4.5.0"
|
|
1921
1597
|
},
|
|
1922
1598
|
"peerDependencies": {
|
|
1923
|
-
"ethers": "^6.
|
|
1924
|
-
"hardhat": "^2.
|
|
1599
|
+
"ethers": "^6.14.0",
|
|
1600
|
+
"hardhat": "^2.26.0"
|
|
1925
1601
|
}
|
|
1926
1602
|
},
|
|
1927
1603
|
"node_modules/@nomicfoundation/hardhat-ignition": {
|
|
1928
|
-
"version": "0.15.
|
|
1929
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-0.15.
|
|
1930
|
-
"integrity": "sha512-
|
|
1604
|
+
"version": "0.15.13",
|
|
1605
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition/-/hardhat-ignition-0.15.13.tgz",
|
|
1606
|
+
"integrity": "sha512-G4XGPWvxs9DJhZ6PE1wdvKjHkjErWbsETf4c7YxO6GUz+MJGlw+PtgbnCwhL3tQzSq3oD4MB0LGi+sK0polpUA==",
|
|
1931
1607
|
"dev": true,
|
|
1932
1608
|
"license": "MIT",
|
|
1933
1609
|
"peer": true,
|
|
1934
1610
|
"dependencies": {
|
|
1935
|
-
"@nomicfoundation/ignition-core": "^0.15.
|
|
1936
|
-
"@nomicfoundation/ignition-ui": "^0.15.
|
|
1611
|
+
"@nomicfoundation/ignition-core": "^0.15.13",
|
|
1612
|
+
"@nomicfoundation/ignition-ui": "^0.15.12",
|
|
1937
1613
|
"chalk": "^4.0.0",
|
|
1938
1614
|
"debug": "^4.3.2",
|
|
1939
1615
|
"fs-extra": "^10.0.0",
|
|
@@ -1941,29 +1617,29 @@
|
|
|
1941
1617
|
"prompts": "^2.4.2"
|
|
1942
1618
|
},
|
|
1943
1619
|
"peerDependencies": {
|
|
1944
|
-
"@nomicfoundation/hardhat-verify": "^2.0
|
|
1945
|
-
"hardhat": "^2.
|
|
1620
|
+
"@nomicfoundation/hardhat-verify": "^2.1.0",
|
|
1621
|
+
"hardhat": "^2.26.0"
|
|
1946
1622
|
}
|
|
1947
1623
|
},
|
|
1948
1624
|
"node_modules/@nomicfoundation/hardhat-ignition-ethers": {
|
|
1949
|
-
"version": "0.15.
|
|
1950
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-ethers/-/hardhat-ignition-ethers-0.15.
|
|
1951
|
-
"integrity": "sha512-
|
|
1625
|
+
"version": "0.15.14",
|
|
1626
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-ignition-ethers/-/hardhat-ignition-ethers-0.15.14.tgz",
|
|
1627
|
+
"integrity": "sha512-eq+5n+c1DW18/Xp8/QrHBBvG5QaKUxYF/byol4f1jrnZ1zAy0OrqEa/oaNFWchhpLalX7d7suk/2EL0PbT0CDQ==",
|
|
1952
1628
|
"dev": true,
|
|
1953
1629
|
"license": "MIT",
|
|
1954
1630
|
"peer": true,
|
|
1955
1631
|
"peerDependencies": {
|
|
1956
|
-
"@nomicfoundation/hardhat-ethers": "^3.0
|
|
1957
|
-
"@nomicfoundation/hardhat-ignition": "^0.15.
|
|
1958
|
-
"@nomicfoundation/ignition-core": "^0.15.
|
|
1959
|
-
"ethers": "^6.
|
|
1960
|
-
"hardhat": "^2.
|
|
1632
|
+
"@nomicfoundation/hardhat-ethers": "^3.1.0",
|
|
1633
|
+
"@nomicfoundation/hardhat-ignition": "^0.15.13",
|
|
1634
|
+
"@nomicfoundation/ignition-core": "^0.15.13",
|
|
1635
|
+
"ethers": "^6.14.0",
|
|
1636
|
+
"hardhat": "^2.26.0"
|
|
1961
1637
|
}
|
|
1962
1638
|
},
|
|
1963
1639
|
"node_modules/@nomicfoundation/hardhat-network-helpers": {
|
|
1964
|
-
"version": "1.0
|
|
1965
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-1.0.
|
|
1966
|
-
"integrity": "sha512-
|
|
1640
|
+
"version": "1.1.0",
|
|
1641
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-network-helpers/-/hardhat-network-helpers-1.1.0.tgz",
|
|
1642
|
+
"integrity": "sha512-ZS+NulZuR99NUHt2VwcgZvgeD6Y63qrbORNRuKO+lTowJxNVsrJ0zbRx1j5De6G3dOno5pVGvuYSq2QVG0qCYg==",
|
|
1967
1643
|
"dev": true,
|
|
1968
1644
|
"license": "MIT",
|
|
1969
1645
|
"peer": true,
|
|
@@ -1971,30 +1647,30 @@
|
|
|
1971
1647
|
"ethereumjs-util": "^7.1.4"
|
|
1972
1648
|
},
|
|
1973
1649
|
"peerDependencies": {
|
|
1974
|
-
"hardhat": "^2.
|
|
1650
|
+
"hardhat": "^2.26.0"
|
|
1975
1651
|
}
|
|
1976
1652
|
},
|
|
1977
1653
|
"node_modules/@nomicfoundation/hardhat-toolbox": {
|
|
1978
|
-
"version": "
|
|
1979
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-
|
|
1980
|
-
"integrity": "sha512-
|
|
1654
|
+
"version": "6.1.0",
|
|
1655
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-6.1.0.tgz",
|
|
1656
|
+
"integrity": "sha512-iAIl6pIK3F4R3JXeq+b6tiShXUrp1sQRiPfqoCMUE7QLUzoFifzGV97IDRL6e73pWsMKpUQBsHBvTCsqn+ZdpA==",
|
|
1981
1657
|
"dev": true,
|
|
1982
1658
|
"license": "MIT",
|
|
1983
1659
|
"peerDependencies": {
|
|
1984
|
-
"@nomicfoundation/hardhat-chai-matchers": "^2.
|
|
1985
|
-
"@nomicfoundation/hardhat-ethers": "^3.
|
|
1986
|
-
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.
|
|
1987
|
-
"@nomicfoundation/hardhat-network-helpers": "^1.
|
|
1988
|
-
"@nomicfoundation/hardhat-verify": "^2.
|
|
1660
|
+
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
|
|
1661
|
+
"@nomicfoundation/hardhat-ethers": "^3.1.0",
|
|
1662
|
+
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.14",
|
|
1663
|
+
"@nomicfoundation/hardhat-network-helpers": "^1.1.0",
|
|
1664
|
+
"@nomicfoundation/hardhat-verify": "^2.1.0",
|
|
1989
1665
|
"@typechain/ethers-v6": "^0.5.0",
|
|
1990
1666
|
"@typechain/hardhat": "^9.0.0",
|
|
1991
1667
|
"@types/chai": "^4.2.0",
|
|
1992
1668
|
"@types/mocha": ">=9.1.0",
|
|
1993
|
-
"@types/node": ">=
|
|
1669
|
+
"@types/node": ">=20.0.0",
|
|
1994
1670
|
"chai": "^4.2.0",
|
|
1995
|
-
"ethers": "^6.
|
|
1996
|
-
"hardhat": "^2.
|
|
1997
|
-
"hardhat-gas-reporter": "^
|
|
1671
|
+
"ethers": "^6.14.0",
|
|
1672
|
+
"hardhat": "^2.26.0",
|
|
1673
|
+
"hardhat-gas-reporter": "^2.3.0",
|
|
1998
1674
|
"solidity-coverage": "^0.8.1",
|
|
1999
1675
|
"ts-node": ">=8.0.0",
|
|
2000
1676
|
"typechain": "^8.3.0",
|
|
@@ -2002,9 +1678,9 @@
|
|
|
2002
1678
|
}
|
|
2003
1679
|
},
|
|
2004
1680
|
"node_modules/@nomicfoundation/hardhat-verify": {
|
|
2005
|
-
"version": "2.
|
|
2006
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-2.
|
|
2007
|
-
"integrity": "sha512-
|
|
1681
|
+
"version": "2.1.1",
|
|
1682
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/hardhat-verify/-/hardhat-verify-2.1.1.tgz",
|
|
1683
|
+
"integrity": "sha512-K1plXIS42xSHDJZRkrE2TZikqxp9T4y6jUMUNI/imLgN5uCcEQokmfU0DlyP9zzHncYK92HlT5IWP35UVCLrPw==",
|
|
2008
1684
|
"dev": true,
|
|
2009
1685
|
"license": "MIT",
|
|
2010
1686
|
"peer": true,
|
|
@@ -2020,13 +1696,13 @@
|
|
|
2020
1696
|
"undici": "^5.14.0"
|
|
2021
1697
|
},
|
|
2022
1698
|
"peerDependencies": {
|
|
2023
|
-
"hardhat": "^2.0
|
|
1699
|
+
"hardhat": "^2.26.0"
|
|
2024
1700
|
}
|
|
2025
1701
|
},
|
|
2026
1702
|
"node_modules/@nomicfoundation/ignition-core": {
|
|
2027
|
-
"version": "0.15.
|
|
2028
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-0.15.
|
|
2029
|
-
"integrity": "sha512-
|
|
1703
|
+
"version": "0.15.13",
|
|
1704
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-core/-/ignition-core-0.15.13.tgz",
|
|
1705
|
+
"integrity": "sha512-Z4T1WIbw0EqdsN9RxtnHeQXBi7P/piAmCu8bZmReIdDo/2h06qgKWxjDoNfc9VBFZJ0+Dx79tkgQR3ewxMDcpA==",
|
|
2030
1706
|
"dev": true,
|
|
2031
1707
|
"license": "MIT",
|
|
2032
1708
|
"peer": true,
|
|
@@ -2035,7 +1711,7 @@
|
|
|
2035
1711
|
"@nomicfoundation/solidity-analyzer": "^0.1.1",
|
|
2036
1712
|
"cbor": "^9.0.0",
|
|
2037
1713
|
"debug": "^4.3.2",
|
|
2038
|
-
"ethers": "^6.
|
|
1714
|
+
"ethers": "^6.14.0",
|
|
2039
1715
|
"fs-extra": "^10.0.0",
|
|
2040
1716
|
"immer": "10.0.2",
|
|
2041
1717
|
"lodash": "4.17.21",
|
|
@@ -2082,9 +1758,9 @@
|
|
|
2082
1758
|
}
|
|
2083
1759
|
},
|
|
2084
1760
|
"node_modules/@nomicfoundation/ignition-ui": {
|
|
2085
|
-
"version": "0.15.
|
|
2086
|
-
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-0.15.
|
|
2087
|
-
"integrity": "sha512-
|
|
1761
|
+
"version": "0.15.12",
|
|
1762
|
+
"resolved": "https://registry.npmjs.org/@nomicfoundation/ignition-ui/-/ignition-ui-0.15.12.tgz",
|
|
1763
|
+
"integrity": "sha512-nQl8tusvmt1ANoyIj5RQl9tVSEmG0FnNbtwnWbTim+F8JLm4YLHWS0yEgYUZC+BEO3oS0D8r6V8a02JGZJgqiQ==",
|
|
2088
1764
|
"dev": true,
|
|
2089
1765
|
"peer": true
|
|
2090
1766
|
},
|
|
@@ -2195,20 +1871,20 @@
|
|
|
2195
1871
|
}
|
|
2196
1872
|
},
|
|
2197
1873
|
"node_modules/@openzeppelin/contracts": {
|
|
2198
|
-
"version": "5.
|
|
2199
|
-
"resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-5.
|
|
2200
|
-
"integrity": "sha512-
|
|
1874
|
+
"version": "5.4.0",
|
|
1875
|
+
"resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-5.4.0.tgz",
|
|
1876
|
+
"integrity": "sha512-eCYgWnLg6WO+X52I16TZt8uEjbtdkgLC0SUX/xnAksjjrQI4Xfn4iBRoI5j55dmlOhDv1Y7BoR3cU7e3WWhC6A==",
|
|
2201
1877
|
"dev": true,
|
|
2202
1878
|
"license": "MIT"
|
|
2203
1879
|
},
|
|
2204
1880
|
"node_modules/@openzeppelin/contracts-upgradeable": {
|
|
2205
|
-
"version": "5.
|
|
2206
|
-
"resolved": "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-5.
|
|
2207
|
-
"integrity": "sha512-
|
|
1881
|
+
"version": "5.4.0",
|
|
1882
|
+
"resolved": "https://registry.npmjs.org/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-5.4.0.tgz",
|
|
1883
|
+
"integrity": "sha512-STJKyDzUcYuB35Zub1JpWW58JxvrFFVgQ+Ykdr8A9PGXgtq/obF5uoh07k2XmFyPxfnZdPdBdhkJ/n2YxJ87HQ==",
|
|
2208
1884
|
"dev": true,
|
|
2209
1885
|
"license": "MIT",
|
|
2210
1886
|
"peerDependencies": {
|
|
2211
|
-
"@openzeppelin/contracts": "5.
|
|
1887
|
+
"@openzeppelin/contracts": "5.4.0"
|
|
2212
1888
|
}
|
|
2213
1889
|
},
|
|
2214
1890
|
"node_modules/@openzeppelin/defender-sdk-base-client": {
|
|
@@ -2248,9 +1924,9 @@
|
|
|
2248
1924
|
}
|
|
2249
1925
|
},
|
|
2250
1926
|
"node_modules/@openzeppelin/hardhat-upgrades": {
|
|
2251
|
-
"version": "3.9.
|
|
2252
|
-
"resolved": "https://registry.npmjs.org/@openzeppelin/hardhat-upgrades/-/hardhat-upgrades-3.9.
|
|
2253
|
-
"integrity": "sha512-
|
|
1927
|
+
"version": "3.9.1",
|
|
1928
|
+
"resolved": "https://registry.npmjs.org/@openzeppelin/hardhat-upgrades/-/hardhat-upgrades-3.9.1.tgz",
|
|
1929
|
+
"integrity": "sha512-pSDjlOnIpP+PqaJVe144dK6VVKZw2v6YQusyt0OOLiCsl+WUzfo4D0kylax7zjrOxqy41EK2ipQeIF4T+cCn2A==",
|
|
2254
1930
|
"dev": true,
|
|
2255
1931
|
"license": "MIT",
|
|
2256
1932
|
"dependencies": {
|
|
@@ -2268,10 +1944,10 @@
|
|
|
2268
1944
|
"migrate-oz-cli-project": "dist/scripts/migrate-oz-cli-project.js"
|
|
2269
1945
|
},
|
|
2270
1946
|
"peerDependencies": {
|
|
2271
|
-
"@nomicfoundation/hardhat-ethers": "^3.0.
|
|
2272
|
-
"@nomicfoundation/hardhat-verify": "^2.0.
|
|
1947
|
+
"@nomicfoundation/hardhat-ethers": "^3.0.6",
|
|
1948
|
+
"@nomicfoundation/hardhat-verify": "^2.0.14",
|
|
2273
1949
|
"ethers": "^6.6.0",
|
|
2274
|
-
"hardhat": "^2.
|
|
1950
|
+
"hardhat": "^2.24.1"
|
|
2275
1951
|
},
|
|
2276
1952
|
"peerDependenciesMeta": {
|
|
2277
1953
|
"@nomicfoundation/hardhat-verify": {
|
|
@@ -2280,9 +1956,9 @@
|
|
|
2280
1956
|
}
|
|
2281
1957
|
},
|
|
2282
1958
|
"node_modules/@openzeppelin/hardhat-upgrades/node_modules/undici": {
|
|
2283
|
-
"version": "6.21.
|
|
2284
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-6.21.
|
|
2285
|
-
"integrity": "sha512-
|
|
1959
|
+
"version": "6.21.3",
|
|
1960
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz",
|
|
1961
|
+
"integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==",
|
|
2286
1962
|
"dev": true,
|
|
2287
1963
|
"license": "MIT",
|
|
2288
1964
|
"engines": {
|
|
@@ -2324,6 +2000,18 @@
|
|
|
2324
2000
|
"node": ">=18"
|
|
2325
2001
|
}
|
|
2326
2002
|
},
|
|
2003
|
+
"node_modules/@pkgjs/parseargs": {
|
|
2004
|
+
"version": "0.11.0",
|
|
2005
|
+
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
|
|
2006
|
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
2007
|
+
"dev": true,
|
|
2008
|
+
"license": "MIT",
|
|
2009
|
+
"optional": true,
|
|
2010
|
+
"peer": true,
|
|
2011
|
+
"engines": {
|
|
2012
|
+
"node": ">=14"
|
|
2013
|
+
}
|
|
2014
|
+
},
|
|
2327
2015
|
"node_modules/@scure/base": {
|
|
2328
2016
|
"version": "1.1.9",
|
|
2329
2017
|
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz",
|
|
@@ -3253,15 +2941,12 @@
|
|
|
3253
2941
|
}
|
|
3254
2942
|
},
|
|
3255
2943
|
"node_modules/@solidity-parser/parser": {
|
|
3256
|
-
"version": "0.
|
|
3257
|
-
"resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.
|
|
3258
|
-
"integrity": "sha512-
|
|
2944
|
+
"version": "0.20.1",
|
|
2945
|
+
"resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.20.1.tgz",
|
|
2946
|
+
"integrity": "sha512-58I2sRpzaQUN+jJmWbHfbWf9AKfzqCI8JAdFB0vbyY+u8tBRcuTt9LxzasvR0LGQpcRv97eyV7l61FQ3Ib7zVw==",
|
|
3259
2947
|
"dev": true,
|
|
3260
2948
|
"license": "MIT",
|
|
3261
|
-
"peer": true
|
|
3262
|
-
"dependencies": {
|
|
3263
|
-
"antlr4ts": "^0.5.0-alpha.4"
|
|
3264
|
-
}
|
|
2949
|
+
"peer": true
|
|
3265
2950
|
},
|
|
3266
2951
|
"node_modules/@tsconfig/node10": {
|
|
3267
2952
|
"version": "1.0.11",
|
|
@@ -3375,28 +3060,6 @@
|
|
|
3375
3060
|
"@types/chai": "*"
|
|
3376
3061
|
}
|
|
3377
3062
|
},
|
|
3378
|
-
"node_modules/@types/concat-stream": {
|
|
3379
|
-
"version": "1.6.1",
|
|
3380
|
-
"resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz",
|
|
3381
|
-
"integrity": "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==",
|
|
3382
|
-
"dev": true,
|
|
3383
|
-
"license": "MIT",
|
|
3384
|
-
"peer": true,
|
|
3385
|
-
"dependencies": {
|
|
3386
|
-
"@types/node": "*"
|
|
3387
|
-
}
|
|
3388
|
-
},
|
|
3389
|
-
"node_modules/@types/form-data": {
|
|
3390
|
-
"version": "0.0.33",
|
|
3391
|
-
"resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz",
|
|
3392
|
-
"integrity": "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==",
|
|
3393
|
-
"dev": true,
|
|
3394
|
-
"license": "MIT",
|
|
3395
|
-
"peer": true,
|
|
3396
|
-
"dependencies": {
|
|
3397
|
-
"@types/node": "*"
|
|
3398
|
-
}
|
|
3399
|
-
},
|
|
3400
3063
|
"node_modules/@types/glob": {
|
|
3401
3064
|
"version": "7.2.0",
|
|
3402
3065
|
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
|
|
@@ -3409,13 +3072,6 @@
|
|
|
3409
3072
|
"@types/node": "*"
|
|
3410
3073
|
}
|
|
3411
3074
|
},
|
|
3412
|
-
"node_modules/@types/lru-cache": {
|
|
3413
|
-
"version": "5.1.1",
|
|
3414
|
-
"resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
3415
|
-
"integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==",
|
|
3416
|
-
"dev": true,
|
|
3417
|
-
"license": "MIT"
|
|
3418
|
-
},
|
|
3419
3075
|
"node_modules/@types/minimatch": {
|
|
3420
3076
|
"version": "5.1.2",
|
|
3421
3077
|
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz",
|
|
@@ -3460,14 +3116,6 @@
|
|
|
3460
3116
|
"license": "MIT",
|
|
3461
3117
|
"peer": true
|
|
3462
3118
|
},
|
|
3463
|
-
"node_modules/@types/qs": {
|
|
3464
|
-
"version": "6.9.18",
|
|
3465
|
-
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz",
|
|
3466
|
-
"integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==",
|
|
3467
|
-
"dev": true,
|
|
3468
|
-
"license": "MIT",
|
|
3469
|
-
"peer": true
|
|
3470
|
-
},
|
|
3471
3119
|
"node_modules/@types/secp256k1": {
|
|
3472
3120
|
"version": "4.0.6",
|
|
3473
3121
|
"resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.6.tgz",
|
|
@@ -3486,6 +3134,29 @@
|
|
|
3486
3134
|
"license": "ISC",
|
|
3487
3135
|
"peer": true
|
|
3488
3136
|
},
|
|
3137
|
+
"node_modules/abitype": {
|
|
3138
|
+
"version": "1.0.8",
|
|
3139
|
+
"resolved": "https://registry.npmjs.org/abitype/-/abitype-1.0.8.tgz",
|
|
3140
|
+
"integrity": "sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==",
|
|
3141
|
+
"dev": true,
|
|
3142
|
+
"license": "MIT",
|
|
3143
|
+
"peer": true,
|
|
3144
|
+
"funding": {
|
|
3145
|
+
"url": "https://github.com/sponsors/wevm"
|
|
3146
|
+
},
|
|
3147
|
+
"peerDependencies": {
|
|
3148
|
+
"typescript": ">=5.0.4",
|
|
3149
|
+
"zod": "^3 >=3.22.0"
|
|
3150
|
+
},
|
|
3151
|
+
"peerDependenciesMeta": {
|
|
3152
|
+
"typescript": {
|
|
3153
|
+
"optional": true
|
|
3154
|
+
},
|
|
3155
|
+
"zod": {
|
|
3156
|
+
"optional": true
|
|
3157
|
+
}
|
|
3158
|
+
}
|
|
3159
|
+
},
|
|
3489
3160
|
"node_modules/acorn": {
|
|
3490
3161
|
"version": "8.14.0",
|
|
3491
3162
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
|
|
@@ -3696,14 +3367,6 @@
|
|
|
3696
3367
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
3697
3368
|
}
|
|
3698
3369
|
},
|
|
3699
|
-
"node_modules/antlr4ts": {
|
|
3700
|
-
"version": "0.5.0-alpha.4",
|
|
3701
|
-
"resolved": "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz",
|
|
3702
|
-
"integrity": "sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==",
|
|
3703
|
-
"dev": true,
|
|
3704
|
-
"license": "BSD-3-Clause",
|
|
3705
|
-
"peer": true
|
|
3706
|
-
},
|
|
3707
3370
|
"node_modules/anymatch": {
|
|
3708
3371
|
"version": "3.1.3",
|
|
3709
3372
|
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
@@ -3755,25 +3418,6 @@
|
|
|
3755
3418
|
"node": ">=8"
|
|
3756
3419
|
}
|
|
3757
3420
|
},
|
|
3758
|
-
"node_modules/array-uniq": {
|
|
3759
|
-
"version": "1.0.3",
|
|
3760
|
-
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
|
3761
|
-
"integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
|
|
3762
|
-
"dev": true,
|
|
3763
|
-
"license": "MIT",
|
|
3764
|
-
"peer": true,
|
|
3765
|
-
"engines": {
|
|
3766
|
-
"node": ">=0.10.0"
|
|
3767
|
-
}
|
|
3768
|
-
},
|
|
3769
|
-
"node_modules/asap": {
|
|
3770
|
-
"version": "2.0.6",
|
|
3771
|
-
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
|
3772
|
-
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==",
|
|
3773
|
-
"dev": true,
|
|
3774
|
-
"license": "MIT",
|
|
3775
|
-
"peer": true
|
|
3776
|
-
},
|
|
3777
3421
|
"node_modules/assertion-error": {
|
|
3778
3422
|
"version": "1.1.0",
|
|
3779
3423
|
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
|
|
@@ -3833,14 +3477,14 @@
|
|
|
3833
3477
|
}
|
|
3834
3478
|
},
|
|
3835
3479
|
"node_modules/axios": {
|
|
3836
|
-
"version": "1.
|
|
3837
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
3838
|
-
"integrity": "sha512-
|
|
3480
|
+
"version": "1.11.0",
|
|
3481
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz",
|
|
3482
|
+
"integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==",
|
|
3839
3483
|
"dev": true,
|
|
3840
3484
|
"license": "MIT",
|
|
3841
3485
|
"dependencies": {
|
|
3842
3486
|
"follow-redirects": "^1.15.6",
|
|
3843
|
-
"form-data": "^4.0.
|
|
3487
|
+
"form-data": "^4.0.4",
|
|
3844
3488
|
"proxy-from-env": "^1.1.0"
|
|
3845
3489
|
}
|
|
3846
3490
|
},
|
|
@@ -3882,14 +3526,6 @@
|
|
|
3882
3526
|
],
|
|
3883
3527
|
"license": "MIT"
|
|
3884
3528
|
},
|
|
3885
|
-
"node_modules/bech32": {
|
|
3886
|
-
"version": "1.1.4",
|
|
3887
|
-
"resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
|
|
3888
|
-
"integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==",
|
|
3889
|
-
"dev": true,
|
|
3890
|
-
"license": "MIT",
|
|
3891
|
-
"peer": true
|
|
3892
|
-
},
|
|
3893
3529
|
"node_modules/binary-extensions": {
|
|
3894
3530
|
"version": "2.3.0",
|
|
3895
3531
|
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
@@ -3990,6 +3626,14 @@
|
|
|
3990
3626
|
"dev": true,
|
|
3991
3627
|
"license": "MIT"
|
|
3992
3628
|
},
|
|
3629
|
+
"node_modules/brotli-wasm": {
|
|
3630
|
+
"version": "2.0.1",
|
|
3631
|
+
"resolved": "https://registry.npmjs.org/brotli-wasm/-/brotli-wasm-2.0.1.tgz",
|
|
3632
|
+
"integrity": "sha512-+3USgYsC7bzb5yU0/p2HnnynZl0ak0E6uoIm4UW4Aby/8s8HFCq6NCfrrf1E9c3O8OCSzq3oYO1tUVqIi61Nww==",
|
|
3633
|
+
"dev": true,
|
|
3634
|
+
"license": "Apache-2.0",
|
|
3635
|
+
"peer": true
|
|
3636
|
+
},
|
|
3993
3637
|
"node_modules/browser-stdout": {
|
|
3994
3638
|
"version": "1.3.1",
|
|
3995
3639
|
"resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
|
|
@@ -4084,24 +3728,6 @@
|
|
|
4084
3728
|
"node": ">= 0.4"
|
|
4085
3729
|
}
|
|
4086
3730
|
},
|
|
4087
|
-
"node_modules/call-bound": {
|
|
4088
|
-
"version": "1.0.3",
|
|
4089
|
-
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
|
|
4090
|
-
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
|
|
4091
|
-
"dev": true,
|
|
4092
|
-
"license": "MIT",
|
|
4093
|
-
"peer": true,
|
|
4094
|
-
"dependencies": {
|
|
4095
|
-
"call-bind-apply-helpers": "^1.0.1",
|
|
4096
|
-
"get-intrinsic": "^1.2.6"
|
|
4097
|
-
},
|
|
4098
|
-
"engines": {
|
|
4099
|
-
"node": ">= 0.4"
|
|
4100
|
-
},
|
|
4101
|
-
"funding": {
|
|
4102
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
4103
|
-
}
|
|
4104
|
-
},
|
|
4105
3731
|
"node_modules/camelcase": {
|
|
4106
3732
|
"version": "6.3.0",
|
|
4107
3733
|
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
|
|
@@ -4115,14 +3741,6 @@
|
|
|
4115
3741
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4116
3742
|
}
|
|
4117
3743
|
},
|
|
4118
|
-
"node_modules/caseless": {
|
|
4119
|
-
"version": "0.12.0",
|
|
4120
|
-
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
|
4121
|
-
"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
|
|
4122
|
-
"dev": true,
|
|
4123
|
-
"license": "Apache-2.0",
|
|
4124
|
-
"peer": true
|
|
4125
|
-
},
|
|
4126
3744
|
"node_modules/cbor": {
|
|
4127
3745
|
"version": "8.1.0",
|
|
4128
3746
|
"resolved": "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz",
|
|
@@ -4274,72 +3892,20 @@
|
|
|
4274
3892
|
}
|
|
4275
3893
|
},
|
|
4276
3894
|
"node_modules/cli-table3": {
|
|
4277
|
-
"version": "0.5
|
|
4278
|
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.
|
|
4279
|
-
"integrity": "sha512
|
|
3895
|
+
"version": "0.6.5",
|
|
3896
|
+
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
|
|
3897
|
+
"integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
|
|
4280
3898
|
"dev": true,
|
|
4281
3899
|
"license": "MIT",
|
|
4282
3900
|
"peer": true,
|
|
4283
3901
|
"dependencies": {
|
|
4284
|
-
"
|
|
4285
|
-
"string-width": "^2.1.1"
|
|
3902
|
+
"string-width": "^4.2.0"
|
|
4286
3903
|
},
|
|
4287
3904
|
"engines": {
|
|
4288
|
-
"node": ">=
|
|
3905
|
+
"node": "10.* || >= 12.*"
|
|
4289
3906
|
},
|
|
4290
3907
|
"optionalDependencies": {
|
|
4291
|
-
"colors": "
|
|
4292
|
-
}
|
|
4293
|
-
},
|
|
4294
|
-
"node_modules/cli-table3/node_modules/ansi-regex": {
|
|
4295
|
-
"version": "3.0.1",
|
|
4296
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz",
|
|
4297
|
-
"integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==",
|
|
4298
|
-
"dev": true,
|
|
4299
|
-
"license": "MIT",
|
|
4300
|
-
"peer": true,
|
|
4301
|
-
"engines": {
|
|
4302
|
-
"node": ">=4"
|
|
4303
|
-
}
|
|
4304
|
-
},
|
|
4305
|
-
"node_modules/cli-table3/node_modules/is-fullwidth-code-point": {
|
|
4306
|
-
"version": "2.0.0",
|
|
4307
|
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
|
4308
|
-
"integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
|
|
4309
|
-
"dev": true,
|
|
4310
|
-
"license": "MIT",
|
|
4311
|
-
"peer": true,
|
|
4312
|
-
"engines": {
|
|
4313
|
-
"node": ">=4"
|
|
4314
|
-
}
|
|
4315
|
-
},
|
|
4316
|
-
"node_modules/cli-table3/node_modules/string-width": {
|
|
4317
|
-
"version": "2.1.1",
|
|
4318
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
|
|
4319
|
-
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
|
|
4320
|
-
"dev": true,
|
|
4321
|
-
"license": "MIT",
|
|
4322
|
-
"peer": true,
|
|
4323
|
-
"dependencies": {
|
|
4324
|
-
"is-fullwidth-code-point": "^2.0.0",
|
|
4325
|
-
"strip-ansi": "^4.0.0"
|
|
4326
|
-
},
|
|
4327
|
-
"engines": {
|
|
4328
|
-
"node": ">=4"
|
|
4329
|
-
}
|
|
4330
|
-
},
|
|
4331
|
-
"node_modules/cli-table3/node_modules/strip-ansi": {
|
|
4332
|
-
"version": "4.0.0",
|
|
4333
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
|
|
4334
|
-
"integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==",
|
|
4335
|
-
"dev": true,
|
|
4336
|
-
"license": "MIT",
|
|
4337
|
-
"peer": true,
|
|
4338
|
-
"dependencies": {
|
|
4339
|
-
"ansi-regex": "^3.0.0"
|
|
4340
|
-
},
|
|
4341
|
-
"engines": {
|
|
4342
|
-
"node": ">=4"
|
|
3908
|
+
"@colors/colors": "1.5.0"
|
|
4343
3909
|
}
|
|
4344
3910
|
},
|
|
4345
3911
|
"node_modules/cliui": {
|
|
@@ -4374,17 +3940,6 @@
|
|
|
4374
3940
|
"dev": true,
|
|
4375
3941
|
"license": "MIT"
|
|
4376
3942
|
},
|
|
4377
|
-
"node_modules/colors": {
|
|
4378
|
-
"version": "1.4.0",
|
|
4379
|
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
|
4380
|
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
|
4381
|
-
"dev": true,
|
|
4382
|
-
"license": "MIT",
|
|
4383
|
-
"peer": true,
|
|
4384
|
-
"engines": {
|
|
4385
|
-
"node": ">=0.1.90"
|
|
4386
|
-
}
|
|
4387
|
-
},
|
|
4388
3943
|
"node_modules/combined-stream": {
|
|
4389
3944
|
"version": "1.0.8",
|
|
4390
3945
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
@@ -4571,59 +4126,6 @@
|
|
|
4571
4126
|
"license": "MIT",
|
|
4572
4127
|
"peer": true
|
|
4573
4128
|
},
|
|
4574
|
-
"node_modules/concat-stream": {
|
|
4575
|
-
"version": "1.6.2",
|
|
4576
|
-
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
|
|
4577
|
-
"integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
|
|
4578
|
-
"dev": true,
|
|
4579
|
-
"engines": [
|
|
4580
|
-
"node >= 0.8"
|
|
4581
|
-
],
|
|
4582
|
-
"license": "MIT",
|
|
4583
|
-
"peer": true,
|
|
4584
|
-
"dependencies": {
|
|
4585
|
-
"buffer-from": "^1.0.0",
|
|
4586
|
-
"inherits": "^2.0.3",
|
|
4587
|
-
"readable-stream": "^2.2.2",
|
|
4588
|
-
"typedarray": "^0.0.6"
|
|
4589
|
-
}
|
|
4590
|
-
},
|
|
4591
|
-
"node_modules/concat-stream/node_modules/readable-stream": {
|
|
4592
|
-
"version": "2.3.8",
|
|
4593
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
|
|
4594
|
-
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
|
|
4595
|
-
"dev": true,
|
|
4596
|
-
"license": "MIT",
|
|
4597
|
-
"peer": true,
|
|
4598
|
-
"dependencies": {
|
|
4599
|
-
"core-util-is": "~1.0.0",
|
|
4600
|
-
"inherits": "~2.0.3",
|
|
4601
|
-
"isarray": "~1.0.0",
|
|
4602
|
-
"process-nextick-args": "~2.0.0",
|
|
4603
|
-
"safe-buffer": "~5.1.1",
|
|
4604
|
-
"string_decoder": "~1.1.1",
|
|
4605
|
-
"util-deprecate": "~1.0.1"
|
|
4606
|
-
}
|
|
4607
|
-
},
|
|
4608
|
-
"node_modules/concat-stream/node_modules/safe-buffer": {
|
|
4609
|
-
"version": "5.1.2",
|
|
4610
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
4611
|
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
4612
|
-
"dev": true,
|
|
4613
|
-
"license": "MIT",
|
|
4614
|
-
"peer": true
|
|
4615
|
-
},
|
|
4616
|
-
"node_modules/concat-stream/node_modules/string_decoder": {
|
|
4617
|
-
"version": "1.1.1",
|
|
4618
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
|
4619
|
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
|
4620
|
-
"dev": true,
|
|
4621
|
-
"license": "MIT",
|
|
4622
|
-
"peer": true,
|
|
4623
|
-
"dependencies": {
|
|
4624
|
-
"safe-buffer": "~5.1.0"
|
|
4625
|
-
}
|
|
4626
|
-
},
|
|
4627
4129
|
"node_modules/cookie": {
|
|
4628
4130
|
"version": "0.4.2",
|
|
4629
4131
|
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz",
|
|
@@ -4634,14 +4136,6 @@
|
|
|
4634
4136
|
"node": ">= 0.6"
|
|
4635
4137
|
}
|
|
4636
4138
|
},
|
|
4637
|
-
"node_modules/core-util-is": {
|
|
4638
|
-
"version": "1.0.3",
|
|
4639
|
-
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
|
4640
|
-
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
4641
|
-
"dev": true,
|
|
4642
|
-
"license": "MIT",
|
|
4643
|
-
"peer": true
|
|
4644
|
-
},
|
|
4645
4139
|
"node_modules/create-hash": {
|
|
4646
4140
|
"version": "1.2.0",
|
|
4647
4141
|
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
|
|
@@ -4679,6 +4173,39 @@
|
|
|
4679
4173
|
"license": "MIT",
|
|
4680
4174
|
"peer": true
|
|
4681
4175
|
},
|
|
4176
|
+
"node_modules/cross-spawn": {
|
|
4177
|
+
"version": "7.0.6",
|
|
4178
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
4179
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
4180
|
+
"dev": true,
|
|
4181
|
+
"license": "MIT",
|
|
4182
|
+
"peer": true,
|
|
4183
|
+
"dependencies": {
|
|
4184
|
+
"path-key": "^3.1.0",
|
|
4185
|
+
"shebang-command": "^2.0.0",
|
|
4186
|
+
"which": "^2.0.1"
|
|
4187
|
+
},
|
|
4188
|
+
"engines": {
|
|
4189
|
+
"node": ">= 8"
|
|
4190
|
+
}
|
|
4191
|
+
},
|
|
4192
|
+
"node_modules/cross-spawn/node_modules/which": {
|
|
4193
|
+
"version": "2.0.2",
|
|
4194
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
4195
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
4196
|
+
"dev": true,
|
|
4197
|
+
"license": "ISC",
|
|
4198
|
+
"peer": true,
|
|
4199
|
+
"dependencies": {
|
|
4200
|
+
"isexe": "^2.0.0"
|
|
4201
|
+
},
|
|
4202
|
+
"bin": {
|
|
4203
|
+
"node-which": "bin/node-which"
|
|
4204
|
+
},
|
|
4205
|
+
"engines": {
|
|
4206
|
+
"node": ">= 8"
|
|
4207
|
+
}
|
|
4208
|
+
},
|
|
4682
4209
|
"node_modules/crypt": {
|
|
4683
4210
|
"version": "0.0.2",
|
|
4684
4211
|
"resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz",
|
|
@@ -4833,6 +4360,14 @@
|
|
|
4833
4360
|
"node": ">= 0.4"
|
|
4834
4361
|
}
|
|
4835
4362
|
},
|
|
4363
|
+
"node_modules/eastasianwidth": {
|
|
4364
|
+
"version": "0.2.0",
|
|
4365
|
+
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
4366
|
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
4367
|
+
"dev": true,
|
|
4368
|
+
"license": "MIT",
|
|
4369
|
+
"peer": true
|
|
4370
|
+
},
|
|
4836
4371
|
"node_modules/elliptic": {
|
|
4837
4372
|
"version": "6.5.4",
|
|
4838
4373
|
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
|
@@ -5007,162 +4542,16 @@
|
|
|
5007
4542
|
"engines": {
|
|
5008
4543
|
"node": ">=0.10.0"
|
|
5009
4544
|
}
|
|
5010
|
-
},
|
|
5011
|
-
"node_modules/esutils": {
|
|
5012
|
-
"version": "2.0.3",
|
|
5013
|
-
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
5014
|
-
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
5015
|
-
"dev": true,
|
|
5016
|
-
"license": "BSD-2-Clause",
|
|
5017
|
-
"peer": true,
|
|
5018
|
-
"engines": {
|
|
5019
|
-
"node": ">=0.10.0"
|
|
5020
|
-
}
|
|
5021
|
-
},
|
|
5022
|
-
"node_modules/eth-gas-reporter": {
|
|
5023
|
-
"version": "0.2.27",
|
|
5024
|
-
"resolved": "https://registry.npmjs.org/eth-gas-reporter/-/eth-gas-reporter-0.2.27.tgz",
|
|
5025
|
-
"integrity": "sha512-femhvoAM7wL0GcI8ozTdxfuBtBFJ9qsyIAsmKVjlWAHUbdnnXHt+lKzz/kmldM5lA9jLuNHGwuIxorNpLbR1Zw==",
|
|
5026
|
-
"dev": true,
|
|
5027
|
-
"license": "MIT",
|
|
5028
|
-
"peer": true,
|
|
5029
|
-
"dependencies": {
|
|
5030
|
-
"@solidity-parser/parser": "^0.14.0",
|
|
5031
|
-
"axios": "^1.5.1",
|
|
5032
|
-
"cli-table3": "^0.5.0",
|
|
5033
|
-
"colors": "1.4.0",
|
|
5034
|
-
"ethereum-cryptography": "^1.0.3",
|
|
5035
|
-
"ethers": "^5.7.2",
|
|
5036
|
-
"fs-readdir-recursive": "^1.1.0",
|
|
5037
|
-
"lodash": "^4.17.14",
|
|
5038
|
-
"markdown-table": "^1.1.3",
|
|
5039
|
-
"mocha": "^10.2.0",
|
|
5040
|
-
"req-cwd": "^2.0.0",
|
|
5041
|
-
"sha1": "^1.1.1",
|
|
5042
|
-
"sync-request": "^6.0.0"
|
|
5043
|
-
},
|
|
5044
|
-
"peerDependencies": {
|
|
5045
|
-
"@codechecks/client": "^0.1.0"
|
|
5046
|
-
},
|
|
5047
|
-
"peerDependenciesMeta": {
|
|
5048
|
-
"@codechecks/client": {
|
|
5049
|
-
"optional": true
|
|
5050
|
-
}
|
|
5051
|
-
}
|
|
5052
|
-
},
|
|
5053
|
-
"node_modules/eth-gas-reporter/node_modules/@noble/hashes": {
|
|
5054
|
-
"version": "1.2.0",
|
|
5055
|
-
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.2.0.tgz",
|
|
5056
|
-
"integrity": "sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==",
|
|
5057
|
-
"dev": true,
|
|
5058
|
-
"funding": [
|
|
5059
|
-
{
|
|
5060
|
-
"type": "individual",
|
|
5061
|
-
"url": "https://paulmillr.com/funding/"
|
|
5062
|
-
}
|
|
5063
|
-
],
|
|
5064
|
-
"license": "MIT",
|
|
5065
|
-
"peer": true
|
|
5066
|
-
},
|
|
5067
|
-
"node_modules/eth-gas-reporter/node_modules/@scure/bip32": {
|
|
5068
|
-
"version": "1.1.5",
|
|
5069
|
-
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.5.tgz",
|
|
5070
|
-
"integrity": "sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==",
|
|
5071
|
-
"dev": true,
|
|
5072
|
-
"funding": [
|
|
5073
|
-
{
|
|
5074
|
-
"type": "individual",
|
|
5075
|
-
"url": "https://paulmillr.com/funding/"
|
|
5076
|
-
}
|
|
5077
|
-
],
|
|
5078
|
-
"license": "MIT",
|
|
5079
|
-
"peer": true,
|
|
5080
|
-
"dependencies": {
|
|
5081
|
-
"@noble/hashes": "~1.2.0",
|
|
5082
|
-
"@noble/secp256k1": "~1.7.0",
|
|
5083
|
-
"@scure/base": "~1.1.0"
|
|
5084
|
-
}
|
|
5085
|
-
},
|
|
5086
|
-
"node_modules/eth-gas-reporter/node_modules/@scure/bip39": {
|
|
5087
|
-
"version": "1.1.1",
|
|
5088
|
-
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.1.tgz",
|
|
5089
|
-
"integrity": "sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==",
|
|
5090
|
-
"dev": true,
|
|
5091
|
-
"funding": [
|
|
5092
|
-
{
|
|
5093
|
-
"type": "individual",
|
|
5094
|
-
"url": "https://paulmillr.com/funding/"
|
|
5095
|
-
}
|
|
5096
|
-
],
|
|
5097
|
-
"license": "MIT",
|
|
5098
|
-
"peer": true,
|
|
5099
|
-
"dependencies": {
|
|
5100
|
-
"@noble/hashes": "~1.2.0",
|
|
5101
|
-
"@scure/base": "~1.1.0"
|
|
5102
|
-
}
|
|
5103
|
-
},
|
|
5104
|
-
"node_modules/eth-gas-reporter/node_modules/ethereum-cryptography": {
|
|
5105
|
-
"version": "1.2.0",
|
|
5106
|
-
"resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.2.0.tgz",
|
|
5107
|
-
"integrity": "sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==",
|
|
5108
|
-
"dev": true,
|
|
5109
|
-
"license": "MIT",
|
|
5110
|
-
"peer": true,
|
|
5111
|
-
"dependencies": {
|
|
5112
|
-
"@noble/hashes": "1.2.0",
|
|
5113
|
-
"@noble/secp256k1": "1.7.1",
|
|
5114
|
-
"@scure/bip32": "1.1.5",
|
|
5115
|
-
"@scure/bip39": "1.1.1"
|
|
5116
|
-
}
|
|
5117
|
-
},
|
|
5118
|
-
"node_modules/eth-gas-reporter/node_modules/ethers": {
|
|
5119
|
-
"version": "5.7.2",
|
|
5120
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz",
|
|
5121
|
-
"integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==",
|
|
5122
|
-
"dev": true,
|
|
5123
|
-
"funding": [
|
|
5124
|
-
{
|
|
5125
|
-
"type": "individual",
|
|
5126
|
-
"url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
|
|
5127
|
-
},
|
|
5128
|
-
{
|
|
5129
|
-
"type": "individual",
|
|
5130
|
-
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
5131
|
-
}
|
|
5132
|
-
],
|
|
5133
|
-
"license": "MIT",
|
|
4545
|
+
},
|
|
4546
|
+
"node_modules/esutils": {
|
|
4547
|
+
"version": "2.0.3",
|
|
4548
|
+
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
4549
|
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
4550
|
+
"dev": true,
|
|
4551
|
+
"license": "BSD-2-Clause",
|
|
5134
4552
|
"peer": true,
|
|
5135
|
-
"
|
|
5136
|
-
"
|
|
5137
|
-
"@ethersproject/abstract-provider": "5.7.0",
|
|
5138
|
-
"@ethersproject/abstract-signer": "5.7.0",
|
|
5139
|
-
"@ethersproject/address": "5.7.0",
|
|
5140
|
-
"@ethersproject/base64": "5.7.0",
|
|
5141
|
-
"@ethersproject/basex": "5.7.0",
|
|
5142
|
-
"@ethersproject/bignumber": "5.7.0",
|
|
5143
|
-
"@ethersproject/bytes": "5.7.0",
|
|
5144
|
-
"@ethersproject/constants": "5.7.0",
|
|
5145
|
-
"@ethersproject/contracts": "5.7.0",
|
|
5146
|
-
"@ethersproject/hash": "5.7.0",
|
|
5147
|
-
"@ethersproject/hdnode": "5.7.0",
|
|
5148
|
-
"@ethersproject/json-wallets": "5.7.0",
|
|
5149
|
-
"@ethersproject/keccak256": "5.7.0",
|
|
5150
|
-
"@ethersproject/logger": "5.7.0",
|
|
5151
|
-
"@ethersproject/networks": "5.7.1",
|
|
5152
|
-
"@ethersproject/pbkdf2": "5.7.0",
|
|
5153
|
-
"@ethersproject/properties": "5.7.0",
|
|
5154
|
-
"@ethersproject/providers": "5.7.2",
|
|
5155
|
-
"@ethersproject/random": "5.7.0",
|
|
5156
|
-
"@ethersproject/rlp": "5.7.0",
|
|
5157
|
-
"@ethersproject/sha2": "5.7.0",
|
|
5158
|
-
"@ethersproject/signing-key": "5.7.0",
|
|
5159
|
-
"@ethersproject/solidity": "5.7.0",
|
|
5160
|
-
"@ethersproject/strings": "5.7.0",
|
|
5161
|
-
"@ethersproject/transactions": "5.7.0",
|
|
5162
|
-
"@ethersproject/units": "5.7.0",
|
|
5163
|
-
"@ethersproject/wallet": "5.7.0",
|
|
5164
|
-
"@ethersproject/web": "5.7.1",
|
|
5165
|
-
"@ethersproject/wordlists": "5.7.0"
|
|
4553
|
+
"engines": {
|
|
4554
|
+
"node": ">=0.10.0"
|
|
5166
4555
|
}
|
|
5167
4556
|
},
|
|
5168
4557
|
"node_modules/ethereum-bloom-filters": {
|
|
@@ -5214,51 +4603,6 @@
|
|
|
5214
4603
|
"setimmediate": "^1.0.5"
|
|
5215
4604
|
}
|
|
5216
4605
|
},
|
|
5217
|
-
"node_modules/ethereumjs-abi": {
|
|
5218
|
-
"version": "0.6.8",
|
|
5219
|
-
"resolved": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz",
|
|
5220
|
-
"integrity": "sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==",
|
|
5221
|
-
"deprecated": "This library has been deprecated and usage is discouraged.",
|
|
5222
|
-
"dev": true,
|
|
5223
|
-
"license": "MIT",
|
|
5224
|
-
"dependencies": {
|
|
5225
|
-
"bn.js": "^4.11.8",
|
|
5226
|
-
"ethereumjs-util": "^6.0.0"
|
|
5227
|
-
}
|
|
5228
|
-
},
|
|
5229
|
-
"node_modules/ethereumjs-abi/node_modules/@types/bn.js": {
|
|
5230
|
-
"version": "4.11.6",
|
|
5231
|
-
"resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz",
|
|
5232
|
-
"integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==",
|
|
5233
|
-
"dev": true,
|
|
5234
|
-
"license": "MIT",
|
|
5235
|
-
"dependencies": {
|
|
5236
|
-
"@types/node": "*"
|
|
5237
|
-
}
|
|
5238
|
-
},
|
|
5239
|
-
"node_modules/ethereumjs-abi/node_modules/bn.js": {
|
|
5240
|
-
"version": "4.12.1",
|
|
5241
|
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz",
|
|
5242
|
-
"integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==",
|
|
5243
|
-
"dev": true,
|
|
5244
|
-
"license": "MIT"
|
|
5245
|
-
},
|
|
5246
|
-
"node_modules/ethereumjs-abi/node_modules/ethereumjs-util": {
|
|
5247
|
-
"version": "6.2.1",
|
|
5248
|
-
"resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz",
|
|
5249
|
-
"integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==",
|
|
5250
|
-
"dev": true,
|
|
5251
|
-
"license": "MPL-2.0",
|
|
5252
|
-
"dependencies": {
|
|
5253
|
-
"@types/bn.js": "^4.11.3",
|
|
5254
|
-
"bn.js": "^4.11.0",
|
|
5255
|
-
"create-hash": "^1.1.2",
|
|
5256
|
-
"elliptic": "^6.5.2",
|
|
5257
|
-
"ethereum-cryptography": "^0.1.3",
|
|
5258
|
-
"ethjs-util": "0.1.6",
|
|
5259
|
-
"rlp": "^2.2.3"
|
|
5260
|
-
}
|
|
5261
|
-
},
|
|
5262
4606
|
"node_modules/ethereumjs-util": {
|
|
5263
4607
|
"version": "7.1.5",
|
|
5264
4608
|
"resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz",
|
|
@@ -5277,9 +4621,9 @@
|
|
|
5277
4621
|
}
|
|
5278
4622
|
},
|
|
5279
4623
|
"node_modules/ethers": {
|
|
5280
|
-
"version": "6.
|
|
5281
|
-
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.
|
|
5282
|
-
"integrity": "sha512
|
|
4624
|
+
"version": "6.14.4",
|
|
4625
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.14.4.tgz",
|
|
4626
|
+
"integrity": "sha512-Jm/dzRs2Z9iBrT6e9TvGxyb5YVKAPLlpna7hjxH7KH/++DSh2T/JVmQUv7iHI5E55hDbp/gEVvstWYXVxXFzsA==",
|
|
5283
4627
|
"dev": true,
|
|
5284
4628
|
"funding": [
|
|
5285
4629
|
{
|
|
@@ -5357,20 +4701,13 @@
|
|
|
5357
4701
|
"license": "MIT",
|
|
5358
4702
|
"peer": true
|
|
5359
4703
|
},
|
|
5360
|
-
"node_modules/
|
|
5361
|
-
"version": "0.1
|
|
5362
|
-
"resolved": "https://registry.npmjs.org/
|
|
5363
|
-
"integrity": "sha512-
|
|
4704
|
+
"node_modules/eventemitter3": {
|
|
4705
|
+
"version": "5.0.1",
|
|
4706
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
|
|
4707
|
+
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
|
|
5364
4708
|
"dev": true,
|
|
5365
4709
|
"license": "MIT",
|
|
5366
|
-
"
|
|
5367
|
-
"is-hex-prefixed": "1.0.0",
|
|
5368
|
-
"strip-hex-prefix": "1.0.0"
|
|
5369
|
-
},
|
|
5370
|
-
"engines": {
|
|
5371
|
-
"node": ">=6.5.0",
|
|
5372
|
-
"npm": ">=3"
|
|
5373
|
-
}
|
|
4710
|
+
"peer": true
|
|
5374
4711
|
},
|
|
5375
4712
|
"node_modules/evp_bytestokey": {
|
|
5376
4713
|
"version": "1.0.3",
|
|
@@ -5551,16 +4888,49 @@
|
|
|
5551
4888
|
}
|
|
5552
4889
|
}
|
|
5553
4890
|
},
|
|
4891
|
+
"node_modules/foreground-child": {
|
|
4892
|
+
"version": "3.3.1",
|
|
4893
|
+
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
|
|
4894
|
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
4895
|
+
"dev": true,
|
|
4896
|
+
"license": "ISC",
|
|
4897
|
+
"peer": true,
|
|
4898
|
+
"dependencies": {
|
|
4899
|
+
"cross-spawn": "^7.0.6",
|
|
4900
|
+
"signal-exit": "^4.0.1"
|
|
4901
|
+
},
|
|
4902
|
+
"engines": {
|
|
4903
|
+
"node": ">=14"
|
|
4904
|
+
},
|
|
4905
|
+
"funding": {
|
|
4906
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4907
|
+
}
|
|
4908
|
+
},
|
|
4909
|
+
"node_modules/foreground-child/node_modules/signal-exit": {
|
|
4910
|
+
"version": "4.1.0",
|
|
4911
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
4912
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
4913
|
+
"dev": true,
|
|
4914
|
+
"license": "ISC",
|
|
4915
|
+
"peer": true,
|
|
4916
|
+
"engines": {
|
|
4917
|
+
"node": ">=14"
|
|
4918
|
+
},
|
|
4919
|
+
"funding": {
|
|
4920
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4921
|
+
}
|
|
4922
|
+
},
|
|
5554
4923
|
"node_modules/form-data": {
|
|
5555
|
-
"version": "4.0.
|
|
5556
|
-
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.
|
|
5557
|
-
"integrity": "sha512-
|
|
4924
|
+
"version": "4.0.4",
|
|
4925
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
|
|
4926
|
+
"integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
|
|
5558
4927
|
"dev": true,
|
|
5559
4928
|
"license": "MIT",
|
|
5560
4929
|
"dependencies": {
|
|
5561
4930
|
"asynckit": "^0.4.0",
|
|
5562
4931
|
"combined-stream": "^1.0.8",
|
|
5563
4932
|
"es-set-tostringtag": "^2.1.0",
|
|
4933
|
+
"hasown": "^2.0.2",
|
|
5564
4934
|
"mime-types": "^2.1.12"
|
|
5565
4935
|
},
|
|
5566
4936
|
"engines": {
|
|
@@ -5590,14 +4960,6 @@
|
|
|
5590
4960
|
"node": ">=12"
|
|
5591
4961
|
}
|
|
5592
4962
|
},
|
|
5593
|
-
"node_modules/fs-readdir-recursive": {
|
|
5594
|
-
"version": "1.1.0",
|
|
5595
|
-
"resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
|
|
5596
|
-
"integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
|
|
5597
|
-
"dev": true,
|
|
5598
|
-
"license": "MIT",
|
|
5599
|
-
"peer": true
|
|
5600
|
-
},
|
|
5601
4963
|
"node_modules/fs.realpath": {
|
|
5602
4964
|
"version": "1.0.0",
|
|
5603
4965
|
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
@@ -5676,17 +5038,6 @@
|
|
|
5676
5038
|
"url": "https://github.com/sponsors/ljharb"
|
|
5677
5039
|
}
|
|
5678
5040
|
},
|
|
5679
|
-
"node_modules/get-port": {
|
|
5680
|
-
"version": "3.2.0",
|
|
5681
|
-
"resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz",
|
|
5682
|
-
"integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==",
|
|
5683
|
-
"dev": true,
|
|
5684
|
-
"license": "MIT",
|
|
5685
|
-
"peer": true,
|
|
5686
|
-
"engines": {
|
|
5687
|
-
"node": ">=4"
|
|
5688
|
-
}
|
|
5689
|
-
},
|
|
5690
5041
|
"node_modules/get-proto": {
|
|
5691
5042
|
"version": "1.0.1",
|
|
5692
5043
|
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
@@ -6003,22 +5354,17 @@
|
|
|
6003
5354
|
}
|
|
6004
5355
|
},
|
|
6005
5356
|
"node_modules/hardhat": {
|
|
6006
|
-
"version": "2.
|
|
6007
|
-
"resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.
|
|
6008
|
-
"integrity": "sha512-
|
|
5357
|
+
"version": "2.26.2",
|
|
5358
|
+
"resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.26.2.tgz",
|
|
5359
|
+
"integrity": "sha512-uIETdC1MAWSnu+48B+583r3b8JqHtkBGEiXoAPV5hcXYGkCW5Fnnpn7SIgPa8owhObm9oUqIqMXMJ6H92N7Pyg==",
|
|
6009
5360
|
"dev": true,
|
|
6010
5361
|
"license": "MIT",
|
|
6011
5362
|
"dependencies": {
|
|
5363
|
+
"@ethereumjs/util": "^9.1.0",
|
|
6012
5364
|
"@ethersproject/abi": "^5.1.2",
|
|
6013
|
-
"@
|
|
6014
|
-
"@nomicfoundation/edr": "^0.8.0",
|
|
6015
|
-
"@nomicfoundation/ethereumjs-common": "4.0.4",
|
|
6016
|
-
"@nomicfoundation/ethereumjs-tx": "5.0.4",
|
|
6017
|
-
"@nomicfoundation/ethereumjs-util": "9.0.4",
|
|
5365
|
+
"@nomicfoundation/edr": "^0.11.3",
|
|
6018
5366
|
"@nomicfoundation/solidity-analyzer": "^0.1.0",
|
|
6019
5367
|
"@sentry/node": "^5.18.1",
|
|
6020
|
-
"@types/bn.js": "^5.1.0",
|
|
6021
|
-
"@types/lru-cache": "^5.1.0",
|
|
6022
5368
|
"adm-zip": "^0.4.16",
|
|
6023
5369
|
"aggregate-error": "^3.0.0",
|
|
6024
5370
|
"ansi-escapes": "^4.3.0",
|
|
@@ -6029,7 +5375,6 @@
|
|
|
6029
5375
|
"enquirer": "^2.3.0",
|
|
6030
5376
|
"env-paths": "^2.2.0",
|
|
6031
5377
|
"ethereum-cryptography": "^1.0.3",
|
|
6032
|
-
"ethereumjs-abi": "^0.6.8",
|
|
6033
5378
|
"find-up": "^5.0.0",
|
|
6034
5379
|
"fp-ts": "1.19.3",
|
|
6035
5380
|
"fs-extra": "^7.0.1",
|
|
@@ -6038,6 +5383,7 @@
|
|
|
6038
5383
|
"json-stream-stringify": "^3.1.4",
|
|
6039
5384
|
"keccak": "^3.0.2",
|
|
6040
5385
|
"lodash": "^4.17.11",
|
|
5386
|
+
"micro-eth-signer": "^0.14.0",
|
|
6041
5387
|
"mnemonist": "^0.38.0",
|
|
6042
5388
|
"mocha": "^10.0.0",
|
|
6043
5389
|
"p-map": "^4.0.0",
|
|
@@ -6071,19 +5417,203 @@
|
|
|
6071
5417
|
}
|
|
6072
5418
|
},
|
|
6073
5419
|
"node_modules/hardhat-gas-reporter": {
|
|
6074
|
-
"version": "
|
|
6075
|
-
"resolved": "https://registry.npmjs.org/hardhat-gas-reporter/-/hardhat-gas-reporter-
|
|
6076
|
-
"integrity": "sha512-
|
|
5420
|
+
"version": "2.3.0",
|
|
5421
|
+
"resolved": "https://registry.npmjs.org/hardhat-gas-reporter/-/hardhat-gas-reporter-2.3.0.tgz",
|
|
5422
|
+
"integrity": "sha512-ySdA+044xMQv1BlJu5CYXToHzMexKFfIWxlQTBNNoerx1x96+d15IMdN01iQZ/TJ7NH2V5sU73bz77LoS/PEVw==",
|
|
6077
5423
|
"dev": true,
|
|
6078
5424
|
"license": "MIT",
|
|
6079
5425
|
"peer": true,
|
|
6080
5426
|
"dependencies": {
|
|
6081
|
-
"
|
|
6082
|
-
"
|
|
6083
|
-
"
|
|
5427
|
+
"@ethersproject/abi": "^5.7.0",
|
|
5428
|
+
"@ethersproject/bytes": "^5.7.0",
|
|
5429
|
+
"@ethersproject/units": "^5.7.0",
|
|
5430
|
+
"@solidity-parser/parser": "^0.20.1",
|
|
5431
|
+
"axios": "^1.6.7",
|
|
5432
|
+
"brotli-wasm": "^2.0.1",
|
|
5433
|
+
"chalk": "4.1.2",
|
|
5434
|
+
"cli-table3": "^0.6.3",
|
|
5435
|
+
"ethereum-cryptography": "^2.1.3",
|
|
5436
|
+
"glob": "^10.3.10",
|
|
5437
|
+
"jsonschema": "^1.4.1",
|
|
5438
|
+
"lodash": "^4.17.21",
|
|
5439
|
+
"markdown-table": "2.0.0",
|
|
5440
|
+
"sha1": "^1.1.1",
|
|
5441
|
+
"viem": "^2.27.0"
|
|
6084
5442
|
},
|
|
6085
5443
|
"peerDependencies": {
|
|
6086
|
-
"hardhat": "^2.0
|
|
5444
|
+
"hardhat": "^2.16.0"
|
|
5445
|
+
}
|
|
5446
|
+
},
|
|
5447
|
+
"node_modules/hardhat-gas-reporter/node_modules/@noble/curves": {
|
|
5448
|
+
"version": "1.4.2",
|
|
5449
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz",
|
|
5450
|
+
"integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==",
|
|
5451
|
+
"dev": true,
|
|
5452
|
+
"license": "MIT",
|
|
5453
|
+
"peer": true,
|
|
5454
|
+
"dependencies": {
|
|
5455
|
+
"@noble/hashes": "1.4.0"
|
|
5456
|
+
},
|
|
5457
|
+
"funding": {
|
|
5458
|
+
"url": "https://paulmillr.com/funding/"
|
|
5459
|
+
}
|
|
5460
|
+
},
|
|
5461
|
+
"node_modules/hardhat-gas-reporter/node_modules/@noble/hashes": {
|
|
5462
|
+
"version": "1.4.0",
|
|
5463
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
5464
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
5465
|
+
"dev": true,
|
|
5466
|
+
"license": "MIT",
|
|
5467
|
+
"peer": true,
|
|
5468
|
+
"engines": {
|
|
5469
|
+
"node": ">= 16"
|
|
5470
|
+
},
|
|
5471
|
+
"funding": {
|
|
5472
|
+
"url": "https://paulmillr.com/funding/"
|
|
5473
|
+
}
|
|
5474
|
+
},
|
|
5475
|
+
"node_modules/hardhat-gas-reporter/node_modules/ethereum-cryptography": {
|
|
5476
|
+
"version": "2.2.1",
|
|
5477
|
+
"resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz",
|
|
5478
|
+
"integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==",
|
|
5479
|
+
"dev": true,
|
|
5480
|
+
"license": "MIT",
|
|
5481
|
+
"peer": true,
|
|
5482
|
+
"dependencies": {
|
|
5483
|
+
"@noble/curves": "1.4.2",
|
|
5484
|
+
"@noble/hashes": "1.4.0",
|
|
5485
|
+
"@scure/bip32": "1.4.0",
|
|
5486
|
+
"@scure/bip39": "1.3.0"
|
|
5487
|
+
}
|
|
5488
|
+
},
|
|
5489
|
+
"node_modules/hardhat-gas-reporter/node_modules/glob": {
|
|
5490
|
+
"version": "10.4.5",
|
|
5491
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
|
|
5492
|
+
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
|
|
5493
|
+
"dev": true,
|
|
5494
|
+
"license": "ISC",
|
|
5495
|
+
"peer": true,
|
|
5496
|
+
"dependencies": {
|
|
5497
|
+
"foreground-child": "^3.1.0",
|
|
5498
|
+
"jackspeak": "^3.1.2",
|
|
5499
|
+
"minimatch": "^9.0.4",
|
|
5500
|
+
"minipass": "^7.1.2",
|
|
5501
|
+
"package-json-from-dist": "^1.0.0",
|
|
5502
|
+
"path-scurry": "^1.11.1"
|
|
5503
|
+
},
|
|
5504
|
+
"bin": {
|
|
5505
|
+
"glob": "dist/esm/bin.mjs"
|
|
5506
|
+
},
|
|
5507
|
+
"funding": {
|
|
5508
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
5509
|
+
}
|
|
5510
|
+
},
|
|
5511
|
+
"node_modules/hardhat/node_modules/@ethereumjs/rlp": {
|
|
5512
|
+
"version": "5.0.2",
|
|
5513
|
+
"resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz",
|
|
5514
|
+
"integrity": "sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==",
|
|
5515
|
+
"dev": true,
|
|
5516
|
+
"license": "MPL-2.0",
|
|
5517
|
+
"bin": {
|
|
5518
|
+
"rlp": "bin/rlp.cjs"
|
|
5519
|
+
},
|
|
5520
|
+
"engines": {
|
|
5521
|
+
"node": ">=18"
|
|
5522
|
+
}
|
|
5523
|
+
},
|
|
5524
|
+
"node_modules/hardhat/node_modules/@ethereumjs/util": {
|
|
5525
|
+
"version": "9.1.0",
|
|
5526
|
+
"resolved": "https://registry.npmjs.org/@ethereumjs/util/-/util-9.1.0.tgz",
|
|
5527
|
+
"integrity": "sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog==",
|
|
5528
|
+
"dev": true,
|
|
5529
|
+
"license": "MPL-2.0",
|
|
5530
|
+
"dependencies": {
|
|
5531
|
+
"@ethereumjs/rlp": "^5.0.2",
|
|
5532
|
+
"ethereum-cryptography": "^2.2.1"
|
|
5533
|
+
},
|
|
5534
|
+
"engines": {
|
|
5535
|
+
"node": ">=18"
|
|
5536
|
+
}
|
|
5537
|
+
},
|
|
5538
|
+
"node_modules/hardhat/node_modules/@ethereumjs/util/node_modules/@noble/hashes": {
|
|
5539
|
+
"version": "1.4.0",
|
|
5540
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
5541
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
5542
|
+
"dev": true,
|
|
5543
|
+
"license": "MIT",
|
|
5544
|
+
"engines": {
|
|
5545
|
+
"node": ">= 16"
|
|
5546
|
+
},
|
|
5547
|
+
"funding": {
|
|
5548
|
+
"url": "https://paulmillr.com/funding/"
|
|
5549
|
+
}
|
|
5550
|
+
},
|
|
5551
|
+
"node_modules/hardhat/node_modules/@ethereumjs/util/node_modules/@scure/bip32": {
|
|
5552
|
+
"version": "1.4.0",
|
|
5553
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz",
|
|
5554
|
+
"integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==",
|
|
5555
|
+
"dev": true,
|
|
5556
|
+
"license": "MIT",
|
|
5557
|
+
"dependencies": {
|
|
5558
|
+
"@noble/curves": "~1.4.0",
|
|
5559
|
+
"@noble/hashes": "~1.4.0",
|
|
5560
|
+
"@scure/base": "~1.1.6"
|
|
5561
|
+
},
|
|
5562
|
+
"funding": {
|
|
5563
|
+
"url": "https://paulmillr.com/funding/"
|
|
5564
|
+
}
|
|
5565
|
+
},
|
|
5566
|
+
"node_modules/hardhat/node_modules/@ethereumjs/util/node_modules/@scure/bip39": {
|
|
5567
|
+
"version": "1.3.0",
|
|
5568
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz",
|
|
5569
|
+
"integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==",
|
|
5570
|
+
"dev": true,
|
|
5571
|
+
"license": "MIT",
|
|
5572
|
+
"dependencies": {
|
|
5573
|
+
"@noble/hashes": "~1.4.0",
|
|
5574
|
+
"@scure/base": "~1.1.6"
|
|
5575
|
+
},
|
|
5576
|
+
"funding": {
|
|
5577
|
+
"url": "https://paulmillr.com/funding/"
|
|
5578
|
+
}
|
|
5579
|
+
},
|
|
5580
|
+
"node_modules/hardhat/node_modules/@ethereumjs/util/node_modules/ethereum-cryptography": {
|
|
5581
|
+
"version": "2.2.1",
|
|
5582
|
+
"resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz",
|
|
5583
|
+
"integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==",
|
|
5584
|
+
"dev": true,
|
|
5585
|
+
"license": "MIT",
|
|
5586
|
+
"dependencies": {
|
|
5587
|
+
"@noble/curves": "1.4.2",
|
|
5588
|
+
"@noble/hashes": "1.4.0",
|
|
5589
|
+
"@scure/bip32": "1.4.0",
|
|
5590
|
+
"@scure/bip39": "1.3.0"
|
|
5591
|
+
}
|
|
5592
|
+
},
|
|
5593
|
+
"node_modules/hardhat/node_modules/@noble/curves": {
|
|
5594
|
+
"version": "1.4.2",
|
|
5595
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz",
|
|
5596
|
+
"integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==",
|
|
5597
|
+
"dev": true,
|
|
5598
|
+
"license": "MIT",
|
|
5599
|
+
"dependencies": {
|
|
5600
|
+
"@noble/hashes": "1.4.0"
|
|
5601
|
+
},
|
|
5602
|
+
"funding": {
|
|
5603
|
+
"url": "https://paulmillr.com/funding/"
|
|
5604
|
+
}
|
|
5605
|
+
},
|
|
5606
|
+
"node_modules/hardhat/node_modules/@noble/curves/node_modules/@noble/hashes": {
|
|
5607
|
+
"version": "1.4.0",
|
|
5608
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
|
|
5609
|
+
"integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
|
|
5610
|
+
"dev": true,
|
|
5611
|
+
"license": "MIT",
|
|
5612
|
+
"engines": {
|
|
5613
|
+
"node": ">= 16"
|
|
5614
|
+
},
|
|
5615
|
+
"funding": {
|
|
5616
|
+
"url": "https://paulmillr.com/funding/"
|
|
6087
5617
|
}
|
|
6088
5618
|
},
|
|
6089
5619
|
"node_modules/hardhat/node_modules/@noble/hashes": {
|
|
@@ -6322,23 +5852,6 @@
|
|
|
6322
5852
|
"minimalistic-crypto-utils": "^1.0.1"
|
|
6323
5853
|
}
|
|
6324
5854
|
},
|
|
6325
|
-
"node_modules/http-basic": {
|
|
6326
|
-
"version": "8.1.3",
|
|
6327
|
-
"resolved": "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz",
|
|
6328
|
-
"integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==",
|
|
6329
|
-
"dev": true,
|
|
6330
|
-
"license": "MIT",
|
|
6331
|
-
"peer": true,
|
|
6332
|
-
"dependencies": {
|
|
6333
|
-
"caseless": "^0.12.0",
|
|
6334
|
-
"concat-stream": "^1.6.2",
|
|
6335
|
-
"http-response-object": "^3.0.1",
|
|
6336
|
-
"parse-cache-control": "^1.0.1"
|
|
6337
|
-
},
|
|
6338
|
-
"engines": {
|
|
6339
|
-
"node": ">=6.0.0"
|
|
6340
|
-
}
|
|
6341
|
-
},
|
|
6342
5855
|
"node_modules/http-errors": {
|
|
6343
5856
|
"version": "2.0.0",
|
|
6344
5857
|
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
|
@@ -6349,32 +5862,13 @@
|
|
|
6349
5862
|
"depd": "2.0.0",
|
|
6350
5863
|
"inherits": "2.0.4",
|
|
6351
5864
|
"setprototypeof": "1.2.0",
|
|
6352
|
-
"statuses": "2.0.1",
|
|
6353
|
-
"toidentifier": "1.0.1"
|
|
6354
|
-
},
|
|
6355
|
-
"engines": {
|
|
6356
|
-
"node": ">= 0.8"
|
|
6357
|
-
}
|
|
6358
|
-
},
|
|
6359
|
-
"node_modules/http-response-object": {
|
|
6360
|
-
"version": "3.0.2",
|
|
6361
|
-
"resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz",
|
|
6362
|
-
"integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==",
|
|
6363
|
-
"dev": true,
|
|
6364
|
-
"license": "MIT",
|
|
6365
|
-
"peer": true,
|
|
6366
|
-
"dependencies": {
|
|
6367
|
-
"@types/node": "^10.0.3"
|
|
5865
|
+
"statuses": "2.0.1",
|
|
5866
|
+
"toidentifier": "1.0.1"
|
|
5867
|
+
},
|
|
5868
|
+
"engines": {
|
|
5869
|
+
"node": ">= 0.8"
|
|
6368
5870
|
}
|
|
6369
5871
|
},
|
|
6370
|
-
"node_modules/http-response-object/node_modules/@types/node": {
|
|
6371
|
-
"version": "10.17.60",
|
|
6372
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz",
|
|
6373
|
-
"integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==",
|
|
6374
|
-
"dev": true,
|
|
6375
|
-
"license": "MIT",
|
|
6376
|
-
"peer": true
|
|
6377
|
-
},
|
|
6378
5872
|
"node_modules/https-proxy-agent": {
|
|
6379
5873
|
"version": "5.0.1",
|
|
6380
5874
|
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
@@ -6563,6 +6057,7 @@
|
|
|
6563
6057
|
"integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==",
|
|
6564
6058
|
"dev": true,
|
|
6565
6059
|
"license": "MIT",
|
|
6060
|
+
"peer": true,
|
|
6566
6061
|
"engines": {
|
|
6567
6062
|
"node": ">=6.5.0",
|
|
6568
6063
|
"npm": ">=3"
|
|
@@ -6627,6 +6122,40 @@
|
|
|
6627
6122
|
"unfetch": "^4.2.0"
|
|
6628
6123
|
}
|
|
6629
6124
|
},
|
|
6125
|
+
"node_modules/isows": {
|
|
6126
|
+
"version": "1.0.7",
|
|
6127
|
+
"resolved": "https://registry.npmjs.org/isows/-/isows-1.0.7.tgz",
|
|
6128
|
+
"integrity": "sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==",
|
|
6129
|
+
"dev": true,
|
|
6130
|
+
"funding": [
|
|
6131
|
+
{
|
|
6132
|
+
"type": "github",
|
|
6133
|
+
"url": "https://github.com/sponsors/wevm"
|
|
6134
|
+
}
|
|
6135
|
+
],
|
|
6136
|
+
"license": "MIT",
|
|
6137
|
+
"peer": true,
|
|
6138
|
+
"peerDependencies": {
|
|
6139
|
+
"ws": "*"
|
|
6140
|
+
}
|
|
6141
|
+
},
|
|
6142
|
+
"node_modules/jackspeak": {
|
|
6143
|
+
"version": "3.4.3",
|
|
6144
|
+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
|
|
6145
|
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
|
|
6146
|
+
"dev": true,
|
|
6147
|
+
"license": "BlueOak-1.0.0",
|
|
6148
|
+
"peer": true,
|
|
6149
|
+
"dependencies": {
|
|
6150
|
+
"@isaacs/cliui": "^8.0.2"
|
|
6151
|
+
},
|
|
6152
|
+
"funding": {
|
|
6153
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
6154
|
+
},
|
|
6155
|
+
"optionalDependencies": {
|
|
6156
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
6157
|
+
}
|
|
6158
|
+
},
|
|
6630
6159
|
"node_modules/js-cookie": {
|
|
6631
6160
|
"version": "2.2.1",
|
|
6632
6161
|
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz",
|
|
@@ -6863,6 +6392,14 @@
|
|
|
6863
6392
|
"dev": true,
|
|
6864
6393
|
"license": "MIT"
|
|
6865
6394
|
},
|
|
6395
|
+
"node_modules/lru-cache": {
|
|
6396
|
+
"version": "10.4.3",
|
|
6397
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
|
|
6398
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
6399
|
+
"dev": true,
|
|
6400
|
+
"license": "ISC",
|
|
6401
|
+
"peer": true
|
|
6402
|
+
},
|
|
6866
6403
|
"node_modules/make-error": {
|
|
6867
6404
|
"version": "1.3.6",
|
|
6868
6405
|
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
|
|
@@ -6872,12 +6409,19 @@
|
|
|
6872
6409
|
"peer": true
|
|
6873
6410
|
},
|
|
6874
6411
|
"node_modules/markdown-table": {
|
|
6875
|
-
"version": "
|
|
6876
|
-
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-
|
|
6877
|
-
"integrity": "sha512-
|
|
6412
|
+
"version": "2.0.0",
|
|
6413
|
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz",
|
|
6414
|
+
"integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==",
|
|
6878
6415
|
"dev": true,
|
|
6879
6416
|
"license": "MIT",
|
|
6880
|
-
"peer": true
|
|
6417
|
+
"peer": true,
|
|
6418
|
+
"dependencies": {
|
|
6419
|
+
"repeat-string": "^1.0.0"
|
|
6420
|
+
},
|
|
6421
|
+
"funding": {
|
|
6422
|
+
"type": "github",
|
|
6423
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
6424
|
+
}
|
|
6881
6425
|
},
|
|
6882
6426
|
"node_modules/math-intrinsics": {
|
|
6883
6427
|
"version": "1.1.0",
|
|
@@ -6921,6 +6465,47 @@
|
|
|
6921
6465
|
"node": ">= 8"
|
|
6922
6466
|
}
|
|
6923
6467
|
},
|
|
6468
|
+
"node_modules/micro-eth-signer": {
|
|
6469
|
+
"version": "0.14.0",
|
|
6470
|
+
"resolved": "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz",
|
|
6471
|
+
"integrity": "sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw==",
|
|
6472
|
+
"dev": true,
|
|
6473
|
+
"license": "MIT",
|
|
6474
|
+
"dependencies": {
|
|
6475
|
+
"@noble/curves": "~1.8.1",
|
|
6476
|
+
"@noble/hashes": "~1.7.1",
|
|
6477
|
+
"micro-packed": "~0.7.2"
|
|
6478
|
+
}
|
|
6479
|
+
},
|
|
6480
|
+
"node_modules/micro-eth-signer/node_modules/@noble/curves": {
|
|
6481
|
+
"version": "1.8.2",
|
|
6482
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz",
|
|
6483
|
+
"integrity": "sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==",
|
|
6484
|
+
"dev": true,
|
|
6485
|
+
"license": "MIT",
|
|
6486
|
+
"dependencies": {
|
|
6487
|
+
"@noble/hashes": "1.7.2"
|
|
6488
|
+
},
|
|
6489
|
+
"engines": {
|
|
6490
|
+
"node": "^14.21.3 || >=16"
|
|
6491
|
+
},
|
|
6492
|
+
"funding": {
|
|
6493
|
+
"url": "https://paulmillr.com/funding/"
|
|
6494
|
+
}
|
|
6495
|
+
},
|
|
6496
|
+
"node_modules/micro-eth-signer/node_modules/@noble/hashes": {
|
|
6497
|
+
"version": "1.7.2",
|
|
6498
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz",
|
|
6499
|
+
"integrity": "sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==",
|
|
6500
|
+
"dev": true,
|
|
6501
|
+
"license": "MIT",
|
|
6502
|
+
"engines": {
|
|
6503
|
+
"node": "^14.21.3 || >=16"
|
|
6504
|
+
},
|
|
6505
|
+
"funding": {
|
|
6506
|
+
"url": "https://paulmillr.com/funding/"
|
|
6507
|
+
}
|
|
6508
|
+
},
|
|
6924
6509
|
"node_modules/micro-ftch": {
|
|
6925
6510
|
"version": "0.3.1",
|
|
6926
6511
|
"resolved": "https://registry.npmjs.org/micro-ftch/-/micro-ftch-0.3.1.tgz",
|
|
@@ -6929,6 +6514,29 @@
|
|
|
6929
6514
|
"license": "MIT",
|
|
6930
6515
|
"peer": true
|
|
6931
6516
|
},
|
|
6517
|
+
"node_modules/micro-packed": {
|
|
6518
|
+
"version": "0.7.3",
|
|
6519
|
+
"resolved": "https://registry.npmjs.org/micro-packed/-/micro-packed-0.7.3.tgz",
|
|
6520
|
+
"integrity": "sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg==",
|
|
6521
|
+
"dev": true,
|
|
6522
|
+
"license": "MIT",
|
|
6523
|
+
"dependencies": {
|
|
6524
|
+
"@scure/base": "~1.2.5"
|
|
6525
|
+
},
|
|
6526
|
+
"funding": {
|
|
6527
|
+
"url": "https://paulmillr.com/funding/"
|
|
6528
|
+
}
|
|
6529
|
+
},
|
|
6530
|
+
"node_modules/micro-packed/node_modules/@scure/base": {
|
|
6531
|
+
"version": "1.2.6",
|
|
6532
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
6533
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
6534
|
+
"dev": true,
|
|
6535
|
+
"license": "MIT",
|
|
6536
|
+
"funding": {
|
|
6537
|
+
"url": "https://paulmillr.com/funding/"
|
|
6538
|
+
}
|
|
6539
|
+
},
|
|
6932
6540
|
"node_modules/micromatch": {
|
|
6933
6541
|
"version": "4.0.8",
|
|
6934
6542
|
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
@@ -7007,6 +6615,17 @@
|
|
|
7007
6615
|
"url": "https://github.com/sponsors/ljharb"
|
|
7008
6616
|
}
|
|
7009
6617
|
},
|
|
6618
|
+
"node_modules/minipass": {
|
|
6619
|
+
"version": "7.1.2",
|
|
6620
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
|
|
6621
|
+
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
|
|
6622
|
+
"dev": true,
|
|
6623
|
+
"license": "ISC",
|
|
6624
|
+
"peer": true,
|
|
6625
|
+
"engines": {
|
|
6626
|
+
"node": ">=16 || 14 >=14.17"
|
|
6627
|
+
}
|
|
6628
|
+
},
|
|
7010
6629
|
"node_modules/mkdirp": {
|
|
7011
6630
|
"version": "0.5.6",
|
|
7012
6631
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
|
|
@@ -7279,31 +6898,6 @@
|
|
|
7279
6898
|
"license": "MIT",
|
|
7280
6899
|
"peer": true
|
|
7281
6900
|
},
|
|
7282
|
-
"node_modules/object-assign": {
|
|
7283
|
-
"version": "4.1.1",
|
|
7284
|
-
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
7285
|
-
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
7286
|
-
"dev": true,
|
|
7287
|
-
"license": "MIT",
|
|
7288
|
-
"peer": true,
|
|
7289
|
-
"engines": {
|
|
7290
|
-
"node": ">=0.10.0"
|
|
7291
|
-
}
|
|
7292
|
-
},
|
|
7293
|
-
"node_modules/object-inspect": {
|
|
7294
|
-
"version": "1.13.4",
|
|
7295
|
-
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
7296
|
-
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
7297
|
-
"dev": true,
|
|
7298
|
-
"license": "MIT",
|
|
7299
|
-
"peer": true,
|
|
7300
|
-
"engines": {
|
|
7301
|
-
"node": ">= 0.4"
|
|
7302
|
-
},
|
|
7303
|
-
"funding": {
|
|
7304
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
7305
|
-
}
|
|
7306
|
-
},
|
|
7307
6901
|
"node_modules/obliterator": {
|
|
7308
6902
|
"version": "2.0.5",
|
|
7309
6903
|
"resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.5.tgz",
|
|
@@ -7358,6 +6952,119 @@
|
|
|
7358
6952
|
"node": ">=0.10.0"
|
|
7359
6953
|
}
|
|
7360
6954
|
},
|
|
6955
|
+
"node_modules/ox": {
|
|
6956
|
+
"version": "0.8.1",
|
|
6957
|
+
"resolved": "https://registry.npmjs.org/ox/-/ox-0.8.1.tgz",
|
|
6958
|
+
"integrity": "sha512-e+z5epnzV+Zuz91YYujecW8cF01mzmrUtWotJ0oEPym/G82uccs7q0WDHTYL3eiONbTUEvcZrptAKLgTBD3u2A==",
|
|
6959
|
+
"dev": true,
|
|
6960
|
+
"funding": [
|
|
6961
|
+
{
|
|
6962
|
+
"type": "github",
|
|
6963
|
+
"url": "https://github.com/sponsors/wevm"
|
|
6964
|
+
}
|
|
6965
|
+
],
|
|
6966
|
+
"license": "MIT",
|
|
6967
|
+
"peer": true,
|
|
6968
|
+
"dependencies": {
|
|
6969
|
+
"@adraffy/ens-normalize": "^1.11.0",
|
|
6970
|
+
"@noble/ciphers": "^1.3.0",
|
|
6971
|
+
"@noble/curves": "^1.9.1",
|
|
6972
|
+
"@noble/hashes": "^1.8.0",
|
|
6973
|
+
"@scure/bip32": "^1.7.0",
|
|
6974
|
+
"@scure/bip39": "^1.6.0",
|
|
6975
|
+
"abitype": "^1.0.8",
|
|
6976
|
+
"eventemitter3": "5.0.1"
|
|
6977
|
+
},
|
|
6978
|
+
"peerDependencies": {
|
|
6979
|
+
"typescript": ">=5.4.0"
|
|
6980
|
+
},
|
|
6981
|
+
"peerDependenciesMeta": {
|
|
6982
|
+
"typescript": {
|
|
6983
|
+
"optional": true
|
|
6984
|
+
}
|
|
6985
|
+
}
|
|
6986
|
+
},
|
|
6987
|
+
"node_modules/ox/node_modules/@adraffy/ens-normalize": {
|
|
6988
|
+
"version": "1.11.0",
|
|
6989
|
+
"resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz",
|
|
6990
|
+
"integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==",
|
|
6991
|
+
"dev": true,
|
|
6992
|
+
"license": "MIT",
|
|
6993
|
+
"peer": true
|
|
6994
|
+
},
|
|
6995
|
+
"node_modules/ox/node_modules/@noble/curves": {
|
|
6996
|
+
"version": "1.9.2",
|
|
6997
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz",
|
|
6998
|
+
"integrity": "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==",
|
|
6999
|
+
"dev": true,
|
|
7000
|
+
"license": "MIT",
|
|
7001
|
+
"peer": true,
|
|
7002
|
+
"dependencies": {
|
|
7003
|
+
"@noble/hashes": "1.8.0"
|
|
7004
|
+
},
|
|
7005
|
+
"engines": {
|
|
7006
|
+
"node": "^14.21.3 || >=16"
|
|
7007
|
+
},
|
|
7008
|
+
"funding": {
|
|
7009
|
+
"url": "https://paulmillr.com/funding/"
|
|
7010
|
+
}
|
|
7011
|
+
},
|
|
7012
|
+
"node_modules/ox/node_modules/@noble/hashes": {
|
|
7013
|
+
"version": "1.8.0",
|
|
7014
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
7015
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
7016
|
+
"dev": true,
|
|
7017
|
+
"license": "MIT",
|
|
7018
|
+
"peer": true,
|
|
7019
|
+
"engines": {
|
|
7020
|
+
"node": "^14.21.3 || >=16"
|
|
7021
|
+
},
|
|
7022
|
+
"funding": {
|
|
7023
|
+
"url": "https://paulmillr.com/funding/"
|
|
7024
|
+
}
|
|
7025
|
+
},
|
|
7026
|
+
"node_modules/ox/node_modules/@scure/base": {
|
|
7027
|
+
"version": "1.2.6",
|
|
7028
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
7029
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
7030
|
+
"dev": true,
|
|
7031
|
+
"license": "MIT",
|
|
7032
|
+
"peer": true,
|
|
7033
|
+
"funding": {
|
|
7034
|
+
"url": "https://paulmillr.com/funding/"
|
|
7035
|
+
}
|
|
7036
|
+
},
|
|
7037
|
+
"node_modules/ox/node_modules/@scure/bip32": {
|
|
7038
|
+
"version": "1.7.0",
|
|
7039
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz",
|
|
7040
|
+
"integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==",
|
|
7041
|
+
"dev": true,
|
|
7042
|
+
"license": "MIT",
|
|
7043
|
+
"peer": true,
|
|
7044
|
+
"dependencies": {
|
|
7045
|
+
"@noble/curves": "~1.9.0",
|
|
7046
|
+
"@noble/hashes": "~1.8.0",
|
|
7047
|
+
"@scure/base": "~1.2.5"
|
|
7048
|
+
},
|
|
7049
|
+
"funding": {
|
|
7050
|
+
"url": "https://paulmillr.com/funding/"
|
|
7051
|
+
}
|
|
7052
|
+
},
|
|
7053
|
+
"node_modules/ox/node_modules/@scure/bip39": {
|
|
7054
|
+
"version": "1.6.0",
|
|
7055
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz",
|
|
7056
|
+
"integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==",
|
|
7057
|
+
"dev": true,
|
|
7058
|
+
"license": "MIT",
|
|
7059
|
+
"peer": true,
|
|
7060
|
+
"dependencies": {
|
|
7061
|
+
"@noble/hashes": "~1.8.0",
|
|
7062
|
+
"@scure/base": "~1.2.5"
|
|
7063
|
+
},
|
|
7064
|
+
"funding": {
|
|
7065
|
+
"url": "https://paulmillr.com/funding/"
|
|
7066
|
+
}
|
|
7067
|
+
},
|
|
7361
7068
|
"node_modules/p-limit": {
|
|
7362
7069
|
"version": "3.1.0",
|
|
7363
7070
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
|
@@ -7406,11 +7113,12 @@
|
|
|
7406
7113
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7407
7114
|
}
|
|
7408
7115
|
},
|
|
7409
|
-
"node_modules/
|
|
7116
|
+
"node_modules/package-json-from-dist": {
|
|
7410
7117
|
"version": "1.0.1",
|
|
7411
|
-
"resolved": "https://registry.npmjs.org/
|
|
7412
|
-
"integrity": "sha512-
|
|
7118
|
+
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
|
|
7119
|
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
7413
7120
|
"dev": true,
|
|
7121
|
+
"license": "BlueOak-1.0.0",
|
|
7414
7122
|
"peer": true
|
|
7415
7123
|
},
|
|
7416
7124
|
"node_modules/path-exists": {
|
|
@@ -7434,6 +7142,17 @@
|
|
|
7434
7142
|
"node": ">=0.10.0"
|
|
7435
7143
|
}
|
|
7436
7144
|
},
|
|
7145
|
+
"node_modules/path-key": {
|
|
7146
|
+
"version": "3.1.1",
|
|
7147
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
7148
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
7149
|
+
"dev": true,
|
|
7150
|
+
"license": "MIT",
|
|
7151
|
+
"peer": true,
|
|
7152
|
+
"engines": {
|
|
7153
|
+
"node": ">=8"
|
|
7154
|
+
}
|
|
7155
|
+
},
|
|
7437
7156
|
"node_modules/path-parse": {
|
|
7438
7157
|
"version": "1.0.7",
|
|
7439
7158
|
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
@@ -7441,6 +7160,24 @@
|
|
|
7441
7160
|
"dev": true,
|
|
7442
7161
|
"license": "MIT"
|
|
7443
7162
|
},
|
|
7163
|
+
"node_modules/path-scurry": {
|
|
7164
|
+
"version": "1.11.1",
|
|
7165
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
|
|
7166
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
7167
|
+
"dev": true,
|
|
7168
|
+
"license": "BlueOak-1.0.0",
|
|
7169
|
+
"peer": true,
|
|
7170
|
+
"dependencies": {
|
|
7171
|
+
"lru-cache": "^10.2.0",
|
|
7172
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
7173
|
+
},
|
|
7174
|
+
"engines": {
|
|
7175
|
+
"node": ">=16 || 14 >=14.18"
|
|
7176
|
+
},
|
|
7177
|
+
"funding": {
|
|
7178
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
7179
|
+
}
|
|
7180
|
+
},
|
|
7444
7181
|
"node_modules/path-type": {
|
|
7445
7182
|
"version": "4.0.0",
|
|
7446
7183
|
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
|
@@ -7538,25 +7275,6 @@
|
|
|
7538
7275
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
7539
7276
|
}
|
|
7540
7277
|
},
|
|
7541
|
-
"node_modules/process-nextick-args": {
|
|
7542
|
-
"version": "2.0.1",
|
|
7543
|
-
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
7544
|
-
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
|
7545
|
-
"dev": true,
|
|
7546
|
-
"license": "MIT",
|
|
7547
|
-
"peer": true
|
|
7548
|
-
},
|
|
7549
|
-
"node_modules/promise": {
|
|
7550
|
-
"version": "8.3.0",
|
|
7551
|
-
"resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz",
|
|
7552
|
-
"integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==",
|
|
7553
|
-
"dev": true,
|
|
7554
|
-
"license": "MIT",
|
|
7555
|
-
"peer": true,
|
|
7556
|
-
"dependencies": {
|
|
7557
|
-
"asap": "~2.0.6"
|
|
7558
|
-
}
|
|
7559
|
-
},
|
|
7560
7278
|
"node_modules/prompts": {
|
|
7561
7279
|
"version": "2.4.2",
|
|
7562
7280
|
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
|
|
@@ -7601,23 +7319,6 @@
|
|
|
7601
7319
|
"dev": true,
|
|
7602
7320
|
"license": "MIT"
|
|
7603
7321
|
},
|
|
7604
|
-
"node_modules/qs": {
|
|
7605
|
-
"version": "6.14.0",
|
|
7606
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
|
|
7607
|
-
"integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
|
|
7608
|
-
"dev": true,
|
|
7609
|
-
"license": "BSD-3-Clause",
|
|
7610
|
-
"peer": true,
|
|
7611
|
-
"dependencies": {
|
|
7612
|
-
"side-channel": "^1.1.0"
|
|
7613
|
-
},
|
|
7614
|
-
"engines": {
|
|
7615
|
-
"node": ">=0.6"
|
|
7616
|
-
},
|
|
7617
|
-
"funding": {
|
|
7618
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
7619
|
-
}
|
|
7620
|
-
},
|
|
7621
7322
|
"node_modules/queue-microtask": {
|
|
7622
7323
|
"version": "1.2.3",
|
|
7623
7324
|
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
@@ -7759,32 +7460,15 @@
|
|
|
7759
7460
|
"node": ">=6"
|
|
7760
7461
|
}
|
|
7761
7462
|
},
|
|
7762
|
-
"node_modules/
|
|
7763
|
-
"version": "
|
|
7764
|
-
"resolved": "https://registry.npmjs.org/
|
|
7765
|
-
"integrity": "sha512-
|
|
7766
|
-
"dev": true,
|
|
7767
|
-
"license": "MIT",
|
|
7768
|
-
"peer": true,
|
|
7769
|
-
"dependencies": {
|
|
7770
|
-
"req-from": "^2.0.0"
|
|
7771
|
-
},
|
|
7772
|
-
"engines": {
|
|
7773
|
-
"node": ">=4"
|
|
7774
|
-
}
|
|
7775
|
-
},
|
|
7776
|
-
"node_modules/req-from": {
|
|
7777
|
-
"version": "2.0.0",
|
|
7778
|
-
"resolved": "https://registry.npmjs.org/req-from/-/req-from-2.0.0.tgz",
|
|
7779
|
-
"integrity": "sha512-LzTfEVDVQHBRfjOUMgNBA+V6DWsSnoeKzf42J7l0xa/B4jyPOuuF5MlNSmomLNGemWTnV2TIdjSSLnEn95fOQA==",
|
|
7463
|
+
"node_modules/repeat-string": {
|
|
7464
|
+
"version": "1.6.1",
|
|
7465
|
+
"resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
|
|
7466
|
+
"integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==",
|
|
7780
7467
|
"dev": true,
|
|
7781
7468
|
"license": "MIT",
|
|
7782
7469
|
"peer": true,
|
|
7783
|
-
"dependencies": {
|
|
7784
|
-
"resolve-from": "^3.0.0"
|
|
7785
|
-
},
|
|
7786
7470
|
"engines": {
|
|
7787
|
-
"node": ">=
|
|
7471
|
+
"node": ">=0.10"
|
|
7788
7472
|
}
|
|
7789
7473
|
},
|
|
7790
7474
|
"node_modules/require-directory": {
|
|
@@ -7821,17 +7505,6 @@
|
|
|
7821
7505
|
"url": "https://github.com/sponsors/ljharb"
|
|
7822
7506
|
}
|
|
7823
7507
|
},
|
|
7824
|
-
"node_modules/resolve-from": {
|
|
7825
|
-
"version": "3.0.0",
|
|
7826
|
-
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
|
|
7827
|
-
"integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==",
|
|
7828
|
-
"dev": true,
|
|
7829
|
-
"license": "MIT",
|
|
7830
|
-
"peer": true,
|
|
7831
|
-
"engines": {
|
|
7832
|
-
"node": ">=4"
|
|
7833
|
-
}
|
|
7834
|
-
},
|
|
7835
7508
|
"node_modules/retry": {
|
|
7836
7509
|
"version": "0.13.1",
|
|
7837
7510
|
"resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
|
|
@@ -8183,14 +7856,39 @@
|
|
|
8183
7856
|
"resolved": "https://registry.npmjs.org/sha1/-/sha1-1.1.1.tgz",
|
|
8184
7857
|
"integrity": "sha512-dZBS6OrMjtgVkopB1Gmo4RQCDKiZsqcpAQpkV/aaj+FCrCg8r4I4qMkDPQjBgLIxlmu9k4nUbWq6ohXahOneYA==",
|
|
8185
7858
|
"dev": true,
|
|
8186
|
-
"license": "BSD-3-Clause",
|
|
7859
|
+
"license": "BSD-3-Clause",
|
|
7860
|
+
"peer": true,
|
|
7861
|
+
"dependencies": {
|
|
7862
|
+
"charenc": ">= 0.0.1",
|
|
7863
|
+
"crypt": ">= 0.0.1"
|
|
7864
|
+
},
|
|
7865
|
+
"engines": {
|
|
7866
|
+
"node": "*"
|
|
7867
|
+
}
|
|
7868
|
+
},
|
|
7869
|
+
"node_modules/shebang-command": {
|
|
7870
|
+
"version": "2.0.0",
|
|
7871
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
7872
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
7873
|
+
"dev": true,
|
|
7874
|
+
"license": "MIT",
|
|
8187
7875
|
"peer": true,
|
|
8188
7876
|
"dependencies": {
|
|
8189
|
-
"
|
|
8190
|
-
"crypt": ">= 0.0.1"
|
|
7877
|
+
"shebang-regex": "^3.0.0"
|
|
8191
7878
|
},
|
|
8192
7879
|
"engines": {
|
|
8193
|
-
"node": "
|
|
7880
|
+
"node": ">=8"
|
|
7881
|
+
}
|
|
7882
|
+
},
|
|
7883
|
+
"node_modules/shebang-regex": {
|
|
7884
|
+
"version": "3.0.0",
|
|
7885
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
7886
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
7887
|
+
"dev": true,
|
|
7888
|
+
"license": "MIT",
|
|
7889
|
+
"peer": true,
|
|
7890
|
+
"engines": {
|
|
7891
|
+
"node": ">=8"
|
|
8194
7892
|
}
|
|
8195
7893
|
},
|
|
8196
7894
|
"node_modules/shelljs": {
|
|
@@ -8261,86 +7959,6 @@
|
|
|
8261
7959
|
"node": "*"
|
|
8262
7960
|
}
|
|
8263
7961
|
},
|
|
8264
|
-
"node_modules/side-channel": {
|
|
8265
|
-
"version": "1.1.0",
|
|
8266
|
-
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
8267
|
-
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
8268
|
-
"dev": true,
|
|
8269
|
-
"license": "MIT",
|
|
8270
|
-
"peer": true,
|
|
8271
|
-
"dependencies": {
|
|
8272
|
-
"es-errors": "^1.3.0",
|
|
8273
|
-
"object-inspect": "^1.13.3",
|
|
8274
|
-
"side-channel-list": "^1.0.0",
|
|
8275
|
-
"side-channel-map": "^1.0.1",
|
|
8276
|
-
"side-channel-weakmap": "^1.0.2"
|
|
8277
|
-
},
|
|
8278
|
-
"engines": {
|
|
8279
|
-
"node": ">= 0.4"
|
|
8280
|
-
},
|
|
8281
|
-
"funding": {
|
|
8282
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8283
|
-
}
|
|
8284
|
-
},
|
|
8285
|
-
"node_modules/side-channel-list": {
|
|
8286
|
-
"version": "1.0.0",
|
|
8287
|
-
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
8288
|
-
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
8289
|
-
"dev": true,
|
|
8290
|
-
"license": "MIT",
|
|
8291
|
-
"peer": true,
|
|
8292
|
-
"dependencies": {
|
|
8293
|
-
"es-errors": "^1.3.0",
|
|
8294
|
-
"object-inspect": "^1.13.3"
|
|
8295
|
-
},
|
|
8296
|
-
"engines": {
|
|
8297
|
-
"node": ">= 0.4"
|
|
8298
|
-
},
|
|
8299
|
-
"funding": {
|
|
8300
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8301
|
-
}
|
|
8302
|
-
},
|
|
8303
|
-
"node_modules/side-channel-map": {
|
|
8304
|
-
"version": "1.0.1",
|
|
8305
|
-
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
8306
|
-
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
8307
|
-
"dev": true,
|
|
8308
|
-
"license": "MIT",
|
|
8309
|
-
"peer": true,
|
|
8310
|
-
"dependencies": {
|
|
8311
|
-
"call-bound": "^1.0.2",
|
|
8312
|
-
"es-errors": "^1.3.0",
|
|
8313
|
-
"get-intrinsic": "^1.2.5",
|
|
8314
|
-
"object-inspect": "^1.13.3"
|
|
8315
|
-
},
|
|
8316
|
-
"engines": {
|
|
8317
|
-
"node": ">= 0.4"
|
|
8318
|
-
},
|
|
8319
|
-
"funding": {
|
|
8320
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8321
|
-
}
|
|
8322
|
-
},
|
|
8323
|
-
"node_modules/side-channel-weakmap": {
|
|
8324
|
-
"version": "1.0.2",
|
|
8325
|
-
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
8326
|
-
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
8327
|
-
"dev": true,
|
|
8328
|
-
"license": "MIT",
|
|
8329
|
-
"peer": true,
|
|
8330
|
-
"dependencies": {
|
|
8331
|
-
"call-bound": "^1.0.2",
|
|
8332
|
-
"es-errors": "^1.3.0",
|
|
8333
|
-
"get-intrinsic": "^1.2.5",
|
|
8334
|
-
"object-inspect": "^1.13.3",
|
|
8335
|
-
"side-channel-map": "^1.0.1"
|
|
8336
|
-
},
|
|
8337
|
-
"engines": {
|
|
8338
|
-
"node": ">= 0.4"
|
|
8339
|
-
},
|
|
8340
|
-
"funding": {
|
|
8341
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8342
|
-
}
|
|
8343
|
-
},
|
|
8344
7962
|
"node_modules/signal-exit": {
|
|
8345
7963
|
"version": "3.0.7",
|
|
8346
7964
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
|
|
@@ -8725,6 +8343,23 @@
|
|
|
8725
8343
|
"node": ">=8"
|
|
8726
8344
|
}
|
|
8727
8345
|
},
|
|
8346
|
+
"node_modules/string-width-cjs": {
|
|
8347
|
+
"name": "string-width",
|
|
8348
|
+
"version": "4.2.3",
|
|
8349
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
8350
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
8351
|
+
"dev": true,
|
|
8352
|
+
"license": "MIT",
|
|
8353
|
+
"peer": true,
|
|
8354
|
+
"dependencies": {
|
|
8355
|
+
"emoji-regex": "^8.0.0",
|
|
8356
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
8357
|
+
"strip-ansi": "^6.0.1"
|
|
8358
|
+
},
|
|
8359
|
+
"engines": {
|
|
8360
|
+
"node": ">=8"
|
|
8361
|
+
}
|
|
8362
|
+
},
|
|
8728
8363
|
"node_modules/strip-ansi": {
|
|
8729
8364
|
"version": "6.0.1",
|
|
8730
8365
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
@@ -8738,12 +8373,28 @@
|
|
|
8738
8373
|
"node": ">=8"
|
|
8739
8374
|
}
|
|
8740
8375
|
},
|
|
8376
|
+
"node_modules/strip-ansi-cjs": {
|
|
8377
|
+
"name": "strip-ansi",
|
|
8378
|
+
"version": "6.0.1",
|
|
8379
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
8380
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
8381
|
+
"dev": true,
|
|
8382
|
+
"license": "MIT",
|
|
8383
|
+
"peer": true,
|
|
8384
|
+
"dependencies": {
|
|
8385
|
+
"ansi-regex": "^5.0.1"
|
|
8386
|
+
},
|
|
8387
|
+
"engines": {
|
|
8388
|
+
"node": ">=8"
|
|
8389
|
+
}
|
|
8390
|
+
},
|
|
8741
8391
|
"node_modules/strip-hex-prefix": {
|
|
8742
8392
|
"version": "1.0.0",
|
|
8743
8393
|
"resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz",
|
|
8744
8394
|
"integrity": "sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==",
|
|
8745
8395
|
"dev": true,
|
|
8746
8396
|
"license": "MIT",
|
|
8397
|
+
"peer": true,
|
|
8747
8398
|
"dependencies": {
|
|
8748
8399
|
"is-hex-prefixed": "1.0.0"
|
|
8749
8400
|
},
|
|
@@ -8791,33 +8442,6 @@
|
|
|
8791
8442
|
"node": ">=8"
|
|
8792
8443
|
}
|
|
8793
8444
|
},
|
|
8794
|
-
"node_modules/sync-request": {
|
|
8795
|
-
"version": "6.1.0",
|
|
8796
|
-
"resolved": "https://registry.npmjs.org/sync-request/-/sync-request-6.1.0.tgz",
|
|
8797
|
-
"integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==",
|
|
8798
|
-
"dev": true,
|
|
8799
|
-
"license": "MIT",
|
|
8800
|
-
"peer": true,
|
|
8801
|
-
"dependencies": {
|
|
8802
|
-
"http-response-object": "^3.0.1",
|
|
8803
|
-
"sync-rpc": "^1.2.1",
|
|
8804
|
-
"then-request": "^6.0.0"
|
|
8805
|
-
},
|
|
8806
|
-
"engines": {
|
|
8807
|
-
"node": ">=8.0.0"
|
|
8808
|
-
}
|
|
8809
|
-
},
|
|
8810
|
-
"node_modules/sync-rpc": {
|
|
8811
|
-
"version": "1.3.6",
|
|
8812
|
-
"resolved": "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz",
|
|
8813
|
-
"integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==",
|
|
8814
|
-
"dev": true,
|
|
8815
|
-
"license": "MIT",
|
|
8816
|
-
"peer": true,
|
|
8817
|
-
"dependencies": {
|
|
8818
|
-
"get-port": "^3.1.0"
|
|
8819
|
-
}
|
|
8820
|
-
},
|
|
8821
8445
|
"node_modules/table": {
|
|
8822
8446
|
"version": "6.9.0",
|
|
8823
8447
|
"resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz",
|
|
@@ -8875,56 +8499,6 @@
|
|
|
8875
8499
|
"node": ">=8"
|
|
8876
8500
|
}
|
|
8877
8501
|
},
|
|
8878
|
-
"node_modules/then-request": {
|
|
8879
|
-
"version": "6.0.2",
|
|
8880
|
-
"resolved": "https://registry.npmjs.org/then-request/-/then-request-6.0.2.tgz",
|
|
8881
|
-
"integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==",
|
|
8882
|
-
"dev": true,
|
|
8883
|
-
"license": "MIT",
|
|
8884
|
-
"peer": true,
|
|
8885
|
-
"dependencies": {
|
|
8886
|
-
"@types/concat-stream": "^1.6.0",
|
|
8887
|
-
"@types/form-data": "0.0.33",
|
|
8888
|
-
"@types/node": "^8.0.0",
|
|
8889
|
-
"@types/qs": "^6.2.31",
|
|
8890
|
-
"caseless": "~0.12.0",
|
|
8891
|
-
"concat-stream": "^1.6.0",
|
|
8892
|
-
"form-data": "^2.2.0",
|
|
8893
|
-
"http-basic": "^8.1.1",
|
|
8894
|
-
"http-response-object": "^3.0.1",
|
|
8895
|
-
"promise": "^8.0.0",
|
|
8896
|
-
"qs": "^6.4.0"
|
|
8897
|
-
},
|
|
8898
|
-
"engines": {
|
|
8899
|
-
"node": ">=6.0.0"
|
|
8900
|
-
}
|
|
8901
|
-
},
|
|
8902
|
-
"node_modules/then-request/node_modules/@types/node": {
|
|
8903
|
-
"version": "8.10.66",
|
|
8904
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz",
|
|
8905
|
-
"integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==",
|
|
8906
|
-
"dev": true,
|
|
8907
|
-
"license": "MIT",
|
|
8908
|
-
"peer": true
|
|
8909
|
-
},
|
|
8910
|
-
"node_modules/then-request/node_modules/form-data": {
|
|
8911
|
-
"version": "2.5.3",
|
|
8912
|
-
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.3.tgz",
|
|
8913
|
-
"integrity": "sha512-XHIrMD0NpDrNM/Ckf7XJiBbLl57KEhT3+i3yY+eWm+cqYZJQTZrKo8Y8AWKnuV5GT4scfuUGt9LzNoIx3dU1nQ==",
|
|
8914
|
-
"dev": true,
|
|
8915
|
-
"license": "MIT",
|
|
8916
|
-
"peer": true,
|
|
8917
|
-
"dependencies": {
|
|
8918
|
-
"asynckit": "^0.4.0",
|
|
8919
|
-
"combined-stream": "^1.0.8",
|
|
8920
|
-
"es-set-tostringtag": "^2.1.0",
|
|
8921
|
-
"mime-types": "^2.1.35",
|
|
8922
|
-
"safe-buffer": "^5.2.1"
|
|
8923
|
-
},
|
|
8924
|
-
"engines": {
|
|
8925
|
-
"node": ">= 0.12"
|
|
8926
|
-
}
|
|
8927
|
-
},
|
|
8928
8502
|
"node_modules/through2": {
|
|
8929
8503
|
"version": "4.0.2",
|
|
8930
8504
|
"resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
|
|
@@ -9122,20 +8696,6 @@
|
|
|
9122
8696
|
"dev": true,
|
|
9123
8697
|
"license": "MIT"
|
|
9124
8698
|
},
|
|
9125
|
-
"node_modules/tweetnacl": {
|
|
9126
|
-
"version": "1.0.3",
|
|
9127
|
-
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
|
|
9128
|
-
"integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==",
|
|
9129
|
-
"dev": true,
|
|
9130
|
-
"license": "Unlicense"
|
|
9131
|
-
},
|
|
9132
|
-
"node_modules/tweetnacl-util": {
|
|
9133
|
-
"version": "0.15.1",
|
|
9134
|
-
"resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz",
|
|
9135
|
-
"integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==",
|
|
9136
|
-
"dev": true,
|
|
9137
|
-
"license": "Unlicense"
|
|
9138
|
-
},
|
|
9139
8699
|
"node_modules/type-check": {
|
|
9140
8700
|
"version": "0.3.2",
|
|
9141
8701
|
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
|
|
@@ -9301,14 +8861,6 @@
|
|
|
9301
8861
|
"node": ">= 4.0.0"
|
|
9302
8862
|
}
|
|
9303
8863
|
},
|
|
9304
|
-
"node_modules/typedarray": {
|
|
9305
|
-
"version": "0.0.6",
|
|
9306
|
-
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
|
9307
|
-
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
|
|
9308
|
-
"dev": true,
|
|
9309
|
-
"license": "MIT",
|
|
9310
|
-
"peer": true
|
|
9311
|
-
},
|
|
9312
8864
|
"node_modules/typescript": {
|
|
9313
8865
|
"version": "5.7.3",
|
|
9314
8866
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
|
|
@@ -9435,6 +8987,134 @@
|
|
|
9435
8987
|
"license": "MIT",
|
|
9436
8988
|
"peer": true
|
|
9437
8989
|
},
|
|
8990
|
+
"node_modules/viem": {
|
|
8991
|
+
"version": "2.31.4",
|
|
8992
|
+
"resolved": "https://registry.npmjs.org/viem/-/viem-2.31.4.tgz",
|
|
8993
|
+
"integrity": "sha512-0UZ/asvzl6p44CIBRDbwEcn3HXIQQurBZcMo5qmLhQ8s27Ockk+RYohgTLlpLvkYs8/t4UUEREAbHLuek1kXcw==",
|
|
8994
|
+
"dev": true,
|
|
8995
|
+
"funding": [
|
|
8996
|
+
{
|
|
8997
|
+
"type": "github",
|
|
8998
|
+
"url": "https://github.com/sponsors/wevm"
|
|
8999
|
+
}
|
|
9000
|
+
],
|
|
9001
|
+
"license": "MIT",
|
|
9002
|
+
"peer": true,
|
|
9003
|
+
"dependencies": {
|
|
9004
|
+
"@noble/curves": "1.9.2",
|
|
9005
|
+
"@noble/hashes": "1.8.0",
|
|
9006
|
+
"@scure/bip32": "1.7.0",
|
|
9007
|
+
"@scure/bip39": "1.6.0",
|
|
9008
|
+
"abitype": "1.0.8",
|
|
9009
|
+
"isows": "1.0.7",
|
|
9010
|
+
"ox": "0.8.1",
|
|
9011
|
+
"ws": "8.18.2"
|
|
9012
|
+
},
|
|
9013
|
+
"peerDependencies": {
|
|
9014
|
+
"typescript": ">=5.0.4"
|
|
9015
|
+
},
|
|
9016
|
+
"peerDependenciesMeta": {
|
|
9017
|
+
"typescript": {
|
|
9018
|
+
"optional": true
|
|
9019
|
+
}
|
|
9020
|
+
}
|
|
9021
|
+
},
|
|
9022
|
+
"node_modules/viem/node_modules/@noble/curves": {
|
|
9023
|
+
"version": "1.9.2",
|
|
9024
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz",
|
|
9025
|
+
"integrity": "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==",
|
|
9026
|
+
"dev": true,
|
|
9027
|
+
"license": "MIT",
|
|
9028
|
+
"peer": true,
|
|
9029
|
+
"dependencies": {
|
|
9030
|
+
"@noble/hashes": "1.8.0"
|
|
9031
|
+
},
|
|
9032
|
+
"engines": {
|
|
9033
|
+
"node": "^14.21.3 || >=16"
|
|
9034
|
+
},
|
|
9035
|
+
"funding": {
|
|
9036
|
+
"url": "https://paulmillr.com/funding/"
|
|
9037
|
+
}
|
|
9038
|
+
},
|
|
9039
|
+
"node_modules/viem/node_modules/@noble/hashes": {
|
|
9040
|
+
"version": "1.8.0",
|
|
9041
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
9042
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
9043
|
+
"dev": true,
|
|
9044
|
+
"license": "MIT",
|
|
9045
|
+
"peer": true,
|
|
9046
|
+
"engines": {
|
|
9047
|
+
"node": "^14.21.3 || >=16"
|
|
9048
|
+
},
|
|
9049
|
+
"funding": {
|
|
9050
|
+
"url": "https://paulmillr.com/funding/"
|
|
9051
|
+
}
|
|
9052
|
+
},
|
|
9053
|
+
"node_modules/viem/node_modules/@scure/base": {
|
|
9054
|
+
"version": "1.2.6",
|
|
9055
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
9056
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
9057
|
+
"dev": true,
|
|
9058
|
+
"license": "MIT",
|
|
9059
|
+
"peer": true,
|
|
9060
|
+
"funding": {
|
|
9061
|
+
"url": "https://paulmillr.com/funding/"
|
|
9062
|
+
}
|
|
9063
|
+
},
|
|
9064
|
+
"node_modules/viem/node_modules/@scure/bip32": {
|
|
9065
|
+
"version": "1.7.0",
|
|
9066
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz",
|
|
9067
|
+
"integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==",
|
|
9068
|
+
"dev": true,
|
|
9069
|
+
"license": "MIT",
|
|
9070
|
+
"peer": true,
|
|
9071
|
+
"dependencies": {
|
|
9072
|
+
"@noble/curves": "~1.9.0",
|
|
9073
|
+
"@noble/hashes": "~1.8.0",
|
|
9074
|
+
"@scure/base": "~1.2.5"
|
|
9075
|
+
},
|
|
9076
|
+
"funding": {
|
|
9077
|
+
"url": "https://paulmillr.com/funding/"
|
|
9078
|
+
}
|
|
9079
|
+
},
|
|
9080
|
+
"node_modules/viem/node_modules/@scure/bip39": {
|
|
9081
|
+
"version": "1.6.0",
|
|
9082
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz",
|
|
9083
|
+
"integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==",
|
|
9084
|
+
"dev": true,
|
|
9085
|
+
"license": "MIT",
|
|
9086
|
+
"peer": true,
|
|
9087
|
+
"dependencies": {
|
|
9088
|
+
"@noble/hashes": "~1.8.0",
|
|
9089
|
+
"@scure/base": "~1.2.5"
|
|
9090
|
+
},
|
|
9091
|
+
"funding": {
|
|
9092
|
+
"url": "https://paulmillr.com/funding/"
|
|
9093
|
+
}
|
|
9094
|
+
},
|
|
9095
|
+
"node_modules/viem/node_modules/ws": {
|
|
9096
|
+
"version": "8.18.2",
|
|
9097
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz",
|
|
9098
|
+
"integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==",
|
|
9099
|
+
"dev": true,
|
|
9100
|
+
"license": "MIT",
|
|
9101
|
+
"peer": true,
|
|
9102
|
+
"engines": {
|
|
9103
|
+
"node": ">=10.0.0"
|
|
9104
|
+
},
|
|
9105
|
+
"peerDependencies": {
|
|
9106
|
+
"bufferutil": "^4.0.1",
|
|
9107
|
+
"utf-8-validate": ">=5.0.2"
|
|
9108
|
+
},
|
|
9109
|
+
"peerDependenciesMeta": {
|
|
9110
|
+
"bufferutil": {
|
|
9111
|
+
"optional": true
|
|
9112
|
+
},
|
|
9113
|
+
"utf-8-validate": {
|
|
9114
|
+
"optional": true
|
|
9115
|
+
}
|
|
9116
|
+
}
|
|
9117
|
+
},
|
|
9438
9118
|
"node_modules/web3-utils": {
|
|
9439
9119
|
"version": "1.10.4",
|
|
9440
9120
|
"resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.10.4.tgz",
|
|
@@ -9613,6 +9293,26 @@
|
|
|
9613
9293
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
9614
9294
|
}
|
|
9615
9295
|
},
|
|
9296
|
+
"node_modules/wrap-ansi-cjs": {
|
|
9297
|
+
"name": "wrap-ansi",
|
|
9298
|
+
"version": "7.0.0",
|
|
9299
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
9300
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
9301
|
+
"dev": true,
|
|
9302
|
+
"license": "MIT",
|
|
9303
|
+
"peer": true,
|
|
9304
|
+
"dependencies": {
|
|
9305
|
+
"ansi-styles": "^4.0.0",
|
|
9306
|
+
"string-width": "^4.1.0",
|
|
9307
|
+
"strip-ansi": "^6.0.0"
|
|
9308
|
+
},
|
|
9309
|
+
"engines": {
|
|
9310
|
+
"node": ">=10"
|
|
9311
|
+
},
|
|
9312
|
+
"funding": {
|
|
9313
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
9314
|
+
}
|
|
9315
|
+
},
|
|
9616
9316
|
"node_modules/wrappy": {
|
|
9617
9317
|
"version": "1.0.2",
|
|
9618
9318
|
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|