-
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
Save deployed contracts #4524
Save deployed contracts #4524
Conversation
✅ Deploy Preview for remixproject ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
3ac6269
to
546a6aa
Compare
69d10bd
to
2360280
Compare
libs/remix-ui/run-tab/src/lib/components/instanceContainerUI.tsx
Outdated
Show resolved
Hide resolved
libs/remix-ui/run-tab/src/lib/components/instanceContainerUI.tsx
Outdated
Show resolved
Hide resolved
useEffect(() => { | ||
const fetchSavedContracts = async () => { | ||
env.current = await props.plugin.call('blockchain', 'getProvider') | ||
if(env.current && env.current === 'injected') { |
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.
could this be for all providers which aren't a Remix VM?
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.
This should be discussed
b70fac7
to
ba24793
Compare
def44d1
to
c30a18b
Compare
Saved contracts don't work while using the |
when switching networks, only the saved contracts from the current network should be displayed. |
|
c30a18b
to
07c3dca
Compare
this is done |
point 2 is done |
9b40a1e
to
e32ebe4
Compare
the time displayed for the |
I think this feature is also working |
This allow saving a contract for injected web3 provider
Related to #3343