web3.eth.accounts.signTransaction(txParams, privateKey)
主币bsc转账privateKey不需要处理,token转账,比如USDT转账就需要处理私钥
第二个参数privateKey ,提示报错,Private key must be 32 bytes in length
研究了下,需要 let privateKey = Buffer.from(privateKey,'hex'),处理一下,
但是引得这个js中又没有 Buffer,报错Buffer is not defined .
js 资源 : https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js
麻烦解惑,谢谢你