Is it possible to deploy a python script on Ethereum Virtual Network or NEO?

1

Is it possible to deploy a python script as a dApp on the Ethereum or NEO virtual network?

J. Roibal - BlockchainEng

Posted 2018-07-17T09:25:48.203

Reputation: 161

Question was closed 2019-08-13T03:27:32.640

Answers

0

First of all: I don't know anything about NEO, I can just give you what I know about Ethereum.

As far as I know it is not possible to deploy a python script in the Ethereum network. In Ethereum you can only deploy Ethereum bytecode. It is compiled from smart contracts written in Solidity, Serpent, LLL or Vyper.

Other code than Ethereum bytecode will never be stored on the Ethereum blockchain (at least not in an executable way).

When you want to build a dApp you need to write the needed smart contract and (if necessary) somewhere host your python (or whatever) frontend and/or backend.

noobWithAComputer

Posted 2018-07-17T09:25:48.203

Reputation: 79

Thank you. I believe NEO smart contracts can be created in python, while I know Ethereumis Solidity.J. Roibal - BlockchainEng 2018-07-17T18:27:29.967