Everything you care about in one place

Follow feeds: blogs, news, RSS and more. An effortless way to read and digest content of your choice.

Get Feeder

submirror.xyz

— Mirror

Get the latest updates from — Mirror directly as they happen.

Follow now 20 followers

Latest posts

Last updated over 4 years ago

使用Node.js批量生成以太坊地址账号

over 4 years ago

以太坊用户账号地址长度为20字节。 它是由椭圆曲线算法从32字节的私钥,生成64字节的公钥,再压缩后取其最后的20字节得到的。 因此可以使用简单的脚本随机生成若干32字节的私钥,再计算出其公钥得到地址。实现批量地址生成。 const randomBytes = require('randombytes') const secp256k1 = require('secp256k1') const...