跳至主要内容
本页面使用机器翻译自英语,可能包含错误或不清楚的语言。如需最准确的信息,请参阅英文原文。由于更新频繁,部分内容可能与英文原文有出入。请加入我们在 Crowdin 上的努力,帮助我们改进本页面的翻译。 (Crowdin translation page, Contributing guide)

Write

当您需要更新合约中的某些状态时,可以与智能合约进行**"事务 "**交互。

从 Web3j 和 kaia 库(web3j-ext)中导入必要的类。

使用 Web3j 连接到 kaia 区块链并指定 URL

使用私钥创建 KlayCredentials

定义与之交互的智能合约地址

确定合约交易的gas价格和gas限额

创建gas供应商,并设定静态gas价格和gas限额

使用联系地址Web3j 实例凭据gas提供商加载合约。 您可以通过该实例读写合约

在写入之前,获取合约中存储的当前数字

调用 "counter.increment().send() "来递增合约中存储的***数字

写入后,获取存储在合约中的更新

WriteContractExample.java

package org.web3j.example.contracts;
import java.math.BigInteger;
import org.web3j.crypto.KlayCredentials;
import org.web3j.tx.response.PollingTransactionReceiptProcessor;
import org.web3j.tx.response.TransactionReceiptProcessor;
import org.web3j.example.keySample;
import org.web3j.protocol.http.HttpService;
import org.web3j.protocol.kaia.Web3j;
import org.web3j.tx.gas.StaticGasProvider;
public class WriteContractExample {
/**
* @throws Exception
*
*/
public static void run() throws Exception {
Web3j web3j = Web3j.build(new HttpService(keySample.BAOBAB_URL));
KlayCredentials credentials = KlayCredentials.create(keySample.LEGACY_KEY_privkey);
String contractAddr = "0x95Be48607498109030592C08aDC9577c7C2dD505";
BigInteger GAS_PRICE = BigInteger.valueOf(50000000000L);
BigInteger GAS_LIMIT = BigInteger.valueOf(6721950);
StaticGasProvider gasProvider = new StaticGasProvider(GAS_PRICE, GAS_LIMIT);
Counter counter = Counter.load(contractAddr, web3j, credentials.convertToCredentials(), gasProvider);
// Get number before Contract Write
System.out.println("number before : " + counter.number().send());
// Contract Write (increment function)
counter.increment().send();
// Get number after Contract Write
System.out.println("number after : " + counter.number().send());
}
}

output

❯ java WriteContractExample.java
number before : 297
number after : 298

让这个页面变得更好