anxiuyun

批量创建生成ETH、币安、火币等钱包地址、私钥及Excel批量导出

2021-08-17 11:38  案秀云  阅读(295)  评论(0编辑  收藏  举报

Netherum是C#下的一款开源的Web3动态库,支持以太坊、火币、币安等主链的dapp开发,包括智能合约部署调用。今天我们讲下基于Nethereum进行批量地址及私钥生成。多个地址对于科学家是必不可少的资源。

QQ交流群:103446157

var ecKey = Nethereum.Signer.EthECKey.GenerateKey();
var privateKey = ecKey.GetPrivateKeyAsBytes();
var account = new Nethereum.Web3.Accounts.Account(privateKey);
AccountEntity accountEntity = new AccountEntity();
accountEntity.Address = account.Address;//账户地址
accountEntity.PrivateKey = account.PrivateKey;//私钥

Excel批量导出:

 

 

百度网盘: https://pan.baidu.com/s/1LTC12Eurrfs681FJPloktw 提取码: 7789

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-06-04
  • 2021-11-23
  • 2021-04-23
  • 2021-11-27
  • 2021-08-26
  • 2022-12-23
  • 2021-05-05
猜你喜欢
  • 2021-12-09
  • 2021-05-07
  • 2021-05-09
  • 2021-11-22
  • 2021-11-21
  • 2021-10-13
  • 2021-09-21
相关资源
相似解决方案