-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.x' into fix/type-account
- Loading branch information
Showing
62 changed files
with
599 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
|
||
module.exports = { | ||
solidity: "0.8.17", | ||
networks: { | ||
hardhat: { | ||
chainId: 1337, | ||
accounts: { | ||
|
||
} | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,15 +44,14 @@ | |
"build:docs": "yarn generate:docs && cd docs && yarn install && yarn build", | ||
"changelog": "ts-node -P scripts/changelog/tsconfig.json scripts/changelog/src/index.ts", | ||
"clean": "lerna run clean --stream --parallel", | ||
"ganache:start": "WEB3_SYSTEM_TEST_BACKEND=ganache && ./scripts/ganache.sh start", | ||
"ganache:start:background": "WEB3_SYSTEM_TEST_BACKEND=ganache && ./scripts/ganache.sh start 1", | ||
"ganache:stop": "./scripts/ganache.sh stop", | ||
"geth:start": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth.sh start", | ||
"geth:start:background": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth.sh start 1", | ||
"geth:stop": "./scripts/geth.sh stop", | ||
"geth-binary:start": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth_binary.sh start", | ||
"geth-binary:start:background": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth_binary.sh start 1", | ||
"geth-binary:stop": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth_binary.sh stop", | ||
"hardhat:start": "WEB3_SYSTEM_TEST_BACKEND=hardhat && ./scripts/hardhat.sh start", | ||
"hardhat:stop": "./scripts/hardhat.sh stop", | ||
"geth-manual:start:background": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth_binary.sh manualStart 1", | ||
"geth-manual:stop": "WEB3_SYSTEM_TEST_BACKEND=geth && ./scripts/geth_binary.sh stop", | ||
"lint": "lerna run lint --stream --parallel", | ||
|
@@ -65,14 +64,10 @@ | |
"test:integration": "lerna run test:integration --stream", | ||
"test:benchmark": "lerna run test:benchmark", | ||
"test:integration:stress": "lerna run test:integration:stress --stream", | ||
"test:e2e:ganache:http": "./scripts/test-runner.sh ganache http", | ||
"test:e2e:ganache:ws": "./scripts/test-runner.sh ganache ws", | ||
"test:e2e:geth:http": "./scripts/test-runner.sh geth http", | ||
"test:e2e:geth:ws": "./scripts/test-runner.sh geth ws", | ||
"test:e2e:geth:ipc": "./scripts/test-runner.sh geth ipc", | ||
"test:e2e:ganache:ws:electron": "./scripts/test-runner.sh ganache ws electron", | ||
"test:e2e:ganache:ws:chrome": "./scripts/test-runner.sh ganache ws chrome", | ||
"test:e2e:ganache:ws:firefox": "./scripts/test-runner.sh ganache ws firefox", | ||
"test:e2e:hardhat:http": "./scripts/test-runner.sh hardhat http", | ||
"test:e2e:coverage": "./scripts/test-runner.sh coverage", | ||
"test:e2e:mainnet:http": "./scripts/test-runner.sh mainnet http", | ||
"test:e2e:mainnet:ws": "./scripts/test-runner.sh mainnet ws", | ||
|
@@ -85,12 +80,15 @@ | |
"generate:accounts": "node ./scripts/gen_accounts.js", | ||
"pre-blackbox": "yarn config set registry http://localhost:4873 && git init && git config --global user.email \"[email protected]\" && git config --global user.name \"CI\"", | ||
"post-blackbox": "./scripts/verdaccio.sh stop", | ||
"post-blackbox:ganache": "yarn ganache:stop && yarn post-blackbox", | ||
"post-blackbox:geth": "yarn geth:stop && yarn post-blackbox", | ||
"test:blackbox:ganache:http": "yarn pre-blackbox && yarn ganache:start:background && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:ganache:http --stream && yarn post-blackbox:ganache", | ||
"test:blackbox:ganache:ws": "yarn pre-blackbox && yarn ganache:start:background && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:ganache:ws --stream && yarn post-blackbox:ganache", | ||
"test:blackbox:geth:http": "yarn pre-blackbox && yarn geth:start:background && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:geth:http --stream && yarn post-blackbox:geth", | ||
"test:blackbox:geth:ws": "yarn pre-blackbox && yarn geth:start:background && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:geth:ws --stream && yarn post-blackbox:geth", | ||
"test:e2e:geth:ws:electron": "./scripts/test-runner.sh hardhat ws electron", | ||
"test:e2e:geth:ws:chrome": "./scripts/test-runner.sh hardhat ws chrome", | ||
"test:e2e:geth:ws:firefox": "./scripts/test-runner.sh hardhat ws firefox", | ||
"test:e2e:hardhat:ws:electron": "./scripts/test-runner.sh hardhat http electron", | ||
"test:e2e:hardhat:ws:chrome": "./scripts/test-runner.sh hardhat http chrome", | ||
"test:e2e:hardhat:ws:firefox": "./scripts/test-runner.sh hardhat http firefox", | ||
"test:blackbox:infura:http": "yarn pre-blackbox && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:infura:http --stream && yarn post-blackbox", | ||
"test:blackbox:infura:ws": "yarn pre-blackbox && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:infura:ws --stream && yarn post-blackbox", | ||
"test:manual:long-connection-ws": "node packages/web3/test/stress/long_ws_tests/nodejs_test/long_connection_ws.js", | ||
|
@@ -138,6 +136,7 @@ | |
"typedoc-plugin-merge-modules": "^5.1.0", | ||
"typescript": "^4.7.4", | ||
"utf-8-validate": "^5.0.9", | ||
"web3-hardhat-plugin": "^1.0.0", | ||
"webpack": "^5.73.0", | ||
"webpack-cli": "^4.10.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.