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
An error occurred when generating the solidity corresponding java wrapper class through web3j-maven-plugin: [ERROR] Failed to get solidity version from server
running cmd : mvn web3j:generate-sources
Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract MyContract {
uint256 public value;
function setValue(uint256 newValue) public {
value = newValue;
}
function getValue() public view returns (uint256) {
return value;
}
}
An error occurred when generating the solidity corresponding java wrapper class through web3j-maven-plugin: [ERROR] Failed to get solidity version from server
running cmd : mvn web3j:generate-sources
Contract
Pom.xml
The text was updated successfully, but these errors were encountered: