区块链钱包“BTC,TRX,ETH”地址生成、助记词导入、keyStron文件生成等功能

资讯 2024-06-28 阅读:93 评论:0
#最近闲着没事做,然后看听到说什么BTC疯涨,这类的小道消息。# There's nothing left to do recently #xff0c; the...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

#最近闲着没事做,然后看听到说什么BTC疯涨,这类的小道消息。

# There's nothing left to do recently #xff0c; then see what's said about BTC going crazy #xff0c; this kind of little news.

?哦豁~,这一下就让我觉得非常好奇,说,他们这些东西是怎样在链上存在的呢,然后他们那个一串串的地址又是啥,imtoken钱包又是怎么实现的呢。

♪ Oh #xff0c; this makes me curious ♪ #xff0c; say #xff0c; how do they have these things on the chain ♪ #xff0c; then what do they have on the chain? ♪ #xff0c; how do they get their wallets?

根据以上疑问,我自己去研究,自己去做一个钱包可以不?PS:主要是这个问题简单点,那些什么在链上存在的我没研究透。

Based on these questions xff0c; I'm going to study xff0c; I'm going to do a wallet without xff1f; PS: mainly the simple part of the question xff0c; I'm not going to study what exists in the chain.

好的鸣人不说暗话,我们开始!

#xff0c; let's go!


? ? ?

首先我们得知道传说中的imtoken,web3等钱包是什么东西,它实际上就是一个以地址为核心的一个软件

First we need to know what the legendary imtoken, web3 wallets are #xff0c; it's actually an address-centred software

ps:当然现在他们也有很多其他的功能,比如说新闻啊,杂七杂八的,我们暂时把他当作银行卡包用

从而得知,我们需要做一个银行卡包,那么它里面都有些啥内容呢?
? ? ? ? 卡包最主要的就是银行卡啊,那么钱包的内容是啥呢?? ?ok !? ? 钱包的内容就是一个区块地址

#xff0c; we need to make a bank bag #xff0c; so what's in it #xff1f;
???????????????????? what's in the wallet? #xff1f;? ok????? The wallet is a block address

问:钱包地址是啥呢?

Ask #xff1a; what's the wallet address #xff1f;

答:“钱包地址是一串16位进制的字符串”

Answers #xff1a; "The wallet address is a string of

? ? ? ? “我都没接触过,区块是啥我都不清楚,我怎么做啊!“

♪ ♪Span style="color:#fe2c24;""I haven't touched ♪ #xff0c; I don't know what a block is ♪ ♪ xff0c; ♪ How am I doing ♪ #xff01;"

? ? ? ? “这东西肯定很难,又是什么16进制,什么的,肯定还有很多算法,算了不看了”

♪ ♪Span style="color:#fe2c24;""This must be hard, and what's the 16th & #xff0c; what's #xff0c; there must be a lot of algorithms ♪ #xff0c; forget it"

..............................................?

? ? ? ? ? ?好的,其实很简单,你想想,区块这东西听着很深奥,那么是不是已经有大佬帮我们开路了呢?然后java语言的生态在全世界来说是不是很广说白了就是调包调用API),肯定有现成的包给你用的。

