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

Public Account Key

AccountKeyPublic 用於有一個公鑰的賬戶。 如果賬戶有一個 AccountKeyPublic 對象,交易驗證過程如下:

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

使用指定的 BAOBAB_URL 創建 Web3j 實例

此外,您還可以更改默認提供商。 例如,使用alchemy提供商。

公鑰的密鑰對中加載**憑據,並獲取其地址

定義要簽署的任何信息

設置區塊編號為 kaia 網絡中的最新區塊

使用 KlaySignatureData.signPrefixedMessage 簽署**信息

恢復地址,並與原始地址進行比較

關閉 Web3j 實例

SignMsgWithPubkeyExample.java

package org.web3j.example.accountKey;
import org.web3j.tx.response.PollingTransactionReceiptProcessor;
import org.web3j.tx.response.TransactionReceiptProcessor;
import org.web3j.example.keySample;
import java.io.IOException;
import org.web3j.crypto.KlayCredentials;
import org.web3j.crypto.KlaySignatureData;
import org.web3j.crypto.Sign.SignatureData;
import org.web3j.protocol.http.HttpService;
import org.web3j.protocol.kaia.Web3j;
import org.web3j.protocol.kaia.core.method.response.KlayRecoverFromMessageResponse;
/**
*
*/
public class SignMsgWithPubkeyExample implements keySample {
/**
*
*/
public static void run() throws Exception {
Web3j web3j = Web3j.build(new HttpService(keySample.BAOBAB_URL));
KlayCredentials credentials1 = KlayCredentials.create(keySample.PUBLIC_KEY_privkey,
keySample.PUBLIC_KEY_address);
String from = credentials1.getAddress();
String message = "0xdeadbeef";
String blockNumber = "latest";
SignatureData signature = KlaySignatureData.signPrefixedMessage(message, credentials1);
String result = KlaySignatureData.getSignatureString(signature);
KlayRecoverFromMessageResponse response = web3j.klayRecoverFromMessage(from, message, result, blockNumber)
.send();
System.out.println("Original address : " + from);
System.out.println("Result address : " + response.getResult());
web3j.shutdown();
}
}

output

❯ java SignMsgWithPubkeyExample.java
Original address : 0xe15cd70a41dfb05e7214004d7d054801b2a2f06b
Result address : 0xa2a8854b1802d8cd5de631e690817c253d6a9153

讓這個頁面變得更好