Skip to content

Commit

Permalink
chore(core-utils): pnpm up --latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Cory authored and Will Cory committed Aug 15, 2023
1 parent c0b4e32 commit e7880d8
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 40 deletions.
8 changes: 4 additions & 4 deletions packages/core-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/rlp": "^5.7.0",
"@ethersproject/web": "^5.7.0",
"chai": "^4.3.4",
"ethers": "^5.7.0",
"@ethersproject/web": "^5.7.1",
"chai": "^4.3.7",
"ethers": "^5.7.2",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node": "^20.5.0",
"mocha": "^10.0.0"
"mocha": "^10.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/core-utils/src/etherscan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class Etherscan {
url.searchParams.append('apikey', this.apiKey)
const response = await fetch(url)
const result = await response.json()
return result.result[0]
return (result as { result: number[] }).result[0]
}

public async getContractABI(address: string): Promise<any> {
Expand Down
77 changes: 42 additions & 35 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e7880d8

Please sign in to comment.