Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用Java和在以太坊中进行交易Web3j。
Java
Web3j
现在我希望能够与smart contract. 但是由于我在构建时遇到问题wrapper,我想知道我是否可以通过在事务中发送数据来做到这一点。如果是这样,它是如何完成的?
smart contract
wrapper
尝试这些命令来构建包装器:
solc YourSmartContract.sol --bin --abi --optimize -o ./ web3j solidity generate YourSmartContract.bin YourSmartContract.abi -o /path/to/yourSrc/main/java -p your.application.id
然后它将生成一个 Java 文件,您可以从中调用方法来与您的智能合约进行交互。