跳至主要内容

legacy

本页面使用机器翻译自英语,可能包含错误或不清楚的语言。如需最准确的信息,请参阅英文原文。由于更新频繁,部分内容可能与英文原文有出入。请加入我们在 Crowdin 上的努力,帮助我们改进本页面的翻译。 (Crowdin translation page, Contributing guide)

TxTypeLegacyTransaction 代表 kaia 以前存在的一种事务类型。

**这种类型的交易可以创建账户、转移代币、部署智能合约、执行智能合约,或者执行上述交易的混合。

导入 web3@kaiachain/web3js-ext 软件包,在 web3 上添加 kaia 功能

定义发送方、接收方地址和发送方私人密钥

使用指定的 kairos 测试网 URL 设置提供程序。 web3js 中的提供者是访问区块链数据的只读抽象。

此外,您还可以将提供商 URL 从 kairos 更改为 quicknode

使用提供程序创建KlaytnWeb3实例

定义交易数据,包括从(发送方地址)、到(接收方地址)、值(转账金额,使用 toPeb 在 Klay 中设置值,然后进行转换)

使用 privateKeyToAccount 方法,可以用发送者的私钥创建账户实例。

signTransaction 方法与发件人账户签署交易。

sendSignedTransaction 方法将已签名的交易发送到区块链中。

getTransactionReceipt 方法返回交易收据。

最后,得到结果。

txTypeLegacyTransaction.js

const { Web3, KlaytnWeb3, toPeb } = require("@kaiachain/web3js-ext");
const senderAddr = "0x24e8efd18d65bcb6b3ba15a4698c0b0d69d13ff7";
const senderPriv = "0x4a72b3d09c3d5e28e8652e0111f9c4ce252e8299aad95bb219a38eb0a3f4da49";
const receiverAddr = "0xc40b6909eb7085590e1c26cb3becc25368e249e9";
async function main() {
const provider = new Web3.providers.HttpProvider("https://public-en-kairos.node.kaia.io");
const web3 = new KlaytnWeb3(provider);
const tx = {
to: receiverAddr,
value: toPeb("0.01", "KLAY"),
from: senderAddr,
};
const senderAccount = web3.eth.accounts.privateKeyToAccount(senderPriv);
const senderTx = await web3.eth.accounts.signTransaction(tx, senderAccount.privateKey);
console.log(senderTx);
const sendResult = await web3.eth.sendSignedTransaction(senderTx.rawTransaction);
const receipt = await web3.eth.getTransactionReceipt(sendResult.transactionHash);
console.log({ receipt });
}
main();

output

节点 txTypeLegacyTransaction.js
signedTx 0x96b41f32f35f38ddd3e21aed8e8aa929ea6514ecf9f0b898014b00734056cc47
receipt {
blockHash:0x5899dcdd7346e6b98872f93d9d74d39a118db628e8b75c08a5094b5ae2ef6314',
blockNumber: 148742598n,
cumulativeGasUsed:205837n,
effectiveGasPrice: 25000000000n,
from: '0xa2a8854b1802d8cd5de631e690817c253d6a9153',
gasUsed:21000n,
logs:[],
logsBloom:'0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000',
status:1n,
to:0xc40b6909eb7085590e1c26cb3becc25368e249e9',
transactionHash: '0x96b41f32f35f38ddd3e21aed8e8aa929ea6514ecf9f0b898014b00734056cc47',
transactionIndex:1n,
类型:2n
}

让这个页面变得更好