Skip to content

Commit

Permalink
fix: missing explicit ethers import (#1507)
Browse files Browse the repository at this point in the history
* fix: first commit

* fix: first commit
  • Loading branch information
freemanzMrojo authored Nov 12, 2024
1 parent b370f7a commit d682e08
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/aws-kms-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
"@aws-sdk/client-kms": "^3.682.0",
"@vechain/sdk-errors": "1.0.0-rc.2",
"@vechain/sdk-network": "1.0.0-rc.2",
"asn1js": "^3.0.5"
"asn1js": "^3.0.5",
"ethers": "6.13.4",
"viem": "^2.21.19"
}
}
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"@scure/bip39": "^1.4.0",
"@vechain/sdk-errors": "1.0.0-rc.2",
"@vechain/sdk-logging": "1.0.0-rc.2",
"abitype": "^1.0.6",
"ethers": "6.13.4",
"fast-json-stable-stringify": "^2.1.0",
"viem": "^2.21.19"
Expand Down
3 changes: 2 additions & 1 deletion packages/ethers-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"dependencies": {
"@vechain/sdk-core": "1.0.0-rc.2",
"@vechain/sdk-errors": "1.0.0-rc.2",
"@vechain/sdk-network": "1.0.0-rc.2"
"@vechain/sdk-network": "1.0.0-rc.2",
"ethers": "6.13.4"
}
}
3 changes: 2 additions & 1 deletion packages/hardhat-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"dependencies": {
"@vechain/sdk-errors": "1.0.0-rc.2",
"@vechain/sdk-ethers-adapter": "1.0.0-rc.2",
"@vechain/sdk-network": "1.0.0-rc.2"
"@vechain/sdk-network": "1.0.0-rc.2",
"ethers": "6.13.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8"
Expand Down
1 change: 1 addition & 0 deletions packages/network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"@vechain/sdk-logging": "1.0.0-rc.2",
"@vechain/vebetterdao-contracts": "^4.0.0",
"abitype": "^1.0.6",
"ethers": "6.13.4",
"isomorphic-ws": "^5.0.0",
"viem": "^2.21.19",
"ws": "^8.18.0"
Expand Down

1 comment on commit d682e08

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Coverage

Summary

Lines Statements Branches Functions
Coverage: 99%
98.99% (4343/4387) 97.53% (1387/1422) 99% (896/905)
Title Tests Skipped Failures Errors Time
core 827 0 πŸ’€ 0 ❌ 0 πŸ”₯ 2m 22s ⏱️
network 719 0 πŸ’€ 0 ❌ 0 πŸ”₯ 4m 53s ⏱️
errors 42 0 πŸ’€ 0 ❌ 0 πŸ”₯ 16.622s ⏱️
logging 3 0 πŸ’€ 0 ❌ 0 πŸ”₯ 18.155s ⏱️
hardhat-plugin 19 0 πŸ’€ 0 ❌ 0 πŸ”₯ 1m 1s ⏱️
aws-kms-adapter 23 0 πŸ’€ 0 ❌ 0 πŸ”₯ 1m 23s ⏱️
ethers-adapter 5 0 πŸ’€ 0 ❌ 0 πŸ”₯ 1m 13s ⏱️
rpc-proxy 37 0 πŸ’€ 0 ❌ 0 πŸ”₯ 1m 4s ⏱️

Please sign in to comment.