[Ethereum] How to connect from Remix to Kovan testnet

kovanremixtestnets

In Remix, there is a Contracts tab, where I can choose the "Execution environment". When I choose "Web3 Provider", I am asked to provide the "Web3 provider endpoint". What should I write there in order to connect to the public Kovan testnet?

(I hope the question makes sense… I am entirely new to Ether)

Best Answer

run parity with parity --chain kovan. and then in your endpoint provide http://localhost:8545 or http://127.0.0.1:8545

8545 is the RPC port

Related Topic