跳至主要內容
本頁面使用機器翻譯自英語,可能包含錯誤或不清楚的語言。如需最準確的信息,請參閱英文原文。由於更新頻繁,部分內容可能與英文原文有出入。請加入我們在 Crowdin 上的努力,幫助我們改進本頁面的翻譯。 (Crowdin translation page, Contributing guide)

Multisig Account Key

AccountKeyWeightedMultiSig 是一種賬戶密鑰類型,包含一個閾值和加權公鑰(WeightedPublicKeys),後者包含一個由公鑰及其權重組成的列表。

要使與 AccountKeyWeightedMultiSig 關聯的賬戶的交易有效,必須滿足以下條件: 已簽名公鑰的加權和應大於閾值。 _ 無效簽名不應包含在交易中。 * 已簽名公鑰的數量應少於加權公鑰的數量。

web3py_ext導入extend,將 web3 擴展為 kaia web3

web3eth_account 導入必要的實用程序

使用 Web3.HTTPProvider 和 RPC 端點定義 web3 連接

此外,您還可以將提供商 URL 從 kairos 更改為 quicknode

使用 **Account.from_key_pair ** 從地址和私鑰定義 3 個不同的錢包

創建一個TxType.VALUE_TRANSFER類型的空事務。 您可以使用 empty_tx 工具來獲取已填寫默認字段的 tx。

創建一個事務,其中包含fromtovalue字段以進行傳輸。

from:發件人地址,to:接收 kaia 的目標地址。

value 字段表示要發送多少 kaia,您可以使用 Web3.to_peb 工具將 kaia 轉換為 peb 單位。

使用 fill_transaction 添加交易的其餘字段,如gas 限制Nonce等。 如果您想查看以下內容,可以打印這一行之後的所有字段

用 ** 用戶 1 的私人密鑰** 簽名交易

用 ** 用戶 2** 和 ** 用戶 3** 私鑰簽署 signed_tx

向網絡發送*已簽名的交易,並等待接收,直到交易在區塊鏈中完全執行為止

使用 Account.recover_transactionuser3 的簽名交易中恢復 user1 地址

web3_multisig_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_multisig():
user1 = Account.from_key_pair(
'0x82c6a8d94993d49cfd0c1d30f0f8caa65782cc7e',
'0xa32c30608667d43be2d652bede413f12a649dd1be93440878e7f712d51a6768a'
)
user2 = Account.from_key_pair(
'0x82c6a8d94993d49cfd0c1d30f0f8caa65782cc7e',
'0x0e4ca6d38096ad99324de0dde108587e5d7c600165ae4cd6c2462c597458c2b8'
)
user3 = Account.from_key_pair(
'0x82c6a8d94993d49cfd0c1d30f0f8caa65782cc7e',
'0xc9668ccd35fc20587aa37a48838b48ccc13cf14dd74c8999dd6a480212d5f7ac'
)
value_transfer_tx = empty_tx(TxType.VALUE_TRANSFER)
value_transfer_tx = merge(value_transfer_tx, {
'from' : user1.address,
'to' : user1.address,
'value' : Web3.to_peb(10, "klay"),
})
value_transfer_tx = fill_transaction(value_transfer_tx, w3)
signed_tx = Account.sign_transaction(value_transfer_tx, user1.key)
signed_tx = Account.sign_transaction(signed_tx.rawTransaction, user2.key)
signed_tx = Account.sign_transaction(signed_tx.rawTransaction, user3.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", user1.address, "\nrecovered", recovered)
web3_tx_sign_recover_multisig()

output

❯ py web3_multisig_value_transfer_sign_recover.py
tx hash: 0xe5c4f8b3bd90bf86660eff4f6e4b51dec84e49ac50adcfff7ca983dcfb2db31d receipt: AttributeDict({'blockHash': HexBytes('0x8e0df2104f3f829e06a23808563b07b22c729e04285ebe76aad08f0fecfb4183'), 'blockNumber': 150557795, 'contractAddress': None, 'cumulativeGasUsed': 51000, 'effectiveGasPrice': 25000000000, 'from': '0x82C6a8D94993d49cfd0c1D30F0F8Caa65782cc7E', 'gasUsed': 51000, 'logs': [], 'logsBloom': HexBytes('0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'), 'status': 1, 'to': '0x82C6a8D94993d49cfd0c1D30F0F8Caa65782cc7E', 'transactionHash': HexBytes('0xe5c4f8b3bd90bf86660eff4f6e4b51dec84e49ac50adcfff7ca983dcfb2db31d'), 'transactionIndex': 0, 'type': 0})
sender 0x82C6a8D94993d49cfd0c1D30F0F8Caa65782cc7E
recovered 0x82c6a8d94993d49cfd0c1d30f0f8caa65782cc7e

讓這個頁面變得更好