レガシー・アカウント・キー
Web3jとkaiaライブラリ(web3j-ext
)から必要なクラスをインポートする。
指定されたBAOBAB_URLでWeb3jインスタンスを作成する
また、デフォルトのプロバイダーを変更することもできる。 例えば、錬金術のプロバイダーを使う。
秘密鍵からクレデンシャルを作成する。
ガス価格とガス制限の設定
senderアドレスをロードされたクレデンシャルのアドレスと等しく設定する。
ネットワークからチェーンIDを取得する。
レシーバー**アドレスを任意の有効なアドレスに設定する。
送信者アドレスのnonceを取得する。
転送する値を設定する
トランザクション・タイプを VALUE_TRANSFER に設定する。
価値移転のための生のトランザクションを作成する
取引に署名する
署名したトランザクションをkaiaネットワークに送信する。
署名されたトランザクションから送信者アドレスを復元し、それをfromアドレスと比較する。
Web3jインスタンスをシャットダウンする
SignTxWithLegacyExample.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 java.math.BigInteger;import org.web3j.crypto.KlayCredentials;import org.web3j.crypto.KlayRawTransaction;import org.web3j.crypto.KlayTransactionEncoder;import org.web3j.crypto.transaction.type.TxType;import org.web3j.crypto.transaction.type.TxType.Type;import org.web3j.protocol.core.DefaultBlockParameterName;import org.web3j.protocol.core.methods.response.EthChainId;import org.web3j.protocol.http.HttpService;import org.web3j.protocol.kaia.Web3j;import org.web3j.protocol.kaia.core.method.response.KlayRecoverFromTransactionResponse;import org.web3j.utils.Numeric;import org.web3j.protocol.core.methods.response.EthSendTransaction;/** * */public class SignTxWithLegacyExample implements keySample { /** * */ public static void run() throws Exception { Web3j web3j = Web3j.build(new HttpService(keySample.BAOBAB_URL)); KlayCredentials credentials1 = KlayCredentials.create(keySample.LEGACY_KEY_privkey); BigInteger GAS_PRICE = BigInteger.valueOf(50000000000L); BigInteger GAS_LIMIT = BigInteger.valueOf(6721950); String from = credentials1.getAddress(); EthChainId EthchainId = web3j.ethChainId().send(); long chainId = EthchainId.getChainId().longValue(); String to = "0x000000000000000000000000000000000000dead"; BigInteger nonce = web3j.ethGetTransactionCount(from, DefaultBlockParameterName.LATEST).send() .getTransactionCount(); BigInteger value = BigInteger.valueOf(100); TxType.Type type = Type.VALUE_TRANSFER; KlayRawTransaction raw = KlayRawTransaction.createTransaction( type, nonce, GAS_PRICE, GAS_LIMIT, to, value, from); byte[] signedMessage = KlayTransactionEncoder.signMessage(raw, chainId, credentials1); String hexValue = Numeric.toHexString(signedMessage); EthSendTransaction transactionResponse = web3j.ethSendRawTransaction(hexValue).send(); System.out.println("TxHash : \n " + transactionResponse.getResult()); String blockNumber = "latest"; KlayRecoverFromTransactionResponse response = web3j.klayRecoverFromTransaction(hexValue, blockNumber).send(); System.out.println("Original address : " + from); System.out.println("Result address : " + response.getResult()); web3j.shutdown(); }}
output
❯ java SignTxWithLegacyExample.javaTxHash : 0x957734684be8f79a21cef4de1842709b84c92e3920d656165ddb951981987b5aオリジナルアドレス :0xa2a8854b1802d8cd5de631e690817c253d6a9153結果アドレス : 0xa2a8854b1802d8cd5de631e690817c253d6a9153