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

アカウント更新

ベーシック

web3をkaia web3に拡張するために、web3py_extからextendをインポートする。

eth_accountweb3py_extcytoolsから必要なutilsをインポートする。

指定されたkairosテストネットURLでWeb3インスタンスを作成する

また、プロバイダーのURLをkairosからquicknodeに変更することもできます。

秘密鍵からtransaction鍵をロードし、それをトランザクション・ロール・キーとして使用する。 トランザクションの署名に使用できる

秘密鍵からupdate鍵をロードし、それを更新ロール鍵として使用する。 この口座の口座更新取引に署名するために使用できます。 つまり、このキーを持っている人だけが、このアカウントを更新できるということだ。

秘密鍵からfee payer鍵をロードし、fee payer role keyとして使用する。 手数料の支払い者として取引に署名するために使用できる。

TxType.ACCOUNT_UPDATE型の空のトランザクションを作成しています。 empty_txユーティリティを使えば、デフォルトのフィールドが埋められたtxを得ることができる。

mergeユーティリティを使用して、senderkeysのような追加フィールドを空のtxにマージする。

この場合、更新するアカウント・キーはrole-basedキーであり、各ロールはpubkeyタイプを持っている。 各ロールはパブキーまたはマルチシグを持つことができる。

それぞれのロール・キーを設定するには、compressed_key utilを使用します。 圧縮された公開鍵を鍵から抽出する。

fill_transactionを使用して、トランザクション・オブジェクトにガス・リミットなどのパラメータを追加する。

to_prettyユーティリティを使えば、フォーマットされたtxをプリントすることができる。

アカウント更新TXタイプに署名する。 アカウント "0x5bd2...cea "はすでにロールベースのアカウントであるため、このアカウントを更新するには、update role keyで署名する必要があります。

**署名されたトランザクションから送信者のアドレスを復元する。

RLPエンコードされた署名付きtxを見たい場合は、decode_transactionユーティリティを使用する。

**署名されたトランザクションをネットワークに送信し、ブロックチェーンで完全に実行されるまで受信を待つ。

web3_account_update_multisig.py

from web3py_ext import extend
from web3 import Web3
from eth_account import Account
from web3py_ext.klaytn_account.utils import compressed_key
from web3py_ext.klaytn_account.account_key import KeyType
from web3py_ext.transaction.transaction import (
empty_tx,
fill_transaction,
TxType
)
from web3py_ext.utils.klaytn_utils import (
to_pretty,
bytes_to_hex_str
)
from cytoolz import merge
from eth_utils.address import to_checksum_address
w3 = Web3(Web3.HTTPProvider(
'https://public-en-kairos.node.kaia.io'
))
def web3_account_update_role_based():
transaction_key = Account.from_key('0xc9668ccd35fc20587aa37a48838b48ccc13cf14dd74c8999dd6a480212d5f7ac')
update_key = Account.from_key('0x9ba8cb8f60044058a9e6f815c5c42d3a216f47044c61a1750b6d29ddc7f34bda')
fee_payer_key = Account.from_key('0x0e4ca6d38096ad99324de0dde108587e5d7c600165ae4cd6c2462c597458c2b8')
account_update_tx = empty_tx(TxType.ACCOUNT_UPDATE)
account_update_tx = merge(account_update_tx, {
'from' : to_checksum_address("0x5bd2fb3c21564c023a4a735935a2b7a238c4ccea"),
'key' : {
"type": KeyType.ROLE_BASED,
"keys": {
"roleTransactionKey": {
"type":KeyType.PUBLIC,
"key": compressed_key(transaction_key)
},
"roleAccountUpdateKey": {
"type": KeyType.PUBLIC,
"key": compressed_key(update_key)
},
"roleFeePayerKey": {
"type": KeyType.PUBLIC,
"key": compressed_key(fee_payer_key)
}
}
}
})
account_update_tx = fill_transaction(account_update_tx, w3)
print(to_pretty(account_update_tx))
# sign the kaia specific transaction type with web3py
signed_tx = Account.sign_transaction(account_update_tx, update_key.key)
print('\nrawTransaction:', bytes_to_hex_str(signed_tx.rawTransaction))
recovered_tx = Account.recover_transaction(signed_tx.rawTransaction)
print("\nrecovered sender address: ", recovered_tx)
decoded_tx = Account.decode_transaction(signed_tx.rawTransaction)
print("\ndecoded transaction:", to_pretty(decoded_tx))
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)
web3_account_update_role_based()

output

❯ python 8-account_update_role_based.py
{
"from":"0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA",
"gas":159000,
"gasPrice":50000000000,
"nonce":40,
"chainId":1001,
"type":32,
"key":{
"type":5,
"keys":{
"roleTransactionKey":{
"type":2,
"キー":"0x03f26489914098c5da51f0f646e3000da4d6197217df082b4f7ce1530f0a0cbf2a"
},
"roleAccountUpdateKey":{
"type":2,
"key":"0x0263021199702b9fefca617bdcb2a9ed4a810dfa8d270d4e804a1e778450e63ec3"
},
"roleFeePayerKey":{
"type":2,
"key":"0x03dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd"
}.
}
}
}
rawTransaction:20f8da28850ba43b740083026d18945bd2fb3c21564c023a4a735935a2b7a238c4cceab86f05f86ca302a103f26489914098c5da51f0f646e3000da4d6197217df082b4f7ce1530f0a0cbf2aa302a10263021199702b9fefca617bdcb2a9ed4a810dfa8d270d4e804a1e778450e63ec3a302a103dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cdf847f8458207f5a0985bec3e261c26aae4753692e485df1f2610d15a49c6d1a211aa722ebe07f83aa030de040be157e4ba1ee085adfa104ad52e6c5be2133e08eba32c23e8fdcef2f3
回復した送信者アドレス 0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA
トランザクションをデコードした:{
"type":32,
"nonce":40,
"gasPrice":50000000000,
"gas":159000,
"from":"0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA",
"signatures":[
{
"v":2037,
"r":68913966555219307694792023212600507140724440249606323106025362523748232067130,
"s":22103284707653811363718459097471289368017860785927799915329973403830188962547
}.
],
"key":{
"type":5,
"keys":{
"roleTransactionKey":{
"type":2,
"key":"0x03f26489914098c5da51f0f646e3000da4d6197217df082b4f7ce1530f0a0cbf2a"
},
"roleAccountUpdateKey":{
"type":2,
"key":"0x0263021199702b9fefca617bdcb2a9ed4a810dfa8d270d4e804a1e778450e63ec3"
},
"roleFeePayerKey":{
"type":2,
"key":"0x03dc9dccbd788c00fa98f7f4082f2f714e799bc0c29d63f04d48b54fe6250453cd"
}.
}
},
"chainId":1001
}
tx ハッシュ: 0xd3315a9b59096514bb518a624effa314850f816e3b77633fd47660949518888a receipt: AttributeDict({'blockHash':HexBytes('0xcd0b362591ab28e4c5c423561ea525ad7f19e1fbc177aeef640aece7d53fc83d'), 'blockNumber':147156811, 'contractAddress':なし, 'cumulativeGasUsed': 271841, 'effectiveGasPrice': 25000000000, 'from': '0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA', 'gasUsed': 81000, 'logs': [], 'logsBloom':HexBytes('0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'),'status':1, 'to': '0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA', 'transactionHash':HexBytes('0xd3315a9b59096514bb518a624effa314850f816e3b77633fd47660949518888a'), 'transactionIndex':1, 'type': 0})

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