You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.0 KiB
88 lines
3.0 KiB
5 years ago
|
FAQ
|
||
|
===
|
||
|
|
||
|
### Solidity compiler
|
||
|
|
||
|
**Q: Error: compiler might be in a non-sane state**
|
||
5 years ago
|
```
|
||
5 years ago
|
error: "Uncaught JavaScript exception: RangeError: Maximum call stack size exceeded.
|
||
5 years ago
|
The compiler might be in a non-sane state, please be careful and do not use further compilation data to deploy to mainnet.
|
||
5 years ago
|
It is heavily recommended to use another browser not affected by this issue (Firefox is known to not be affected)."
|
||
5 years ago
|
```
|
||
|
|
||
|
**A:** Old versions of solidity compiler had this problem with chrome.
|
||
|
Please change the compiler version in Solidity Plugin to the newer one or use another browser.
|
||
|
|
||
5 years ago
|
**Q:** I’m getting an issue with Maximum call stack exceed and various other errors, can't compile.
|
||
|
|
||
|
**A:** Try a different browser or a newer solidity compiler version.
|
||
|
|
||
5 years ago
|
**Q:** How to verify a contract that imports other contracts?
|
||
|
|
||
|
**A:** The verification tool does not recursively go through the import statments in a contract. So can only verify a 'flattened' contract.
|
||
|
|
||
|
There is a plugin called `Flattener` which will stuff all the original code and the imported code into a single file.
|
||
|
|
||
5 years ago
|
### Deploy & Run
|
||
5 years ago
|
|
||
|
**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
|
||
|
|
||
|
**A:** If the endpoint you are using is http, it won't work.
|
||
|
|
||
|
**Q:** Where is deploy button?
|
||
|
|
||
5 years ago
|
**A:** Its in the Deploy & Run module. If you haven't activated that module, you should do that by clicking Deploy & Run module in the Plugin Manager.
|
||
|
You could also activate everything you need to work with solidity on the landing page ( click the remix logo at the top left for the screen) and click the "Solidity" button in the environment section.
|
||
5 years ago
|
|
||
|
**Q:** How to pass a tuple to a public function in Remix?
|
||
|
|
||
5 years ago
|
**A:** Pass it as an array [].
|
||
5 years ago
|
|
||
|
**Q:** How to input a struct as input to a parameter of a function in the Deploy & Run module?
|
||
|
|
||
5 years ago
|
**A:** For inputting a struct, just like a tuple, pass it in as an array []. Also you need to put in the line:
|
||
|
|
||
|
`pragma experimental ABIEncoderV2;` at the top of the solidity file.
|
||
5 years ago
|
|
||
5 years ago
|
For example, here's a solidity file with a struct is an input parameter.
|
||
5 years ago
|
|
||
|
```
|
||
5 years ago
|
pragma solidity >=0.4.22 <0.6.0;
|
||
|
pragma experimental ABIEncoderV2;
|
||
|
|
||
|
contract daPeeps {
|
||
|
struct Peep {uint a; uint b;} // declaration of Peep type
|
||
|
Peep peep; //declaration of an object of Peep type
|
||
|
|
||
|
constructor () public
|
||
|
{
|
||
|
peep.a = 0; // definition/initialisation of object
|
||
|
peep.b = 0; //
|
||
|
}
|
||
|
|
||
|
function initPeepToPeep(Peep memory i) public payable {
|
||
|
peep.a = i.a;
|
||
|
peep.b = i.b;
|
||
|
}
|
||
|
function setPeep(uint a, uint b) public payable {
|
||
|
peep.a = a;
|
||
|
peep.b = b;
|
||
|
}
|
||
|
|
||
|
function getPeep() public view returns(Peep memory)
|
||
|
{
|
||
|
return peep;
|
||
|
}
|
||
5 years ago
|
}
|
||
|
```
|
||
|
|
||
5 years ago
|
The input of initPeepToPeeps takes a struct. If you input
|
||
|
`[1,2]` the transaction will go through.
|
||
5 years ago
|
|
||
|
|
||
5 years ago
|
### General
|
||
5 years ago
|
|
||
5 years ago
|
**Q:** Where do plugin developers go with their questions?
|
||
5 years ago
|
|
||
5 years ago
|
**A:** The Gitter Remix plugin developers room https://gitter.im/ethereum/remix-dev-plugin
|