Can Solidity be use outside of Ethereum?

Viewed 12

Simple question, can you develop and deploy blockchain using solidity?

Can we use solidity outside of Ethereum?

1 Answers

Solidity was developed specifically for Ethereum and compiles to Ethereum Virtual Machine bytecode, so it can be run only by EVM engines.

Related