const ethers = require('ethers');
async function createBytes (args) {
const name = args[0];
const bytes = ethers.utils.formatBytes32String(name);
console.log('name: ',bytes)
}
createBytes(process.argv.slice(2));
什么是错的,我不能理解这个错误.我试图通过PowerShell运行JS文件
1条答案
按热度按时间9nvpjoqh1#
您正在使用旧的
v5
语法。v6
中的formatBytes32String
已重命名为encodeBytes32String
:将代码更改为以下代码:
x一个一个一个一个x一个一个二个x
有关详细信息,请查看“实用程序”文档页面