You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
solidity contract on my ethereum sepolia node deployment
Description
I would like to install a simple solidity contract on my ethereum sepolia node.
It works, but if each method has only one parameter.
With two parameters e.g. uint bla in the method I get 500 errors from the server.
Environment
"ethers": "6.13.5",
"hardhat": "2.22.17",
solidity 0.8.28;
Steps to Reproduce
pragma solidity0.8.28;
contractSimpleStorage {
uint storedData;
function set(uintx, uintbla) public {
storedData = x;
}
function get() publicviewreturns (uint) {
return storedData;
}
}
The text was updated successfully, but these errors were encountered:
igorroman777
changed the title
econd parameter in solidity contact methode crashes sepolia node
second parameter in solidity contact methode crashes sepolia node
Jan 14, 2025
solidity contract on my ethereum sepolia node deployment
Description
I would like to install a simple solidity contract on my ethereum sepolia node.
It works, but if each method has only one parameter.
With two parameters e.g. uint bla in the method I get 500 errors from the server.
Environment
Steps to Reproduce
The text was updated successfully, but these errors were encountered: