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

Role-based Account Key

AccountKeyRoleBased 表示基于角色的密钥。 如果账户有一个** AccountKeyRoleBased对象,且交易类型为except account update**,那么验证过程将根据每个角色进行,如下所示:

web3py_ext导入extend,将 web3 扩展为 kaia web3

web3eth_account 导入必要的实用程序

使用 Web3.HTTPProvider 和 RPC 端点定义 web3 连接

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

使用Account.from_key_pair从地址和私人密钥定义一个钱包,该钱包具有发送交易的功能

创建一个TxType.VALUE_TRANSFER类型的空事务。 您可以使用 empty_tx 工具来获取已填写默认字段的 tx。

创建一个事务,其中包含fromtovalue字段以进行传输。

from:发件人地址,to:接收 kaia 的目标地址。

value 字段表示要发送多少 kaia,您可以使用 Web3.to_peb 工具将 kaia 转换为 peb 单位。

使用 fill_transaction 添加交易的其余字段,如气量限制Nonce等。 如果您想查看以下内容,可以打印这一行之后的所有字段

用定义的账户签署交易

向网络发送*已签名的交易,并等待接收,直到交易在区块链中完全执行为止

使用 Account.recover_transaction 从签名交易中恢复发件人地址

web3_role_based_value_transfer_sign_recover.py

from web3py_ext import extend
from web3 import Web3
from eth_account import Account
from web3py_ext.transaction.transaction import (
empty_tx,
fill_transaction,
TxType
)
from cytoolz import merge
w3 = Web3(Web3.HTTPProvider('https://public-en-kairos.node.kaia.io'))
def web3_tx_sign_recover_role_based():
txRoleUser = Account.from_key_pair(
'0x5bd2fb3c21564c023a4a735935a2b7a238c4ccea',
'0xc9668ccd35fc20587aa37a48838b48ccc13cf14dd74c8999dd6a480212d5f7ac'
)
value_transfer_tx = empty_tx(TxType.VALUE_TRANSFER)
value_transfer_tx = merge(value_transfer_tx, {
'from' : txRoleUser.address,
'to' : txRoleUser.address,
'value' : Web3.to_peb(10, "klay"),
})
value_transfer_tx = fill_transaction(value_transfer_tx, w3)
signed_tx = Account.sign_transaction(value_transfer_tx, txRoleUser.key)
tx_hash = w3.eth.send_raw_transaction(signed_tx.rawTransaction)
tx_receipt = w3.eth.wait_for_transaction_receipt(tx_hash)
print('tx hash: ', tx_hash, 'receipt: ', tx_receipt)
recovered = w3.klay.recover_from_transaction(signed_tx.rawTransaction.hex(), "latest")
print("\nsender", txRoleUser.address, "\nrecovered", recovered)
web3_tx_sign_recover_role_based()

output

❯ py web3_multisig_value_transfer_sign_recover.py
tx hash: 0x63b7dc24acdea79fc3b63059072f744f43917a989b7aead7e69d54be9e338544 receipt: AttributeDict({'blockHash': HexBytes('0x7a4ddd2165b84a8279333daaae641140bc8c64fa91d632828bcc0a7cf94e5aca'), 'blockNumber': 150557802, 'contractAddress': None, 'cumulativeGasUsed': 21000, 'effectiveGasPrice': 25000000000, 'from': '0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA', 'gasUsed': 21000, 'logs': [], 'logsBloom': HexBytes('0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'), 'status': 1, 'to': '0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA', 'transactionHash': HexBytes('0x63b7dc24acdea79fc3b63059072f744f43917a989b7aead7e69d54be9e338544'), 'transactionIndex': 0, 'type': 0})
sender 0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA
recovered 0x5bd2fb3c21564c023a4a735935a2b7a238c4ccea

让这个页面变得更好