Skip to content

EVM Compatibility

The SKALE execution model is fully compatible with the Ethereum Virtual Machine (EVM). This allows any smart contract that works on other EVMs to work on SKALE with no changes necessary.

Supported Languages

Solidity

Solidity is the most popular language for writing smart contracts for EVM blockchains, including SKALE Chains. Being turing complete with a JavaScript-like syntax, Solidity empowers developers to build smart contracts that can run on a SKALE Chain.

Since Solidity itself compiles to EVM compatible bytecode, many of the Ethereum Improvement Proposals (EIP) that take shape in the form of Ethereum Request for Comment (ERC), are also usable directly on SKALE with no changes needed. Examples of these popular standards include ERC-20 (Fungible Token Standard), ERC-721 (Non-Fungible Token Standard), and ERC-1155 (Multi Token Standard).

Vyper

Vyper is a pythonic language that targets the EVM. Vyper does not try to replace Solidity, but instead focuses on simplicity.

Yul

Yul is an intermediate language that can be compiled into bytecode. It can be used stand-alone or inside Solidity.

Supported Tooling

With SKALE Chains being EVM compatible, any tool or software that is chain-agnostic — meaning it can run on any EVM chain — should just work on SKALE! While some tools may not have docs directly for SKALE, any tooling that allows you to input your a custom RPC will generally be compatible.

For more tools, checkout the tools section.