This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 681
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a1ac6c
commit 4df5260
Showing
463 changed files
with
377 additions
and
636 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
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,21 +1,3 @@ | ||
# global code owner: | ||
|
||
* @davidmurdoch | ||
|
||
# typed transactions: | ||
|
||
src/chains/ethereum/transaction/src/access-lists.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/base-transaction.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/eip1559-fee-market-transaction.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/eip2930-access-list-transaction.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/legacy-transaction.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/transaction-factory.ts @MicaiahReid | ||
src/chains/ethereum/transaction/src/transaction-types.ts @MicaiahReid | ||
|
||
# transaction pool: | ||
|
||
src/chains/ethereum/ethereum/src/transaction-pool.ts @MicaiahReid | ||
|
||
# miner: | ||
|
||
src/chains/ethereum/ethereum/src/miner @MicaiahReid |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ node_modules | |
.nyc_output | ||
lerna-debug.log | ||
npm-debug.log | ||
src/**/*/lib | ||
packages/**/*/lib | ||
coverage | ||
dist/ | ||
typings/ |
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
- `git clone [email protected]:trufflesuite/ganache.git` | ||
- `cd ganache` | ||
- `npm install` (use npm v6) | ||
- On Linux and macOS: run `source completions.sh` to enable autocomplete for npm scripts. | ||
|
||
## Solving node-gyp issues | ||
|
||
|
@@ -97,20 +96,13 @@ To pass options to the cli you must separate the args with `--`, e.g.: | |
|
||
- `npm start -- --chain.chainId 1 --wallet.totalAccounts 5` | ||
|
||
## To create a new chain/flavor | ||
|
||
- `npm run create <name> --location chains` | ||
|
||
This will create a new folder at `src/chains/<name>` where `<name>` should be the flavor name (e.g. `ethereum`), which | ||
you then can [create packages under](#to-create-a-new-package). | ||
|
||
## To create a new package | ||
|
||
- `npm run create <name> --location <location> [--folder <folder>]` | ||
|
||
This will create a new package with Ganache defaults at `src/<location>/<name>`. | ||
This will create a new package with Ganache defaults at `<location>/<name>`. | ||
|
||
If you provide the optional `--folder` option, the package will be created at `src/<location>/<folder>`. | ||
If you provide the optional `--folder` option, the package will be created at `<location>/<folder>`. | ||
|
||
## To add a module to a package: | ||
|
||
|
@@ -160,8 +152,8 @@ index 2a2aa9e..57cbf21 100644 | |
"--colors", | ||
"--require", | ||
"ts-node/register", | ||
- "${workspaceFolder}/src/**/tests/**/*.test.ts" | ||
+ "${workspaceFolder}/src/chains/ethereum/ethereum/tests/**/*.test.ts" | ||
- "${workspaceFolder}/packages/**/tests/**/*.test.ts" | ||
+ "${workspaceFolder}/packages/ethereum/ethereum/tests/**/*.test.ts" | ||
], | ||
"skipFiles": ["<node_internals>/**"], | ||
"console": "integratedTerminal", | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
./src/packages/ganache/README.md | ||
./packages/ganache/README.md |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.