web3j-cli
web3j-cli copied to clipboard
Command-line interface for web3j
Do you know how to fix it?
error: ```java.lang.IllegalStateException: java.lang.ClassNotFoundException: org.web3j.generated.contracts.HelloWorld``` [logs.txt](https://github.com/hyperledger/web3j-cli/files/15090931/logs.txt)
Contract ABI json : ```[ { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "_addr", "type": "address" } ], "name": "Deployed", "type": "event" }, { "anonymous": false, "inputs":...
ABI https://github.com/sunflower-farmers/sunflower-farmers/blob/main/src/abis/Farm.json SOL https://github.com/sunflower-farmers/sunflower-farmers/blob/main/src/contracts/Farm.sol
Trying to use the cli's `web3j openapi generate` command on a project that uses external imports (solidity files in a directory other than the one specified with the `-s` option)...
DynamicStruct change to StaticArray1-32,Because there is no DynamicStruct class in version 5.x web3j-cli Version: 1.4.2 
When I pull down and build web3j-cli using Windows/Eclipse/Gradle, I get the following errors. Where is it supposed to be pulling the org.web3j.console.openapi package from? I don't see it anywhere....
I am trying to generate a wrapper for the following contract : https://polygonscan.com/address/0x920f22e1e5da04504b765f8110ab96a20e6408bd#code The web3j-cli generates the main java file that references classes RewardData and LockedBalance. However these two classes...
I am working on converting my contract.sol to contract.java by using web3j. Web3j has been installed by using `curl -L get.web3j.io | sh` and web3j --version shows ``` Version: 1.4.1...
I've a smartcontract in which I've a function getLevels() that returns an array of struct type MLevel, defined at the beginning of smartcontract. ``` // SPDX-License-Identifier: MIT pragma solidity ^0.8.16;...