Post
Share your knowledge.
Remix-like tool for Anvil
I know you can deploy contracts from Remix to Anvil. But is there a way to interact with contracts that were deployed from my machine in Anvil? These contracts are not visible in Remix.
Or is there another tool like Remix that can do that? How are the experienced developers interacting with contracts?
Thanks
- Solidity
Answers
1You can try follow this instruction:
https://medium.com/quick-programming/importing-existing-smart-contracts-using-remix-a9fd076489ca
I usually deploy contracts to Polygon testnet (mumbai). And call actions by script (function userFunctions
etc.)
https://github.com/peeranha/peeranha/blob/develop/scripts/post-action.js
Do you know the answer?
Please log in and share it.
Solidity is an object-oriented, high-level language for implementing smart contracts. It is a curly-bracket language designed to target the Ethereum Virtual Machine (EVM).
- My ERC721 contract successfully deploys, but I can't verify the contract's source code with hardhat21
- Solidity and ethers.js Compute Different Addresses from the Same Signature21
- can't understand what are the locations(uint256)22
- How to reverse keccak256 in solidity22
- Clarification on Gas Refunds and Comparison Between "require" and "revert" in Smart Contracts21