Ewasm research intro
Highlighted Deep Dive Into Polkadot/Substrate/Kusama/EWASM(5)
đ©âđ«đ©âđ«đ©âđ«
Introducing¶
WebAssembly (or Wasm as a contraction) is a new, portable, size- and load-time-efficient format. A few key points: WebAssembly defines an instruction set, intermediate source format (WAST) and a binary encoded format (WASM). WebAssembly has a few higher level features, such as the ability to import and execute outside methods defined via an interface.
WASM¶
Fast. WebAssembly achieves near native performance. Compared with the Java, Python or JavaScript runtimes, it can be 10x to 100x faster (how is this possible?). It is also much faster than Docker, especially in cold start and system access.
Safe. WebAssembly is a sandbox with a capability-based security model. It is not only safer than native binaries, but also safer than OS-level containers like Docker. Yet it provides access to the underlying system, icnluding new hardware features.
Portable. WebAssembly apps can be written in C, C++, Rust, Go, and run without change on different OS and hardware platforms.
Manageable. WebAssembly programs can be provisioned, started, hot swapped, stopped, and moved around by other applications.
Goals¶
To provide a specification of ewasm contract semantics and the Ethereum interface
To provide an EVM transcompiler, preferably as an ewasm contract
To provide a metering injector, preferably as an ewasm contract
To provide a VM implementation for executing ewasm contracts
To implement an ewasm backend in the Solidity compiler
To provide a library and instructions for writing contracts in Rust
To provide a library and instructions for writing contracts in C.
ImportantContent¶
The project VP Hung-Ying Tai (hydai) from Second State shared the current research content and future direction of Ewasm VM. The content is very exciting, including EVM bytecode, Webassembly, Ewasm1.0 and Ewasm2.0.
PALLET¶
While supporting the EVM pallet to provide seamless compatibility with all existing Ethereum applications, ParaState also provides developers with a next-gen smart contract implementation environment, EWASM (Ethereum-flavored WebAssembly). All existing Ethereum smart contracts work on ParaStateâs Ewasm VM (Pallet SSVM) without any change.We see more and more parachain projects like Acala, Clover Finance, and Darwinia etc to integrate the EVM pallet into their parachains in order to interact with Ethereum ecosystem.
EEI¶
Ethereum defines the EEI to allow the client Corresponding function libraries can be implemented in different languages, and it is easier to complete prototypes and upgrades. A set of methods available to ewasm contracts.
The smart contract of Ewasm 2.0 is renamed Execution Environments (EE).
LLVM¶
LLVM includes a WebAssembly backend to generate WASM output. Major browser JavaScript engines will notably have native support for WebAssembly, including but not limited to: Google's V8 engine (Node.js and Chromium-based browsers), Microsoft's Chakra engine (Microsoft Edge), Mozilla's Spidermonkey engine (Firefox and Thunderbird). * Other non-browser implementations exist too: wasm-jit-prototype (a standalone VM using an LLVM backend), wabt (a stack-based interpreter), ml-proto (the OCaml reference interpreter), etc.
it future-proofs the Ethereum protocol by bringing the LLVM and WebAssembly developer communities into the Polkadot ecosystem. It is your best choice among one-stop development platforms for next-gen Web3 applications. It is Ethereum on Steroids.
SecondState developers recently built a Solidity to Ewasm compiler called Soll.
solc/solc --strict-assembly --optimize ~/simple_storage/simple_storage_yul_ir.txt
SewUp¶
The Second State EWasm Utility Program (SewUp) is a library that helps you sew up your Ethereum project with Rust, just like development in a common backend.
[Tutorial-Hello-World]](https://docs.parastate.io/developers-resources/sewup-ewasm/tutorial-hello-world)
đđđ
đđđ
Literature¶
Ewasm contract: a contract adhering to the ewasm specification
Ethereum environment interface = EEI
metering: the act of measuring execution cost in a deterministic way
metering injector: a transformation tool inserting metering code to an ewasm contract
EVM transcompiler: an EVM bytecode (the current Ethereum VM) to ewasm transcompiler. See this chapter.
â€ïžâ€ïžâ€ïž
Reseacher & Organized by:
đArman-Riaziđ€
[[Polkadot-Ecosystem-Research]]
[[Substrate]]