Types cleanup

This commit is contained in:
PedroCailleret 2023-05-19 00:49:29 -03:00
parent 0b9b0307d2
commit 440048453b
17 changed files with 50 additions and 14 deletions

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../build-info/249d92249de0943da88155e04b92fb7f.json" "buildInfo": "../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../build-info/3511ccc4f632d4fc1741b59d8fb89855.json" "buildInfo": "../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/7e64ed907e656944d305af383d70ed0c.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/6c3e670658cfbeb3de636ecbaa8ad53a.json" "buildInfo": "../../../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -1,4 +1,4 @@
{ {
"_format": "hh-sol-dbg-1", "_format": "hh-sol-dbg-1",
"buildInfo": "../../build-info/249d92249de0943da88155e04b92fb7f.json" "buildInfo": "../../build-info/344a2bde6eeb71222e5ca4221b552f86.json"
} }

View File

@ -4,6 +4,7 @@ import { config as dotenvConfig } from "dotenv";
import "hardhat-tracer"; import "hardhat-tracer";
import { HardhatUserConfig } from "hardhat/config"; import { HardhatUserConfig } from "hardhat/config";
import { NetworkUserConfig } from "hardhat/types"; import { NetworkUserConfig } from "hardhat/types";
import "hardhat-contract-sizer";
import { resolve } from "path"; import { resolve } from "path";
dotenvConfig({ path: resolve(__dirname, "./.env") }); dotenvConfig({ path: resolve(__dirname, "./.env") });

View File

@ -63,6 +63,7 @@
"ethers": "^5.7.2", "ethers": "^5.7.2",
"fs-extra": "^10.1.0", "fs-extra": "^10.1.0",
"hardhat": "^2.12.2", "hardhat": "^2.12.2",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9", "hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "beta", "hardhat-tracer": "beta",
"husky": "^8.0.1", "husky": "^8.0.1",

View File

@ -409,6 +409,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425
languageName: node
linkType: hard
"@commitlint/cli@npm:^17.2.0": "@commitlint/cli@npm:^17.2.0":
version: 17.2.0 version: 17.2.0
resolution: "@commitlint/cli@npm:17.2.0" resolution: "@commitlint/cli@npm:17.2.0"
@ -3688,6 +3695,19 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"cli-table3@npm:^0.6.0":
version: 0.6.3
resolution: "cli-table3@npm:0.6.3"
dependencies:
"@colors/colors": 1.5.0
string-width: ^4.2.0
dependenciesMeta:
"@colors/colors":
optional: true
checksum: 09897f68467973f827c04e7eaadf13b55f8aec49ecd6647cc276386ea660059322e2dd8020a8b6b84d422dbdd619597046fa89cbbbdc95b2cea149a2df7c096c
languageName: node
linkType: hard
"cli-truncate@npm:^2.1.0": "cli-truncate@npm:^2.1.0":
version: 2.1.0 version: 2.1.0
resolution: "cli-truncate@npm:2.1.0" resolution: "cli-truncate@npm:2.1.0"
@ -6036,6 +6056,19 @@ fsevents@~2.1.1:
languageName: node languageName: node
linkType: hard linkType: hard
"hardhat-contract-sizer@npm:^2.8.0":
version: 2.8.0
resolution: "hardhat-contract-sizer@npm:2.8.0"
dependencies:
chalk: ^4.0.0
cli-table3: ^0.6.0
strip-ansi: ^6.0.0
peerDependencies:
hardhat: ^2.0.0
checksum: 6f1f4aca16a8ceeb9b3ce8ec89075c2fb292a3c82941ae826a9d503e077fda58e1d62b5c561252385c320a978d65399a2e829cec7c643250eaca163546831cbb
languageName: node
linkType: hard
"hardhat-gas-reporter@npm:^1.0.9": "hardhat-gas-reporter@npm:^1.0.9":
version: 1.0.9 version: 1.0.9
resolution: "hardhat-gas-reporter@npm:1.0.9" resolution: "hardhat-gas-reporter@npm:1.0.9"
@ -8459,6 +8492,7 @@ fsevents@~2.1.1:
ethers: ^5.7.2 ethers: ^5.7.2
fs-extra: ^10.1.0 fs-extra: ^10.1.0
hardhat: ^2.12.2 hardhat: ^2.12.2
hardhat-contract-sizer: ^2.8.0
hardhat-gas-reporter: ^1.0.9 hardhat-gas-reporter: ^1.0.9
hardhat-tracer: beta hardhat-tracer: beta
husky: ^8.0.1 husky: ^8.0.1