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

Multisig Account Key

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

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

導入**@kaiachain/web3js-ext**軟件包,在 web3 上添加 kaia 功能

定義發件人的地址私人密鑰以及所有加權多重簽名私人密鑰

使用指定的 kairos 測試網 URL 設置提供程序。 web3js 中的提供者是訪問區塊鏈數據的只讀抽象。

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

使用提供程序定義Web3 實例

使用第一個重多重簽名私鑰和提供商創建錢包

定義要簽名和恢復的信息

用發件人的錢包簽署信息

使用 web3.eth.accounts.recover 從已簽名郵件中恢復地址

使用 web3.klay.recoverFromMessage 從簽名信息中恢復地址

SignMsgWithMultiSigExample.js

const { Web3, TxType, AccountKeyType, toPeb, getPublicKeyFromPrivate } = require("@kaiachain/web3js-ext");
const senderAddr = "0x2bf611d14d330fd3688d10f2201321eacc8aa2ce";
const senderPriv1 = "0x31fadf868e68fd2e3f7a1c528023c9a86a45db850e9d6b82c1a82d4c75b469d1";
const senderPriv2 = "0x0e4ca6d38096ad99324de0dde108587e5d7c600165ae4cd6c2462c597458c2b8";
const senderPriv3 = "0xc9668ccd35fc20587aa37a48838b48ccc13cf14dd74c8999dd6a480212d5f7ac";
const provider = new Web3.providers.HttpProvider("https://public-en-kairos.node.kaia.io");
const web3 = new Web3(provider);
async function main() {
const senderAccount = web3.eth.accounts.privateKeyToAccount(senderPriv1);
const msg = "hello";
const msghex = Web3.utils.utf8ToHex(msg);
const signResult = senderAccount.sign(msg);
console.log({ senderAddr, msg, msghex, sig: signResult.signature });
const { v, r, s } = signResult;
const addr1 = web3.eth.accounts.recover(msg, v, r, s);
console.log("recoveredAddr lib", addr1, addr1.toLowerCase() === senderAccount.address.toLowerCase());
const sig = signResult.signature;
const addr2 = await web3.klay.recoverFromMessage(senderAddr, msghex, sig, "latest");
console.log("recoveredAddr rpc", addr2, addr2.toLowerCase() === senderAccount.address.toLowerCase());
}
main().catch(console.error);

output

❯ js SignMsgWithMultiSigExample.js
{
senderAddr: '0x2bf611d14d330fd3688d10f2201321eacc8aa2ce',
msg: 'hello',
msghex: '0x68656c6c6f',
sig: '0x514ad395399cb30533cd02f9681b44ed1452f5bb44289e5e2aa042fbc6ba6e2c393d7107e3f8341a240b30f481cc1fce0c66056ba8035c45fd66fcae086b409b1b'
}
recoveredAddr lib 0x2bf611d14d330fD3688D10F2201321eACc8AA2Ce true
recoveredAddr rpc 0x2bf611d14d330fd3688d10f2201321eacc8aa2ce true

讓這個頁面變得更好