吉林财经大学论坛净月水吧 → 波场靓号地址生成、离线地址生成软件源代码
查看完整版本:波场靓号地址生成、离线地址生成软件源代码
2022/9/28 14:52:13
波场(TRON)成立于2017年,是基于区块链的开源去中心化内容协议。通过区块链与分布式存储技术,波场致力于构建一个全球范围内的自由内容娱乐体系。在这个生态中,每位用户都能够自由发布、存储和拥有数据,并通过去中心化的自治形式,以数字资产发行、流通、交易的方式决定内容的分发、订阅和推送。
区块链浏览器TRONSCAN最新数据显示,截至9月12日,波场TRON账户总数达到111,052,649,正式突破1.11亿。





JAVA 离线签名-生成波场(TRX)地址
public TrxApi newAddress() {
    try {
      String pwd = "随便输个";
      ObjectMapper objectMapper = ObjectMapperFactory.getObjectMapper();
      ECKeyPair ecKeyPair = Keys.createEcKeyPair();
      WalletFile walletFile = Wallet.createStandard(pwd, ecKeyPair);
      String keystore = objectMapper.writeValueAsString(walletFile);
      WalletFile walletFile2 = objectMapper.readValue(keystore, WalletFile.class);
      ECKeyPair ecKeyPair1 = Wallet.decrypt(pwd, walletFile2);
      String addressT = fromHexAddress("41" + walletFile.getAddress());
// 创个类接受一下就行
      return new TrxApi("41" + walletFile.getAddress(), addressT, ecKeyPair1.getPrivateKey().toString(16));
    } catch (Exception e) {
      e.printStackTrace();
      return null;
    }
  }
可实现百万、千万级数据地址生成,免部署、免授权,并提供实现源代码,需要请联系咨询(Telegram:@FireCow_A 获取演示资料、源代码、可定制功能等)
Powered by UNCUID V2.2 © 2019-2025
Processed in 00.22 second(s)