-
Notifications
You must be signed in to change notification settings - Fork 125
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
Showing
2 changed files
with
122 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
# System Contracts | ||
|
||
System contracts are interfaces defined as contracts, which are essential or | ||
recommended for an eWASM VM. | ||
|
||
An eWASM VM implementation may opt to implement these interfaces natively | ||
or to rely on implementations written in eWASM. | ||
|
||
Each of these contracts have a pre defined address and can be executed through | ||
regular contract invocations. | ||
|
||
## Sentinel Contract | ||
|
||
Address: `0x000000000000000000000000000000000000000a` | ||
|
||
Every newly deployed eWASM contract must be processed by the *Sentinel Contract* | ||
prior to including the code in the state. The sentinel will perform three very | ||
important processing steps: | ||
- Validate eWASM semantics | ||
- Inject metering code | ||
- Wrap the result in the deployer preamble (*see Appendix*) | ||
|
||
Input: | ||
- **variable length**: *eWASM contract code* | ||
|
||
Output: | ||
- **variable length**: *eWASM contract code* | ||
|
||
## EVM Transcompiler | ||
|
||
Address: `0x000000000000000000000000000000000000000b` | ||
|
||
This is optional. It is provided for pure eWASM VMs to support EVM1 contracts. | ||
|
||
Input: | ||
- **variable length**: *EVM1 contract code* | ||
|
||
Output: | ||
- **variable length**: *eWASM contract code* | ||
|
||
## EVM Precompiled Contracts | ||
|
||
Precompiled contracts are defined for EVM1 (see the Yellow Paper). Several | ||
extensions have been proposed as *[Ethereum Improvement Proposals](https://github.com/ethereum/EIPs)*. | ||
|
||
We assume the contracts defined in the Yellow Paper still apply for eWASM. | ||
|
||
### ecrecover | ||
|
||
Address: `0x0000000000000000000000000000000000000001` | ||
|
||
Calculates the corresponding Ethereum address for the public key which created the given signature. | ||
|
||
Input: | ||
- **32 bytes**: *message hash* | ||
- **32 bytes**: *recovery id* | ||
- **32 bytes**: *R component* | ||
- **32 bytes**: *S component* | ||
|
||
Output: | ||
- **32 bytes**: *Ethereum address* (left padded with zeroes) | ||
|
||
### sha2-256 | ||
|
||
Address: `0x0000000000000000000000000000000000000002` | ||
|
||
Returns the SHA2-256 hash of the input. | ||
|
||
Input: | ||
- **variable length**: *input data* | ||
|
||
Output: | ||
- **32 bytes**: *sha2-256 hash* | ||
|
||
### ripemd160 | ||
|
||
Address: `0x0000000000000000000000000000000000000003` | ||
|
||
Returns the RIPEMD-160 hash of the input. | ||
|
||
Input: | ||
- **variable length**: *input data* | ||
|
||
Output: | ||
- **32 bytes**: *ripemd160 hash* (left padded with zeroes) | ||
|
||
### identity | ||
|
||
Address: `0x0000000000000000000000000000000000000004` | ||
|
||
Copies the input data to the output. | ||
|
||
Input: | ||
- **variable length**: *input data* | ||
|
||
Output: | ||
- **variable length**: *output data* | ||
|
||
### Appendix: eWASM deployer preamble | ||
|
||
``` | ||
;; | ||
;; Standard eWASM deployer code. | ||
;; | ||
;; We keep the to-be-deployed contract as a memory segment and simply return it. | ||
;; | ||
(module | ||
(memory 1 | ||
(segment 0 "\10\00\00\00") ;; Here comes the size of the code in LSB | ||
(segment 4 "Hello World CODE") ;; Here comes the code as a escaped hex string | ||
) | ||
(export "memory" memory) | ||
(export "main" $main) | ||
(import $ethereum_return "ethereum" "return" (param i32 i32)) | ||
(func $main | ||
(call_import $ethereum_return (i32.const 4) (i32.load (i32.const 0))) | ||
) | ||
) | ||
``` |