Skip to content

Commit

Permalink
devDeps: Bump devDependencies (#106)
Browse files Browse the repository at this point in the history
* devDeps: ethereumjs-util@^6.1.0 -> @ethereumjs/util@^8.1.0

* devDeps: eth-block-tracker@^4.4.1->^6.1.0

* devDeps: tape@^4.9.1->^5.6.6

* devDeps: sinon@^13.0.2->^15.2.0

* chore: update allow-scripts configuration

* devDeps: @metamask/auto-changelog@^3.1.0->^3.3.0

* devDeps: eth-block-tracker@^6.1.0->^8.0.0

* yarn dedupe

* bump tape
  • Loading branch information
legobeat authored Oct 7, 2023
1 parent 5f99478 commit f4b9d08
Show file tree
Hide file tree
Showing 4 changed files with 663 additions and 295 deletions.
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
"pify": "^5.0.0"
},
"devDependencies": {
"@ethereumjs/util": "^8.1.0",
"@lavamoat/allow-scripts": "^2.5.1",
"@metamask/auto-changelog": "^3.1.0",
"@metamask/auto-changelog": "^3.3.0",
"@metamask/eth-json-rpc-middleware": "^12.0.0",
"eth-block-tracker": "^4.4.1",
"ethereumjs-util": "^6.1.0",
"eth-block-tracker": "^8.0.0",
"ethjs-query": "^0.3.8",
"ganache-core": "^2.13.2",
"sinon": "^13.0.2",
"tape": "^4.9.1"
"sinon": "^15.2.0",
"tape": "^5.7.0"
},
"repository": {
"type": "git",
Expand All @@ -57,7 +57,9 @@
"ganache-core>keccak": false,
"ganache-core>web3": false,
"ganache-core>websocket>bufferutil": false,
"ganache-core>websocket>utf-8-validate": false
"ganache-core>websocket>utf-8-validate": false,
"ganache-core>ethereumjs-util>ethereum-cryptography>keccak": false,
"ganache-core>ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}
2 changes: 1 addition & 1 deletion test/ganache.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const test = require('tape')
const ethUtil = require('ethereumjs-util')
const ethUtil = require('@ethereumjs/util')
const {
createTestSetup,
asyncTest,
Expand Down
4 changes: 2 additions & 2 deletions test/util.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const EventEmitter = require('events')
const EthBlockTracker = require('eth-block-tracker')
const { PollingBlockTracker } = require('eth-block-tracker')
const EthQuery = require('ethjs-query')
const { JsonRpcEngine } = require('@metamask/json-rpc-engine')
const { providerAsMiddleware } = require('@metamask/eth-json-rpc-middleware')
Expand All @@ -23,7 +23,7 @@ function createTestSetup () {
// raw data source
const { ganacheProvider, forceNextBlock } = createEngineFromGanacheCore()
// create block trackerfilterId
const blockTracker = new EthBlockTracker({
const blockTracker = new PollingBlockTracker({
provider: ganacheProvider,
pollingInterval: 200,
})
Expand Down
Loading

0 comments on commit f4b9d08

Please sign in to comment.