4

Azure で私の erc-20 トークン用に Tron と Ethereum チェーン間のブリッジを開発し、Azure キー コンテナーに秘密鍵を保存することを考えています。イーサリアムについては、これだけの素敵なライブラリを見つけました: https://github.com/tmarkovski/ethereumjs-tx-keyvaultですが、トロンウェブでも同じアプローチが機能しますか? tronweb は署名に elliptic.js を使用します。

export function ECKeySign(hashBytes, priKeyBytes) {
  const ec = new EC("secp256k1");
  const key = ec.keyFromPrivate(priKeyBytes, "bytes");
  const signature = key.sign(hashBytes);
  const r = signature.r;
  const s = signature.s;
  const id = signature.recoveryParam;

  let rHex = r.toString("hex");

  while (rHex.length < 64) {
    rHex = `0${rHex}`;
  }

  let sHex = s.toString("hex");

  while (sHex.length < 64) {
    sHex = `0${sHex}`;
  }

  const idHex = byte2hexStr(id);
  const signHex = rHex + sHex + idHex;

  return signHex;
}
4

0 に答える 0