-
Notifications
You must be signed in to change notification settings - Fork 778
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* EVM: reorder types, add some code docs * EVM: do not export the the replicated intermediary state interfaces, only the resulting dedicated VmStateAccess interface * EVM: rename VmStateAccess -> EVMStateAccess * EVM: rename RunCallOpts -> EVMRunCallOpts, RunCodeOpts -> EVMRunCodeOpts interfaces to have these more prominently stand out * EVM: removed/internalized TxContext interface * EVM: localized NewContractEvent type * EVM: simplified test command (removed test:API), moved test files one level up * EVM: fixed test import references * EVM: moved all result types to file bottom
- Loading branch information
Showing
20 changed files
with
288 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
import { getActivePrecompiles } from './precompiles' | ||
import { EEIInterface, EVMInterface, VmStateAccess, Log } from './types' | ||
import { EEIInterface, EVMInterface, EVMStateAccess, Log } from './types' | ||
import EVM, { EVMResult } from './evm' | ||
import { EvmError } from './exceptions' | ||
|
||
export { getActivePrecompiles, EEIInterface, EVMInterface, EvmError, VmStateAccess, Log, EVMResult } | ||
export { | ||
getActivePrecompiles, | ||
EEIInterface, | ||
EVMInterface, | ||
EvmError, | ||
EVMStateAccess, | ||
Log, | ||
EVMResult, | ||
} | ||
|
||
export default EVM |
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.