mirror of https://github.com/status-im/evmc.git
Rename eWASM to ewasm
This commit is contained in:
parent
08e5c03ebf
commit
32ef38f657
|
@ -9,7 +9,7 @@
|
||||||
- Added: [[#133](https://github.com/ethereum/evmc/pull/133)]
|
- Added: [[#133](https://github.com/ethereum/evmc/pull/133)]
|
||||||
Support for Constantinople CREATE2 salt in Go bindings.
|
Support for Constantinople CREATE2 salt in Go bindings.
|
||||||
- Added: [[#144](https://github.com/ethereum/evmc/pull/144)]
|
- Added: [[#144](https://github.com/ethereum/evmc/pull/144)]
|
||||||
A VM can now report its **capabilities** (i.e. EVM and/or eWASM).
|
A VM can now report its **capabilities** (i.e. EVM and/or ewasm).
|
||||||
- Added: [[#159](https://github.com/ethereum/evmc/pull/159)]
|
- Added: [[#159](https://github.com/ethereum/evmc/pull/159)]
|
||||||
[EVMC Host implementation guide](https://ethereum.github.io/evmc/hostguide.html).
|
[EVMC Host implementation guide](https://ethereum.github.io/evmc/hostguide.html).
|
||||||
- Added: [[#160](https://github.com/ethereum/evmc/pull/160)]
|
- Added: [[#160](https://github.com/ethereum/evmc/pull/160)]
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
> Ethereum Client-VM Connector API
|
> Ethereum Client-VM Connector API
|
||||||
|
|
||||||
The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and
|
The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and
|
||||||
Ethereum Clients. On the EVM side it supports classic EVM1 and [eWASM].
|
Ethereum Clients. On the EVM side it supports classic EVM1 and [ewasm].
|
||||||
On the Client-side it defines the interface for EVM implementations
|
On the Client-side it defines the interface for EVM implementations
|
||||||
to access Ethereum environment and state.
|
to access Ethereum environment and state.
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ Licensed under the [MIT License](LICENSE).
|
||||||
[@axic]: https://github.com/axic
|
[@axic]: https://github.com/axic
|
||||||
[@chfast]: https://github.com/chfast
|
[@chfast]: https://github.com/chfast
|
||||||
[documentation]: https://ethereum.github.io/evmc
|
[documentation]: https://ethereum.github.io/evmc
|
||||||
[eWASM]: https://github.com/ewasm/design
|
[ewasm]: https://github.com/ewasm/design
|
||||||
[evmjit]: https://github.com/ethereum/evmjit
|
[evmjit]: https://github.com/ethereum/evmjit
|
||||||
[Hera]: https://github.com/ewasm/hera
|
[Hera]: https://github.com/ewasm/hera
|
||||||
[Gitter]: https://gitter.im/ethereum/evmc
|
[Gitter]: https://gitter.im/ethereum/evmc
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# EVMC – Ethereum Client-VM Connector API {#mainpage}
|
# EVMC – Ethereum Client-VM Connector API {#mainpage}
|
||||||
|
|
||||||
The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and
|
The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and
|
||||||
Ethereum Clients. On the EVM-side it supports classic EVM1 and [eWASM].
|
Ethereum Clients. On the EVM-side it supports classic EVM1 and [ewasm].
|
||||||
On the Client-side it defines the interface for EVM implementations
|
On the Client-side it defines the interface for EVM implementations
|
||||||
to access Ethereum environment and state.
|
to access Ethereum environment and state.
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ can be referenced as EVMC ABIv3 or just EVMC 3.
|
||||||
– the EVMC-compatibility testing tool for VM implementations.
|
– the EVMC-compatibility testing tool for VM implementations.
|
||||||
|
|
||||||
|
|
||||||
[eWASM]: https://github.com/ewasm/design
|
[ewasm]: https://github.com/ewasm/design
|
||||||
|
|
||||||
|
|
||||||
@addtogroup EVMC
|
@addtogroup EVMC
|
||||||
|
|
Loading…
Reference in New Issue