♪ ♪ ♪ {\span style= #1c7331; xff0c; xff0c; xff0c; xff0c; this block sounds so deep; xff0c; xfff1f; xff08; span style= #fe2c24; strong > says it's called API spanxff09; xfff0c; it must be a ready package for you.

问:好的,那我们用java怎么去做。

Ask #xff1a; good #xff0c; then what do we do with java?

答:看下面

Answer #xff1a; look below

首先我们得引用几个包

First, we'll have to quote a few bags.

第一个:tron 也就是 trx需要用的核心包

The first #xff1a; tron is the core package that trx needs to use

GitHub:tron.tronprotocol

//org.tron.cli 包 在git上可以下得到,所以在本地引用即可

/org.tron.cli package can get #xff0c on git; so local references are available

<dependency>
    <groupId>org.tron.cli</groupId>
    <artifactId>core</artifactId>
    <version>4.7.0</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/java/lib/wallet-cli.jar</systemPath>
</dependency>

第二个:web3J 主网包 ETH

Second xff1a; web3J main web package ETH

//宝宝我用的是5.0.0 方法更全面,对比之前的4.8? ?4.0这些去掉了很多方法,然而优化了很多地方,具体可以去看看

/Baby, I'm using a more comprehensive method of 5.0.0 xff0c; compared to the previous method of 4.8?4.0 xff0c; however, a lot of places xff0c are optimized; we can check it out.

<dependency>
    <groupId>org.web3j</groupId>
    <artifactId>core</artifactId>
    <version>5.0.0</version>
</dependency>

第三个:bitcoinj 主网包 就是BTC的工具包

The third #xff1a;bitcoinj backbone is the BTC toolkit.

//我这里用的是0.14.7 这个包里面方法很全面,阅读源码看起来也很清晰。而且推荐使用的也是这个

//I'm using 0.14.7. The package is comprehensive /#xff0c; the reading code also looks clear. And that's the one that's recommended.

<dependency>
    <groupId>org.bitcoinj</groupId>
    <artifactId>bitcoinj-core</artifactId>
    <version>0.14.7</version>
    <exclusions>
        <exclusion>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </exclusion>
    </exclusions>
</dependency>

好的以上就是具体需要用到的核心包,接下来看代码实现

All right, that's the core package that needs to be used #xff0c; next, look at the code.

1.具体代码实现

1.1公共方法

? ? ? ? 下面是一些算法,就是16进制转字符串啊,这些东西,我们在生成钱包后返回的是一个10进制byte[]数组,所以我们需要转换成相应16进制的字符串,

♪ ♪ Here's some algorithms ♪ xff0c; that's a hexadecimal string ♪ #xff0c; that's xff0c; that's a 10-byte[] array xff0c; that's why we need to convert to a corresponding hexadecimal string xff0c;

PS:下面代码复制过去没用,你需要去下载我的完整项目才行,最下面的GIT地址

PS: The following code is not used to copy xff0c; you need to download my entire project xff0c; the lowest GIT address

 
1.2常量

? ? ? ? 首先我们还是要有一些概念的,BIP44_ZERO_PATH? 是啥,他是一个路径(看注释)

♪ First we're going to have some concepts ♪ #xff0c; BIP44_ZERO_PATH? ♪ What's ♪ ♪ xff0c; he's a path ♪ #xff08; see note #xff09;

PS:常量解释看注释

PS: Constant explain notes

 
1.3trx相关方法
 
1.4eth相关方法
 
1.5btc相关方法
 

五.实现的结果

V. Results achieved

这是生成的keyStron:

This is the generation of KeyStron:

 

PS:本来想写一个test类的,但是我太懒了,所以用main方法代替了,对了源码我放在git上了,你们需要的就去下载,打包就能用,

PS: I wanted to write a test class xff0c; but I was too lazy to write xff0c; so the main method replaced xff0c; I put the source code on xff0c; you need to download xff0c; you can pack it with xff0c;

不过你们去下载的要给我点击Star啊! 要不然我做鬼都托梦来骂你!

but if you're going to download, click on Star!

我的git地址

GitHub - lxxGOd/BTC-ETH-TRX-

最后:我哥哥镇楼

Finally #xff1a; my brother

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 虚拟币GOpay钱包app下载

    虚拟币GOpay钱包app下载
    虚拟币GOpay钱包app下载版能为用户第一时间带来行业内最新的资讯,虚拟币GOpay钱包app下载版中采用了多种先进的隐私保护算法,提供多元完善的认证机制确保所有用户的交易安全性,除了自身的进步和发展之外,还需要承担更多的行业责任,比如推动行业的健康发展、为行业培养更多的优秀人才,以及为行业创造更多可能等。In addition to its own progress and development, the virtual currency GO...
  • 2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别 进入阅读模式

    2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别                进入阅读模式
    宿迁三支一扶QQ交流群:427100650 丨 微信公众号:宿迁中公教育 丨 在线咨询 关于货币的定义有很多,但是我们在考试中主要参照的是马克思主义货币学说。马克思货币学说是马克思关于货币的起源和本质、货币职能及其...
  • 区块链存证-核验操作指南

    区块链存证-核验操作指南
    第一步:登录后台-表单数据汇总,点击查看证书;Step one: login backstage - form data summary, click on the certificate; 第二步:保存存证证书,下载【存证源文件】,复制【存证哈希】,;Step 2: save the certificate of record, download the [source file], copy the [Hashi file], 第三步:登录蚂蚁区块链存证核验中心...
  • 比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?

    比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?
    你还在等什么?现在升级新浪财经Level-2一年只要88元!˂a href="https://finance.sina.com.cn/app/jumptosfl2.shtml" target="_blank" What are you waiting for? 逃不出我掌心!尾盘掘金助你...
  • 【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享

    【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享
    您需要 登錄 才可以下載或查看,沒有賬號?註冊 You need record to download or view without account? ˂a href=https://www.hd.club.tw/member.php?mod=register'title= "Registration account" x 本文章最後由 racha33 於 2014-5-6 23:29 編輯 固件分享品牌:海美迪芯片方案:RTD1186固件简介:基於 1...
标签列表