-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update to Remix Commands #3036
update to Remix Commands #3036
Conversation
@@ -28,66 +25,22 @@ In the console, you can run the commands listed below. Once you start to type a | |||
|
|||
**remix.loadurl(url)**: Load the given url in the file explorer. The url can be of type github, swarm or ipfs. | |||
|
|||
**remix.setFile(path, content)**: set the content of the file located at the given path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this command not working for remix anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the command is not in cmdInterpreterAPI.js
input: remix.setFile("./contracts/f", "fred")
returns: remix.setFile is not a function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
@@ -28,66 +25,22 @@ In the console, you can run the commands listed below. Once you start to type a | |||
|
|||
**remix.loadurl(url)**: Load the given url in the file explorer. The url can be of type github, swarm or ipfs. | |||
|
|||
**remix.setFile(path, content)**: set the content of the file located at the given path | |||
|
|||
**remix.setproviderurl(url)**: Change the current provider to Web3 provider and set the url endpoint. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the command is not in cmdInterpreterAPI.js
Input: remix.setproviderurl('HTTP://127.0.0.1:7545')
returns: remix.setproviderurl is not a function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
|
||
#### Here's the list of commands | ||
**remix.debug(hash)**: Start debugging a transaction. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and this too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the command is not in cmdInterpreterAPI.js
Putting in:
remix.debug('0x0e47a0e996f14bfd5db3d15e0e06b5dd07c4c248dab12cd352b29ae3e7c67471')
gives:
remix.debug is not a function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
fix ethereum/remix-project#88