跳至主要內容
本頁面使用機器翻譯自英語,可能包含錯誤或不清楚的語言。如需最準確的信息,請參閱英文原文。由於更新頻繁,部分內容可能與英文原文有出入。請加入我們在 Crowdin 上的努力,幫助我們改進本頁面的翻譯。 (Crowdin translation page, Contributing guide)

Read

您可以通過 "調用 "RPC API 調用智能合約中的函數。 在這裡可以調用的功能僅限於視圖函數,不會改變合約中的任何狀態。

從 Web3j 和 kaia 庫(web3j-ext)中導入必要的類。

使用Web3j連接到Kaia區塊鏈,並指定 URL

使用私鑰創建 KlayCredentials

指定合約的地址

確定交易的gas價格和gas限額

創建一個具有靜態gas價格gas限額的天然氣供應商

使用聯繫地址Web3j 實例憑據氣體提供商加載合約。 您可以通過該實例讀寫合約

調用合約的 counter.number().send() 函數來獲取存儲值

ReadContractExample.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 ReadContractExample {
/**
* @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);
System.out.println("Contract Call(number) Result : " + counter.number().send());
}
}

output

❯ java ReadContractExample.java
Contract Call(number) Result : 297

讓這個頁面變得更好