本文へスキップ

legacy

このページは英語からの機械翻訳を使用しており、誤りや不明瞭な表現が含まれている可能性があります。最も正確な情報については、オリジナルの英語版をご覧ください。頻繁な更新のため、一部のコンテンツはオリジナルの英語になっている可能性があります。Crowdinでの取り組みに参加して、このページの翻訳改善にご協力ください。 (Crowdin translation page, Contributing guide)

TxTypeLegacyTransactionは、kaiaに以前存在したトランザクションのタイプを表す。

**このタイプのトランザクションは、アカウントの作成、トークンの転送、スマート・コントラクトのデプロイ、スマート・コントラクトの実行、または前述の混合を実行できる。

Web3jとkaiaライブラリ(web3j-ext)から必要なクラスをインポートする。

指定されたBAOBAB_URLでWeb3jインスタンスを作成する

秘密鍵を使った新しい認証情報の作成

ガス価格ガス制限の設定

送信者のfromアドレスと受信者のtoアドレスを設定する。

ネットワークからチェーンIDを取得する。

ネットワークからユーザーのnonceを取得する。

送信者から受信者に転送するvalueを定義する

上記のパラメータを使用して生のtransactionを作成する。

web3j-credentialsでは、KlayTransactionEncoder.signMessageでトランザクションに署名し、Numeric.toHexStringで16進文字列にエンコードします。

ethSendRawTransactionメソッドを使用して、署名されたトランザクションをブロックチェーンに送信する。

web3j-ext klaycredentials では、KlayRawTransaction.createEtherTransaction で生のトランザクションを作成し、KlayTransactionEncoder.signMessage で署名し、Numeric.toHexString で16進文字列にエンコードします。

ethSendRawTransactionメソッドを使用して、署名されたトランザクションをブロックチェーンに送信する。

返されたレシートハッシュを取得する。

最後に、web3jインスタンスをシャットダウンする

txTypeLegacyTransaction.java

package org.web3j.example.transactions;
import java.io.IOException;
import java.math.BigInteger;
import org.web3j.crypto.Credentials;
import org.web3j.crypto.KlayCredentials;
import org.web3j.crypto.KlayRawTransaction;
import org.web3j.crypto.KlayTransactionEncoder;
import org.web3j.crypto.RawTransaction;
import org.web3j.protocol.core.DefaultBlockParameterName;
import org.web3j.protocol.core.methods.response.EthChainId;
import org.web3j.protocol.core.methods.response.EthSendTransaction;
import org.web3j.protocol.http.HttpService;
import org.web3j.protocol.kaia.Web3j;
import org.web3j.utils.Numeric;
import org.web3j.protocol.kaia.core.method.response.TransactionReceipt;
import org.web3j.tx.response.PollingTransactionReceiptProcessor;
import org.web3j.tx.response.TransactionReceiptProcessor;
import org.web3j.example.keySample;
public class LegacyExample implements keySample {
/**
*
*/
public static void run() throws Exception {
Web3j web3j = Web3j.build(new HttpService(keySample.BAOBAB_URL));
KlayCredentials klaycredentials = KlayCredentials.create(keySample.LEGACY_KEY_privkey);
Credentials credentials = Credentials.create(LEGACY_KEY_privkey);
BigInteger GAS_PRICE = BigInteger.valueOf(50000000000L);
BigInteger GAS_LIMIT = BigInteger.valueOf(6721950);
String from = credentials.getAddress();
String to = "0x000000000000000000000000000000000000dead";
EthChainId EthchainId = web3j.ethChainId().send();
long chainId = EthchainId.getChainId().longValue();
BigInteger nonce = web3j.ethGetTransactionCount(from, DefaultBlockParameterName.LATEST).send()
.getTransactionCount();
BigInteger value = BigInteger.valueOf(100);
// send legacy transaction with web3j-credentials
RawTransaction raw = KlayRawTransaction.createEtherTransaction(
nonce,
GAS_PRICE,
GAS_LIMIT,
to,
value);
byte[] signedMessage = KlayTransactionEncoder.signMessage(raw, chainId, credentials);
String hexValue = Numeric.toHexString(signedMessage);
EthSendTransaction transactionResponse = web3j.ethSendRawTransaction(hexValue).send();
System.out.println(transactionResponse.getResult());
// send legacy transaction with web3j-ext klaycredentials
raw = KlayRawTransaction.createEtherTransaction(
nonce,
GAS_PRICE,
GAS_LIMIT,
to,
value);
signedMessage = KlayTransactionEncoder.signMessage(raw, chainId, klaycredentials);
hexValue = Numeric.toHexString(signedMessage);
transactionResponse = web3j.ethSendRawTransaction(hexValue).send();
System.out.println("TxHash : \n " + transactionResponse.getResult());
String txHash = transactionResponse.getResult();
int DEFAULT_POLLING_ATTEMPTS_PER_TX_HASH = 40;
int DEFAULT_BLOCK_TIME = 1 * 1000;
long DEFAULT_POLLING_FREQUENCY = DEFAULT_BLOCK_TIME;
TransactionReceiptProcessor transactionReceiptProcessor = new PollingTransactionReceiptProcessor(web3j,
DEFAULT_POLLING_FREQUENCY, DEFAULT_POLLING_ATTEMPTS_PER_TX_HASH);
org.web3j.protocol.core.methods.response.TransactionReceipt ethReceipt = transactionReceiptProcessor
.waitForTransactionReceipt(txHash);
System.out.println("Receipt from eth_getTransactionReceipt : \n" + ethReceipt);
TransactionReceipt receipt = web3j.klayGetTransactionReceipt(txHash).send().getResult();
System.out.println("Receipt from klay_getTransactionReceipt : \n" + receipt);
web3j.shutdown();
}
}

output

❯java txTypeLegacyTransaction.java
3.523785565427238379
0xa02e0i90faef4323cb542312de9aac0

ページを改善してください。