832c4a7565
* Add a dump of the state at the end of transaction for --json-test. Also fixes json-test output on finish, and allow to put both on err or out (--out-only and --err-only). * Dump state resolution from trie, function behind evm-bin feature to avoid misuse. * Rename 'slow' method to 'to_pod_full'. Use cache first in 'to_pod_full', for in between commits case. Change dump activation to use a function pointer instead. * Fix tests. * Query and add storage values to dump. * Switch to use `require` method, even if less efficient it is better in this case to reuse existing code. Reuse of `storage_at` was not easy in this case (could not iterate and use the method at the same time (refcell mutable borrow panics) so keeping code as is. * Switch to returning error. Use 'base_storage_root' instead of 'storage_root'. Added a test, it will only execute with json-test in ci, or when launch with the feature. * Renaming of command line parameters. Comments fixes. Minor code changes. * Fix evmbin cmd parsing test. * README update. * Fix extra space and avoid clone call on copiable address. * Revert test submodule. * Revert wasm-test submodule. * Use map_or instead of map + unwrap_or * restore tests submodule
56 lines
2.3 KiB
Markdown
56 lines
2.3 KiB
Markdown
## evmbin
|
|
|
|
EVM implementation for Parity.
|
|
|
|
### Usage
|
|
|
|
```
|
|
EVM implementation for Parity.
|
|
Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
|
|
|
Usage:
|
|
parity-evm state-test <file> [--json --std-json --std-dump-json --only NAME --chain CHAIN --std-out-only --std-err-only]
|
|
parity-evm stats [options]
|
|
parity-evm stats-jsontests-vm <file>
|
|
parity-evm [options]
|
|
parity-evm [-h | --help]
|
|
|
|
Commands:
|
|
state-test Run a state test from a json file.
|
|
stats Execute EVM runtime code and return the statistics.
|
|
stats-jsontests-vm Execute standard json-tests format VMTests and return
|
|
timing statistics in tsv format.
|
|
|
|
Transaction options:
|
|
--code CODE Contract code as hex (without 0x).
|
|
--to ADDRESS Recipient address (without 0x).
|
|
--from ADDRESS Sender address (without 0x).
|
|
--input DATA Input data as hex (without 0x).
|
|
--gas GAS Supplied gas as hex (without 0x).
|
|
--gas-price WEI Supplied gas price as hex (without 0x).
|
|
|
|
State test options:
|
|
--only NAME Runs only a single test matching the name.
|
|
--chain CHAIN Run only tests from specific chain.
|
|
|
|
General options:
|
|
--json Display verbose results in JSON.
|
|
--std-json Display results in standardized JSON format.
|
|
--std-err-only With --std-json redirect to err output only.
|
|
--std-out-only With --std-json redirect to out output only.
|
|
--std-dump-json Display results in standardized JSON format
|
|
with additional state dump.
|
|
Display result state dump in standardized JSON format.
|
|
--chain CHAIN Chain spec file path.
|
|
-h, --help Display this message and exit.
|
|
```
|
|
|
|
## Parity Ethereum toolchain
|
|
_This project is a part of the Parity Ethereum toolchain._
|
|
|
|
- [evmbin](https://github.com/paritytech/parity-ethereum/blob/master/evmbin/) - EVM implementation for Parity Ethereum.
|
|
- [ethabi](https://github.com/paritytech/ethabi) - Parity Ethereum function calls encoding.
|
|
- [ethstore](https://github.com/paritytech/parity-ethereum/blob/master/ethstore/) - Parity Ethereum key management.
|
|
- [ethkey](https://github.com/paritytech/parity-ethereum/blob/master/ethkey/) - Parity Ethereum keys generator.
|
|
- [whisper](https://github.com/paritytech/parity-ethereum/blob/master/whisper/) - Implementation of Whisper-v2 PoC.
|