Skip to content

Commit

Permalink
Merge pull request #3107 from ethereum/jsvmRM
Browse files Browse the repository at this point in the history
updating names of Environments in docs
  • Loading branch information
ryestew committed Jul 26, 2022
2 parents f36f320 + 8e57a4d commit 5eb4377
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ There is a plugin called `Flattener` which will stuff all the original code and

### Deploy & Run

**Q:** I am using an Infura endpoint in my app, but when I try to deploy against that endpoint in remix IDE selecting "web3 provider" and putting my endpoint in, it's telling me that it can't connect
**Q:** I am using an Infura endpoint in my app, but when I try to deploy against that endpoint in Remix IDE selecting "External HTTP Provider" and putting my endpoint in, it's telling me that it can't connect

**A:** If the endpoint you are using is http, it won't work.

Expand Down
2 changes: 1 addition & 1 deletion docs/plugin_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Clone repos from github & create GIT repos & use standard git commands. Also exp
<br>[Make an issue](https://github.com/oneclickdapp/remix-plugin-one-click-dapp/issues)

**Proveable Oracle Services** &nbsp; ![](images/pi-proveable.png)
<br>An oracle for the JavaScript VM environment.
<br>An oracle for the Remix VM environment.
<br>[profile name](https://github.com/ethereum/remix-plugins-directory/blob/master/plugins/provable/profile.json): provable
<br>[Documentation](https://docs.provable.xyz/#development-tools-remix-ide-provable-plugin)

Expand Down
2 changes: 1 addition & 1 deletion docs/running_js_scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Remix accepts async/await scripts to run [web3.js](https://web3js.readthedocs.io
2. Compile a Solidity file - to generate the contract metadata.

3. In the Deploy & Run plugin, choose the Environment.
* Async/await scripts work on in all of the Environments: the JavascriptVM, Injected Web3, and Web3 Provider.
* Async/await scripts work on in all of the Environments: the Remix VM, Injected Provider (usually MetaMask), and External HTTP Provider.

## JS Scripts in the File Explorers
In the **scripts** folder of a **workspace**, there are 2 example files: one using **web3.js** and the other using **ethers.js**.
Expand Down
2 changes: 1 addition & 1 deletion docs/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To get to **Settings** click the gear at the very bottom of the icon panel.
![](images/a-settings-general.png)

- Generate contract metadata is used for deploying with libraries. See our blog post on the subject: [Deploying with Libraries](https://medium.com/remix-ide/deploying-with-libraries-on-remix-ide-24f5f7423b60?sk=68f9c2bf318e85e129e46fe44683a730)
- Always use Ethereum VM at Load: will make the Javascript VM the selected **environment** when Remix loads.
- Always use Remix VM at Load: will make the Remix VM the selected **environment** when Remix loads.
- Text wrap: controls if the text in the editor should be wrapped.
- Personal mode: can be used when one is connecting to a **local node**. It is used to have Remix temporarily save the passphrase - so that you don't need to **unlock** the account in GETH. Remix will not persist the passphrase - so if you refresh your browser the passphrase will be gone.
- Matomo Analytics: This is where you can turn off and on your approval for us to use Matomo. We do not collect any personally identifiable information (PII) and our reports are public. See our [blog post on the subject](https://medium.com/remix-ide/help-us-improve-remix-ide-66ef69e14931?source=friends_link&sk=cf9c62fbe1270543eb4bd912e567e2d6).
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial_debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ contract Donation {
- Compile the code.
- Go to the Run & Deploy module.

For the purpose of this tutorial, we will run the `JavaScript VM`.
For the purpose of this tutorial, we will run the `Remix VM`.

- Deploy the contract:

Expand All @@ -80,7 +80,7 @@ Then click the `Donate` button.

This will send the Ether to the function.

Because we are using the `JavaScript VM`, everything happens almost instantly. (If we had been using Injected Web 3, then we would have to need to approve the transaction, pay for gas and wait for the transaction to get mined.)
Because we are using the `Remix VM`, everything happens almost instantly. (If we had been using Injected Web 3, then we would have to need to approve the transaction, pay for gas and wait for the transaction to get mined.)

Remix displays information related to each transaction result in the terminal.

Expand Down

0 comments on commit 5eb4377

Please sign in to comment.