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

Role-based Account Key

AccountKeyRoleBased 表示基於角色的密鑰。 如果賬戶有一個** AccountKeyRoleBased對象,且交易類型為除賬戶更新外的**,那麼驗證過程將根據每個角色進行,如下所示:

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

定義發件人的地址私人密鑰和其他基於角色的私人密鑰

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

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

使用提供程序定義Web3 實例

使用交易角色私鑰和提供者創建發件人錢包

定義要簽名和恢復的信息

用發件人的錢包簽署信息

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

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

SignMsgWithRoleBased.js

const { Web3 } = require("@kaiachain/web3js-ext");
const senderAddr = "0x334b4d3c775c45c59de54e9f0408cba25a1aece7";
const senderRoleTransactionPriv = "0xc9668ccd35fc20587aa37a48838b48ccc13cf14dd74c8999dd6a480212d5f7ac";
const senderRoleAccountUpdatePriv = "0x9ba8cb8f60044058a9e6f815c5c42d3a216f47044c61a1750b6d29ddc7f34bda";
const senderRoleFeePayerPriv = "0x0e4ca6d38096ad99324de0dde108587e5d7c600165ae4cd6c2462c597458c2b8";
const provider = new Web3.providers.HttpProvider("https://public-en-kairos.node.kaia.io");
const web3 = new Web3(provider);
const txAccount = web3.eth.accounts.privateKeyToAccount(senderRoleTransactionPriv);
async function main() {
const msg = "hello";
const msghex = Web3.utils.utf8ToHex(msg);
const signResult = txAccount.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() === txAccount.address.toLowerCase());
const sig = signResult.signature;
const addr2 = await web3.klay.recoverFromMessage(senderAddr, msghex, sig, "latest");
console.log("recoveredAddr rpc", addr2, addr2.toLowerCase() === txAccount.address.toLowerCase());
}
main().catch(console.error);

output

´ js SignMsgWithRoleBased.js
{
senderAddr: '0x5bd2fb3c21564c023a4a735935a2b7a238c4ccea',
msg: 'hello',
msghex: '0x68656c6c6f',
sig:'0x736460622fcfab0fa7de0ca1cde05178f01b124294a640b5f5820c7271262c6c271f1ad15f0d7b974d68eaac60d5daa1e7dd65301bbfb814beecbca1238b64121c'
}
recoveredAddr lib 0x5bD2fb3c21564C023A4A735935a2B7A238C4cCEA true
recoveredAddr rpc 0x5bd2fb3c21564c023A4a735935a2B7a238c4ccea true

讓這個頁面變得更好