Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Janther committed Jan 30, 2022
1 parent 185bf82 commit 19d2138
Show file tree
Hide file tree
Showing 4 changed files with 590 additions and 335 deletions.
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,45 +14,45 @@
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@ethersproject/providers": "^5.5.2",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"dotenv": "^14.3.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"ethers": "^5.5.3",
"fs-extra": "^10.0.0",
"hardhat": "^2.7.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat": "^2.8.0",
"hardhat-gas-reporter": "^1.0.7",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"mocha": "^9.2.0",
"pinst": "^2.1.6",
"prettier": "^2.5.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"solidity-coverage": "^0.7.18",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.2"
"typechain": "^7.0.0",
"typescript": "^4.5.5"
},
"files": [
"/contracts"
Expand Down
2 changes: 2 additions & 0 deletions src/types/Greeter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { Listener, Provider } from "@ethersproject/providers";
import { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common";

export interface GreeterInterface extends utils.Interface {
contractName: "Greeter";
functions: {
"greet()": FunctionFragment;
"greeting()": FunctionFragment;
Expand Down Expand Up @@ -44,6 +45,7 @@ export interface GreeterInterface extends utils.Interface {
}

export interface Greeter extends BaseContract {
contractName: "Greeter";
connect(signerOrProvider: Signer | Provider | string): this;
attach(addressOrName: string): this;
deployed(): Promise<this>;
Expand Down
3 changes: 3 additions & 0 deletions src/types/factories/Greeter__factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export class Greeter__factory extends ContractFactory {
} else {
super(_abi, _bytecode, args[0]);
}
this.contractName = "Greeter";
}

deploy(
Expand All @@ -108,6 +109,8 @@ export class Greeter__factory extends ContractFactory {
connect(signer: Signer): Greeter__factory {
return super.connect(signer) as Greeter__factory;
}
static readonly contractName: "Greeter";
public readonly contractName: "Greeter";
static readonly bytecode = _bytecode;
static readonly abi = _abi;
static createInterface(): GreeterInterface {
Expand Down
Loading

0 comments on commit 19d2138

Please sign in to comment.