使用bitcoinj 和 Insight-api创建没有sp节点的钱包

bitcoinj好是好但是需要下载钱包的数据

这个一下可能就20分钟,然后本地还会有300m的节点数据。

如果是android的钱包的话,300m就是比较不可以接受的呢 因为还要不断更新数据。

最好的方法就是使用Insight的api

Insight的api有查询地址的utxo

还有send rawtx交易的功能

android只需要组装rawtx即可,因为他是在本地组装的所以没有泄漏数据的危险。

Insight有js的客户端但是没有java的

看了两天bitcoinj的代码发现使用bitcoinj的原生代码和Insight的数据是可以组装成rawtx的


    public static void main(String[] args){
        NetworkParameters params = getParams();
        PeerGroup peerGroup = new PeerGroup(params);
        //Script ss = ScriptBuilder.createOutputScript(Address.fromBase58(null,"3DRXLvePoV6bcT2XksVNNCX5XrG3udgepG"));
        byte[] zijie = Utils.parseAsHexOrBase58("76a9147f9b1a7fb68d60c536c2fd8aeaa53a8f3cc025a888ac");
        Script ss01 = new Script(zijie);
        UTXO utxo = new UTXO(
                 Sha256Hash.wrap("27f5f35b447e219d0b3a3ac55f9dc6aacf2d4145fbd930207ef5b7710c47d883"),
                2,
                Coin.valueOf((long) 9.12695200),
                503962,
                false,
                ss01);
        System.out.println(utxo.toString());
        send(
                peerGroup,
                "2e07613d26fae6e3dea0681244223c4daf2af404337d37b9cd23937f5433b837",
                "n4gYQANuxnytXnGRm9R8i1vTf86P6kPLAb",
                100,
                new ArrayList<UTXO>() {{
                    add(utxo);
                }}
        );
    }

  



    /**
     *
     *
     * @param peerGroup
     * @param privKey 私钥
     * @param address 地址
     * @param satoshis
     * @return
     */
    public static Transaction send(PeerGroup peerGroup,
                                   String privKey,
                                   String address,
                                   long satoshis,List<UTXO> utxos)  {
        NetworkParameters params = getParams();
        ECKey key = ECKey.fromPrivate(Numeric.toBigInt(privKey));

        //String to an address
        Address address2 = Address.fromBase58(params, address);

        Transaction tx = new Transaction(params);
        //value is a sum of all inputs, fee is 4013
        tx.addOutput(Coin.valueOf(satoshis), address2);

        //utxos is an array of inputs from my wallet
        for(UTXO utxo : utxos)
        {
            TransactionOutPoint outPoint = new TransactionOutPoint(params, utxo.getIndex(), utxo.getHash());
            //YOU HAVE TO CHANGE THIS
            tx.addSignedInput(outPoint, utxo.getScript(), key, Transaction.SigHash.ALL, true);
        }

        tx.getConfidence().setSource(TransactionConfidence.Source.SELF);
        tx.setPurpose(Transaction.Purpose.USER_PAYMENT);

        System.out.println(tx.getHashAsString());
        //peerGroup.broadcastTransaction(tx);
        return null;
    }

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
bitcoinj项目富含完整demo 此项目使用maven构建,不会使用maven的同学,查看项目pom.xml文件,并在http://mvnrepository.com/下载相应的依赖jar包. demo:bitcoinj签名交易 /** * @param unSpentBTCList 未花费utxo集合 * @param from 发送者地址 * @param to 接收者地址 * @param privateKey 私钥 * @param value 发送金额.单位:聪 * @param fee 旷工费.单位:聪 * @return 签名之后未广播的原生交易字符串 * @throws Exception */ public static String signBTCTransactionData(List unSpentBTCList, String from, String to, String privateKey, long value, long fee) throws Exception { NetworkParameters networkParameters = null; // networkParameters = MainNetParams.get(); //测试网络 networkParameters = TestNet3Params.get(); Transaction transaction = new Transaction(networkParameters); DumpedPrivateKey dumpedPrivateKey = DumpedPrivateKey.fromBase58(networkParameters, privateKey); ECKey ecKey = dumpedPrivateKey.getKey(); long totalMoney = 0; List utxos = new ArrayList(); //遍历未花费列表,组装合适的item for (UnSpentBTC us : unSpentBTCList) { if (totalMoney >= (value + fee)) break; UTXO utxo = new UTXO(Sha256Hash.wrap(us.getTxid()), us.getVout(), Coin.valueOf(us.getSatoshis()), us.getHeight(), false, new Script(Hex.decode(us.getScriptPubKey()))); utxos.add(utxo); totalMoney += us.getSatoshis(); } transaction.addOutput(Coin.valueOf(value), Address.fromBase58(networkParameters, to)); // transaction. //消费列表总金额 - 已经转账的金额 - 手续费 就等于需要返回给自己的金额了 long balance = totalMoney - value - fee; //输出-转给自己 if (balance > 0) { transaction.addOutput(Coin.valueOf(balance), Address.fromBase58(networkParameters, from)); } //输入未消费列表项 for (UTXO utxo : utxos) { TransactionOutPoint outPoint = new TransactionOutPoint(networkParameters, utxo.getIndex(), utxo.getHash());
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值