このページは英語からの機械翻訳を使用しており、誤りや不明瞭な表現が含まれている可能性があります。最も正確な情報については、オリジナルの英語版をご覧ください。頻繁な更新のため、一部のコンテンツはオリジナルの英語になっている可能性があります。Crowdinでの取り組みに参加して、このページの翻訳改善にご協力ください。 (Crowdin translation page, Contributing guide)
価値移転
TxTypeValueTransferは、ユーザーがKAIAを送信したいときに使用される。
- KAIAは各トランザクションタイプが単一の目的を持つよう複数のトランザクションタイプを提供しており、TxTypeValueTransfer は KAIA を Externally Owned Account (EOA) に送信する用途に限定されています。
Web3jとkaiaライブラリ(web3j-ext
)から必要なクラスをインポートする。
Web3jを使ってkaiaブロックチェーンに接続し、URLを指定する。
秘密鍵を使用してKlayCredentialsを作成する。
取引に必要なガス価格とガスの上限を設定する。
credentials.getAddress() から送信者のアドレスを取得します。
KaiaネットワークからチェーンIDを取得する
トランザクション・パラメータ用の変数を初期化する
上記のパラメータを使用して生のトランザクションオブジェクトを作成する
生のトランザクションに署名する
kaiaネットワークにトランザクションを送信する。
トランザクション・レシートを取得し、トランザクション・ハッシュを使用する。
Web3j接続をシャットダウンする
生のトランザクションをデコードしてトランザク ションタイプを取得する。
txTypeValueTransferTransaction.java
package org.web3j.example.transactions;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.TxTypeValueTransfer;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.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 ValueTransferExample implements keySample { /** * */ public static void run() throws Exception { Web3j web3j = Web3j.build(new HttpService(keySample.BAOBAB_URL)); KlayCredentials credentials = KlayCredentials.create(keySample.LEGACY_KEY_privkey); BigInteger GAS_PRICE = BigInteger.valueOf(50000000000L); BigInteger GAS_LIMIT = BigInteger.valueOf(6721950); String from = credentials.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, credentials); String hexValue = Numeric.toHexString(signedMessage); EthSendTransaction 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(); TxTypeValueTransfer rawTransaction = TxTypeValueTransfer.decodeFromRawTransaction(signedMessage); System.out.println("TxType : " + rawTransaction.getKlayType()); }}
output
❯ node txTypeLegacyTransaction.javaTxHash : 0x0b9af696b2fdd08d26466c76a5fd8c80dfd30ca35d15f3cdf3e986275a111930receipt :class TransactionReceipt { blockHash: 0xdc63be2bda24c16da08d69879d3223afaed92a03e3e4e8bf92bdd725d7f160fb blockNumber: 0x8dea925 codeFormat: null contractAddress: null feePayer: null feePayerSignatures: [] feeRatio: null from: 0xa2a8854b1802d8cd5de631e690817c253d6a9153 gas: 0x66919e effectiveGasPrice: 0x5d21dba00 gasPrice: 0xba43b7400 gasUsed: 0x5208 humanReadable: null key: null input: null logs: [] logsBloom: 0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 nonce: 0x3bf senderTxHash: 0x0b9af696b2fdd08d26466c76a5fd8c80dfd30ca35d15f3cdf3e986275a111930 signature: [] status: 0x1 txError: null to: 0x000000000000000000000000000000000000dead transactionHash: 0x0b9af696b2fdd08d26466c76a5fd8c80dfd30ca35d15f3cdf3e986275a111930 transactionIndex: 0x2 type: TxTypeValueTransfer typeInt: 8 value: 0x64}TxType : VALUE_TRANSFER