diff --git a/apps/remix-ide/src/app/tabs/runTab/settings.js b/apps/remix-ide/src/app/tabs/runTab/settings.js index 3ba7a0f261..d03e58f6ea 100644 --- a/apps/remix-ide/src/app/tabs/runTab/settings.js +++ b/apps/remix-ide/src/app/tabs/runTab/settings.js @@ -240,13 +240,13 @@ class SettingsUI { return yo`
Note: To use Geth & https://remix.ethereum.org, configure it to allow requests from Remix:(see Geth Docs on rpc server) -
geth --rpc --rpccorsdomain https://remix.ethereum.org
+
geth --http --http.corsdomain https://remix.ethereum.org

To run Remix & a local Geth test node, use this command: (see Geth Docs on Dev mode) -
geth --rpc --rpccorsdomain="${window.origin}" --rpcapi web3,eth,debug,personal,net --vmdebug --datadir ${thePath} --dev console
+
geth --http --http.corsdomain="${window.origin}" --http.api web3,eth,debug,personal,net --vmdebug --datadir ${thePath} --dev console


- WARNING: It is not safe to use the --rpccorsdomain flag with a wildcard: --rpccorsdomain * + WARNING: It is not safe to use the --http.corsdomain flag with a wildcard: --http.corsdomain *

For more info: Remix Docs on Web3 Provider