Commit 8feb8c99 authored by Pavel Pavlov's avatar Pavel Pavlov

Code research and analysis (Stratis)

- work of wallet
parent 8152e6c4
......@@ -23,6 +23,7 @@
<ProjectReference Include="..\Stratis.Bitcoin.Features.RPC\Stratis.Bitcoin.Features.RPC.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Features.Wallet\Stratis.Bitcoin.Features.Wallet.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.IntegrationTests.Common\Stratis.Bitcoin.IntegrationTests.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin.Tests.Wallet.Common\Stratis.Bitcoin.Tests.Wallet.Common.csproj" />
<ProjectReference Include="..\Stratis.Bitcoin\Stratis.Bitcoin.csproj" />
</ItemGroup>
......
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using DeStream.Stratis.Bitcoin.Configuration;
using Moq;
using NBitcoin;
using NBitcoin.Protocol;
using Stratis.Bitcoin;
using Stratis.Bitcoin.Builder;
using Stratis.Bitcoin.Configuration;
using Stratis.Bitcoin.Features.Api;
using Stratis.Bitcoin.Features.BlockStore;
using Stratis.Bitcoin.Features.Consensus;
......@@ -19,6 +22,7 @@ using Stratis.Bitcoin.Features.Wallet.Interfaces;
using Stratis.Bitcoin.IntegrationTests.Common;
using Stratis.Bitcoin.IntegrationTests.Common.EnvironmentMockUpHelpers;
using Stratis.Bitcoin.Interfaces;
using Stratis.Bitcoin.Tests.Wallet.Common;
using Stratis.Bitcoin.Utilities;
using static Stratis.Bitcoin.BlockPulling.BlockPuller;
......@@ -121,6 +125,52 @@ namespace DeStream.DeStreamD.ForTest
return blocks.ToArray();
}
#region Test
public static List<Block> AddBlocksWithCoinbaseToChain(Network network, ConcurrentChain chain, HdAddress address, int blocks = 1)
{
//var chain = new ConcurrentChain(network.GetGenesis().Header);
var blockList = new List<Block>();
for (int i = 0; i < blocks; i++)
{
var block = new Block();
block.Header.HashPrevBlock = chain.Tip.HashBlock;
block.Header.Bits = block.Header.GetWorkRequired(network, chain.Tip);
block.Header.UpdateTime(DateTimeOffset.UtcNow, network, chain.Tip);
var coinbase = new Transaction();
coinbase.AddInput(TxIn.CreateCoinbase(chain.Height + 1));
coinbase.AddOutput(new TxOut(network.GetReward(chain.Height + 1), address.ScriptPubKey));
block.AddTransaction(coinbase);
block.Header.Nonce = 0;
block.UpdateMerkleRoot();
block.Header.PrecomputeHash();
chain.SetTip(block.Header);
var addressTransaction = new TransactionData
{
Amount = coinbase.TotalOut,
BlockHash = block.GetHash(),
BlockHeight = chain.GetBlock(block.GetHash()).Height,
CreationTime = DateTimeOffset.FromUnixTimeSeconds(block.Header.Time),
Id = coinbase.GetHash(),
Index = 0,
ScriptPubKey = coinbase.Outputs[0].ScriptPubKey,
};
address.Transactions.Add(addressTransaction);
blockList.Add(block);
}
return blockList;
}
#endregion
public static async Task MainAsync(string[] args)
{
try
......@@ -146,52 +196,25 @@ namespace DeStream.DeStreamD.ForTest
.UseApi()
.AddRPC()
.Build();
Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
Key _key = _wallet.GetExtendedPrivateKeyForAddress("123456", _addr).PrivateKey;
var _walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
TransactionBuildContext context = CreateContext(new WalletAccountReference("mywallet", "account 0"), "password", _key.PubKey.ScriptPubKey, new Money(777), FeeType.Low, 0);
Transaction transactionResult = _walletTransactionHandler.BuildTransaction(context);
int qwe = 1;
if (node != null)
await node.RunAsync();
//Mnemonic _mnemonic2 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
//Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
//Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
//HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//Key _key = _wallet.GetExtendedPrivateKeyForAddress("123456", _addr).PrivateKey;
//var _walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
//var chain = new ConcurrentChain(_wallet.Network);
//WalletTestsHelpers.AddBlocksWithCoinbaseToChain(_wallet.Network, chain, _addr);
////var walletAccountReference = new WalletAccountReference()
//var account = _wallet.AccountsRoot.FirstOrDefault();
//TransactionBuildContext context = CreateContext(new WalletAccountReference("mywallet", "account 0"), "123456", _key.PubKey.ScriptPubKey, new Money(777), FeeType.Low, 0);
//Transaction transactionResult = _walletTransactionHandler.BuildTransaction(context);
//int qwe = 1;
//if (node != null)
// await node.RunAsync();
//BitcoinSecret bitcoinSecret = new BitcoinSecret(_key, node.Network);
//int _maturity = (int)node.Network.Consensus.CoinbaseMaturity;
//GenerateStratis(node, bitcoinSecret, 10);
//TestHelper.WaitLoop(() => TestHelper.IsNodeSynced((FullNode)node));
//// wait for block repo for block sync to work
//TestHelper.WaitLoop(() => TestHelper.IsNodeSynced(stratisSender));
//// the mining should add coins to the wallet
//long total = stratisSender.FullNode.WalletManager().GetSpendableTransactionsInWallet("mywallet").Sum(s => s.Transaction.Amount);
//var walletManager = ((FullNode)node).NodeService<IWalletManager>() as WalletManager;
////HdAddress addr = ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//walletManager.CreateWallet("123456", "mywallet");
//HdAddress sendto = walletManager.GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//var walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
//var transactionBuildContext = CreateContext(
// new WalletAccountReference("mywallet", "account 0"), "123456", sendto.ScriptPubKey, Money.COIN * 100, FeeType.Medium, 101);
//Transaction trx = walletTransactionHandler.BuildTransaction(transactionBuildContext);
......@@ -221,9 +244,9 @@ namespace DeStream.DeStreamD.ForTest
var walletManager = stratisSender.FullNode.NodeService<IWalletManager>() as WalletManager;
//var walletManager1 = ((FullNode)node).NodeService<IWalletManager>() as WalletManager;
var walletManager1 = ((FullNode)node).NodeService<IWalletManager>() as WalletManager;
//HdAddress addr = ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
HdAddress addr1= ((FullNode)node).WalletManager().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
walletManager.CreateWallet("123456", "mywallet");
HdAddress sendto = walletManager.GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
var walletTransactionHandler = ((FullNode)node).NodeService<IWalletTransactionHandler>() as WalletTransactionHandler;
......@@ -233,8 +256,8 @@ namespace DeStream.DeStreamD.ForTest
Transaction trx = walletTransactionHandler.BuildTransaction(transactionBuildContext);
if (node != null)
await node.RunAsync();
//if (node != null)
// await node.RunAsync();
}
catch (Exception ex)
{
......
......@@ -2,11 +2,11 @@ regtest=1
rest=1
server=1
txindex=1
rpcuser=fc838d2724c71aac7fcbd4defb0b626a7b070c30
rpcpassword=fc838d2724c71aac7fcbd4defb0b626a7b070c30
port=12655
rpcport=11967
apiport=12829
rpcuser=0d723c05d8207d152a545f1d3106060617b9134e
rpcpassword=0d723c05d8207d152a545f1d3106060617b9134e
port=10346
rpcport=13972
apiport=10949
printtoconsole=1
keypool=10
agentprefix=node12655
agentprefix=node10346
__cookie__:075d8aa788d270f13fdcd44d625f7229338cf7d6ac55475fbd15fb0ed8d1cee7
\ No newline at end of file
__cookie__:7a1bd544829d4b891ae182fa73dab69b5bd13668c9987e83a595f7a4e315249f
\ No newline at end of file
[2018-07-27 13:23:55.4123 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-27 13:23:55.4123 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-27 13:23:55.8960 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-27 13:23:55.9164 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-27 13:23:55.9164 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-27 13:23:55.9315 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-27 13:23:55.9315 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-27 13:23:56.9740 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-27 13:23:56.9934 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-27 13:23:56.9934 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-27 13:23:57.0064 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-27 13:23:57.0064 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-27 13:23:57.5918 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:11967/
http://127.0.0.1:11967/
[2018-07-27 13:23:57.5994 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-27 13:23:57.5994 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-27 13:23:57.5994 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-27 13:23:57.6164 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12655
[2018-07-27 13:23:57.6164 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-27 13:23:57.6461 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-27 13:23:57.6461 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-27 13:23:57.9181 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-27 13:23:57.9274 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-27 13:23:57.9274 12] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-27 13:23:57.9274 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-27 13:23:57.9274 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-27 13:23:58.7767 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-27 13:23:58.7767 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-27 13:23:58.7767 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-27 13:23:58.7864 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-27 13:23:58.7864 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-27 13:23:58.7864 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12223/
http://127.0.0.1:12223/
[2018-07-27 13:23:58.8024 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-27 13:23:58.8024 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-27 13:23:58.8024 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-27 13:23:58.8024 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:13329
[2018-07-27 13:23:58.8024 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-27 13:24:01.6791 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-27 13:24:02.6318 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:02 agent node12655-StratisBitcoin:1.1.2
[2018-07-30 19:40:22.5092 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:22.5092 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:23.1318 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:23.1495 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:23.1495 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:23.1706 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:23.1706 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:24.3056 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:24.3362 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:24.3362 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:24.3516 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:24.3516 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:25.1209 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:13972/
http://127.0.0.1:13972/
[2018-07-30 19:40:25.1326 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:25.1326 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:25.1475 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:25.1637 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:10346
[2018-07-30 19:40:25.1637 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:25.6165 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:25.6165 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:25.6325 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:25.6325 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:25.6325 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:26.5956 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:26.6009 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:26.6009 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:26.6214 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12906/
http://127.0.0.1:12906/
[2018-07-30 19:40:26.6214 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:26.6324 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12731
[2018-07-30 19:40:26.6324 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:30.1815 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:30 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
......@@ -56,13 +55,11 @@ Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-27 13:24:03.8241 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:03 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:30.8885 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:31.7441 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:31 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -78,28 +75,8 @@ MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-27 13:24:04.1655 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-27 13:24:06.6810 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-27 13:24:07.6548 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:07 agent node12655-StratisBitcoin:1.1.2
Headers.Height: 3 Headers.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 3 Consensus.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Wallet.Height: 2 Wallet.Hash: 28d56e9fe90cbb3afbfd1525ddffca084e5f62a3a6dc7a59ca5a79e715eb3b4d
======BlockStore======
Pending Blocks: 2
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 100.00000000
======Connection======
[2018-07-27 13:24:08.8336 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:08 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:33.9427 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:35.1949 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:35 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -118,26 +95,8 @@ Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-27 13:24:23.7374 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:22 agent node12655-StratisBitcoin:1.1.2
Headers.Height: 3 Headers.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
BlockStore.Height: 3 BlockStore.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Consensus.Height: 3 Consensus.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Wallet.Height: 3 Wallet.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 150.00000000
======Connection======
[2018-07-27 13:24:23.7405 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:22 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:35.9040 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-30 19:40:36.7576 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:36 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......
{
"name": "mywallet",
"encryptedSeed": "6PYT54bGLkV5vSbToZ1Thr6XLXyWpzKk3JFB5hyfUWiZWDcM1op14dQEtg",
"chainCode": "jkrliW35F+70AkjcZ4RhTcY6/IFfByJcRbp0Z/8iGlE=",
"encryptedSeed": "6PYPNxKyc1KZYfKRsy977z2ZFWrS3FjvUn1j7Aixg68npYVktFyL5hdw6J",
"chainCode": "Pc4xsmvZQI7XPSb3MYPaj4SwJi2orzCcnQGQclhrcHE=",
"blockLocator": [
"506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060",
"28d56e9fe90cbb3afbfd1525ddffca084e5f62a3a6dc7a59ca5a79e715eb3b4d",
"7f0d105bc9a88cf39daecc1ad4b1274a4a689f16e1c5797d4a7395a1d4f46813",
"693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"6900103ba5de76d42bcd4e8e6c81a1885b8228261295bc12814940eab8a6fbdd",
"0062cc5614b1c3ac4b18cd127d07734fd0dc8a8bf6f0a1f37115bff2be1d45f0",
"0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206"
],
"network": "RegTest",
"creationTime": "1532697840",
"creationTime": "1532979628",
"accountsRoot": [
{
"coinType": 0,
"lastBlockSyncedHeight": 3,
"lastBlockSyncedHash": "506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060",
"lastBlockSyncedHash": "693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"accounts": [
{
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDDhmRJDbPZXPAcTgBtBuYaRHsmWWvEL2JsWKdzzrJvq8QbuR7uuUKZPzXKm7ykrqvrvh862oF3jzF5qdkRkXPTPprEH5tKjhZ3mMAALVLeH",
"creationTime": "1532697840",
"extPubKey": "tpubDCKPgJQukMY9DTXMpBs7vBXzYDmQCr7JnXyQEKrG7v5SZcQE8B7GtRcahe1wfE3t376hbahSoZEJgKb2uwuoYD7nB3SokRBtZQSquSffHMx",
"creationTime": "1532979629",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914c6dba2cabcfc8dad6f35a6d0828ee7b047f3f9bd88ac",
"pubkey": "210346e4527bdfaba0d57f971c746de9f28aec553c2b00582b89bf4e57a8f5920831ac",
"address": "myeRCc9JGFzkfFpi1wwupg23cmQsfZ918w",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"pubkey": "2103b73bb8fcc01265e6ea832e439e24750ea0de03a57e14cca27a8363c7e7e33420ac",
"address": "miyeNeEJ6z8NGi5vHHkbpmSrpP9HQyyfTD",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": [
{
"id": "182a5df933f06080c9d1eb73bb1ee346b89ece2df0bd65564967058b41e68ccc",
"id": "d1df19b6368eb543d6f6ba83f656f47c5ba98e9d432d05eedeef1932ad991748",
"amount": 5000000000,
"index": 0,
"blockHeight": 1,
"blockHash": "7f0d105bc9a88cf39daecc1ad4b1274a4a689f16e1c5797d4a7395a1d4f46813",
"creationTime": "1532697845",
"merkleProof": "0100000001cc8ce6418b0567495665bdf02dce9eb846e31ebb73ebd1c98060f033f95d2a180101",
"scriptPubKey": "76a914c6dba2cabcfc8dad6f35a6d0828ee7b047f3f9bd88ac",
"blockHash": "0062cc5614b1c3ac4b18cd127d07734fd0dc8a8bf6f0a1f37115bff2be1d45f0",
"creationTime": "1532979635",
"merkleProof": "0100000001481799ad3219efdeee052d439d8ea95b7cf456f683baf6d643b58e36b619dfd10101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
},
{
"id": "b9d6ee7cf00b5f4100048d8814186ca0ba0e2b1a8b7a49d4a58817503e8b0cbb",
"id": "46631a325d25f57a49b032e4d0acca164eb481f1085e3ae6d423bd93f684dd0e",
"amount": 5000000000,
"index": 0,
"blockHeight": 2,
"blockHash": "28d56e9fe90cbb3afbfd1525ddffca084e5f62a3a6dc7a59ca5a79e715eb3b4d",
"creationTime": "1532697846",
"merkleProof": "0100000001bb0c8b3e501788a5d4497a8b1a2b0ebaa06c1814888d0400415f0bf07ceed6b90101",
"scriptPubKey": "76a914c6dba2cabcfc8dad6f35a6d0828ee7b047f3f9bd88ac",
"blockHash": "6900103ba5de76d42bcd4e8e6c81a1885b8228261295bc12814940eab8a6fbdd",
"creationTime": "1532979636",
"merkleProof": "01000000010edd84f693bd23d4e63a5e08f181b44e16caacd0e432b0497af5255d321a63460101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
},
{
"id": "e130af95521091f903d7e448da135b2b647a623184b7345484ad5cb3c822ec48",
"id": "1fd89b7d76b1f563df32a2635e636e8212f705c7c9fced3b88acd2f2bb941321",
"amount": 5000000000,
"index": 0,
"blockHeight": 3,
"blockHash": "506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060",
"creationTime": "1532697846",
"merkleProof": "010000000148ec22c8b35cad845434b78431627a642b5b13da48e4d703f991105295af30e10101",
"scriptPubKey": "76a914c6dba2cabcfc8dad6f35a6d0828ee7b047f3f9bd88ac",
"blockHash": "693ad39b4344770574e549de4f93e206cf6a74d6de975b2e43af7df87892c3fd",
"creationTime": "1532979636",
"merkleProof": "0100000001211394bbf2d2ac883bedfcc9c705f712826e635e63a232df63f5b1767d9bd81f0101",
"scriptPubKey": "76a91425f4a612679294e2d0948c385a06fd6279d6694888ac",
"isPropagated": true
}
]
},
{
"index": 1,
"scriptPubKey": "76a914964b3f8e4a521f466814c725c7c7629e18b629f188ac",
"pubkey": "2103933292c887480c8e163732f7192d42ad76f1eb4ef9711b6e1ad53105c7a6f9ecac",
"address": "muDdoAo6F5oNHiEKpHpC2usXp174byJWXy",
"scriptPubKey": "76a9140cde018a77c780ecee63305badd92e2c2383c8ea88ac",
"pubkey": "2102707ecc89e445f95bf4fc8dd8c6b4395775bc3a820c1008043a156dbc2912346eac",
"address": "mggzMc2BWZHdHoybv7o1Kbt4PW8nveEfdq",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a9146347496e45ef1447d8466e00063aad8cbf0aa8e288ac",
"pubkey": "21034cb8649b0c9022ba3b705d47bbb3f41909b26907200729d45b8bd19de4a11250ac",
"address": "mpZtb9AhkR6fkoFRyJ3G4k7UF2xyhc6HVc",
"scriptPubKey": "76a914aaf163edac0c0084c83abdde1e5306d08b08089f88ac",
"pubkey": "2102d10aa69b6a5ce905f910a60ab18b55eb7802f69305dc95d593408cc1ef0cfce8ac",
"address": "mw6pLm4JvgKZPnaKX3PUFK46kjSGJQeneu",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914abd7d103e253716c8665d844e396984fa684791f88ac",
"pubkey": "210239541e459db21d5a7a78838cfc1cd6ffbcf567873b89b561db5206b50a973c21ac",
"address": "mwBaP3jVRTsr38Se1BaDwt9LPHdaxiBTEh",
"scriptPubKey": "76a914eacf310592167d2246f37bb61940295c5e62078488ac",
"pubkey": "2103504f1fc96eaacdf965b22c00d9cbdb6f64c7157646ec3c2ffbd2940428aef1e0ac",
"address": "n2vWcroi31AJpPsAdUoDcxEXcAuhZvXBPb",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9145a6dfc83f33dec131d70ded5cb547eb4e4eea84e88ac",
"pubkey": "2102f368f0ee2eee666a010fd9543e2c67d93192e71538eae4b8077ecff34aebc3c1ac",
"address": "mom6sJkzdLfXqfHs63ss12V3bdBrUfL2Kd",
"scriptPubKey": "76a914bcdfcfca589542266db0668ec8157a8d718acd9e88ac",
"pubkey": "210205fdfc33da699fa2a69066c2a9613909d5cb00f7068be5ac8aa31ce506321fb4ac",
"address": "mxjdSptCAgiz2LBDrqC1EGHoKWDQAoQoUs",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a91442b4864e867b09e62ef0d84cfd66474252c98b7888ac",
"pubkey": "21023eab385288ed37eb310b056571200c9ba635b89107834bba16e764dbcbf2abaaac",
"address": "mmbf9nZk6DSxgGd8WGcnrNJzSRfUhvaBc3",
"scriptPubKey": "76a91482ba28c370d42037774e2f468ff89beb1ba12e8088ac",
"pubkey": "21038ffc280ad6d68bf4ad9c2086ba0f348755e08b5f8a8a3135c7f670dea5168d07ac",
"address": "msSB9ZZSxWJ6CWHAq2e93gywz6CwkWGW2U",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914e9c9e5fc2cb7f5a1ae8a8b96f293c8f5b5f0179c88ac",
"pubkey": "210347cce249521fb406ac9817fd0ec9d5514c7bd0fc4959fd1d93d3f8c8f18fbafbac",
"address": "n2q7btuo2SrBcNFLWguBbDVoHj9xtPnCoi",
"scriptPubKey": "76a9141e8d2d5b1595ce253d3fa7067806d9097fc2a6d388ac",
"pubkey": "210368abb6d5400cbdf53de339d8a987e6b6a793e101e99277f75f3b4af6d1ab144fac",
"address": "miJVgyFr2CkK2pwsRFCWyStifyLCaH6D2D",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a9142af99952f2e0b5b276393359608e159b4ac23ee388ac",
"pubkey": "2102b5125de58cadbb5d16d15ec5f42d695b87bce70dd2feaa2222d05f1c2daa9be4ac",
"address": "mjSBgYjpg8sm5QzCtkDymgVAoTJt7FTL9n",
"scriptPubKey": "76a914f8f6758de65e8a62a6be3be7a6526aa8525ade6d88ac",
"pubkey": "21021f16f40905b2d7003674d2e1e787d97bbe032fc8ff374a59cf8559218af13d1fac",
"address": "n4DM7uv5A6kmRfV5pJabFtXFpENX4n45KB",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a91412f28906858d0f2f034af6a3098773627c43ec0988ac",
"pubkey": "2102cdab0345b574bd4dd007517c3aa7f0b164e30fe08e5cdc30c3c56e779527f711ac",
"address": "mhF919mUUY8LDydV8cnhVMrN4VQRRTqrt1",
"scriptPubKey": "76a914470db1acada1bdedf2118e77ffaae8814adf248e88ac",
"pubkey": "2102e8a96e536b52a79be2aef7e799ba120a2dd0ce525c18183004de5f5302f65dddac",
"address": "mmzeg9oj7pGVm3GhD5cNqNNWw7i4dy5Pqj",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a91496080dd6eb0b11d9e5908557e38e66882ef937d288ac",
"pubkey": "21026e00dfa4802b2511dddd1d964a4b415acd2cbce1f1f46ac548547fdb6e8736a9ac",
"address": "muCFJSA1FiCGRKvKCKLHMGQyXHmSM8iDgF",
"scriptPubKey": "76a914d40883f3cd316b3d3246c7c0e25789db529919f588ac",
"pubkey": "210392155c1b7e7e1040ef9257116173e852c1788fd1aa0791a0bafbc879dc6f04acac",
"address": "mzr5kPHr7ZkttvdiB9so5xjoeQJy3NyyTi",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a9143f9172edb3463b148a55ed771fc26fdf00446f9288ac",
"pubkey": "2102ed817c0425db611354f42f7f24a646fbc89916b1af80d52bf6ea4095b53abefaac",
"address": "mmK577GLgGqUBcUjxVkE9mGDXdUQsSioMW",
"scriptPubKey": "76a914a219927c668f1cecc4b9d61d9eaf9e250f6b857288ac",
"pubkey": "2102e9397e54c9e8dc3eb317d2b532429528bf694406edfbbb7618a84c7ddb4a57f1ac",
"address": "mvJ4PvFRewnjV7nT7BNSL9QZUFtRY61N2N",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a9149605ec888e9ce6cfeaea1606f5028ccf8d00e3d788ac",
"pubkey": "2103e931f5ce52d85695a0798cc52d9a1744c65b96da93d32145f245a1a4bf89e9d5ac",
"address": "muCCkS31rZ7GWK5FkeXAYJPNtCVKvRNGyM",
"scriptPubKey": "76a9145927f60729ef253189355ea3536d50eabb1a82bc88ac",
"pubkey": "2103875477b8ff616800f0f4f05a1241b5a9f83e3368862b606211d0955a915cf36dac",
"address": "moeNJfmEHreS5Sjs496WciTgaGLgWsDqMZ",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a9142eff576d09e3e26abd30e2cd53f87e5c2e8d5a0f88ac",
"pubkey": "2102ae010deefac981e9776fbeb8106e4f000518c2f3f26d6e621644121de13dbb1dac",
"address": "mjoTGKMHqAQ52N4k6KzCALKk23MkHXT3sB",
"scriptPubKey": "76a9142723cc606ace4384ad0eaf1cba60eb907700caf888ac",
"pubkey": "210237d6cbd303a0139fc0fe1abda109474f1da1e448f5933b7e478403e5825de4c4ac",
"address": "mj5uXr9HdGgFi4CUNgaRpxR2FfQEVaTHEB",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914d6014d38530ac14c8087f83188c71f6388afacb588ac",
"pubkey": "21020f038e1715578c0b9890f465a5c852bf5ca7778d5f0429d1218b9c195df80c17ac",
"address": "n12WTYagVydKyFwhE4ezsxY7NX5siZckmX",
"scriptPubKey": "76a9149d0abf4576fb4273c12ce991b492587977f57d5588ac",
"pubkey": "2103f3659a4dccd488a13623cbf59000e215b4c22d596c5fdf9ef4aee36f865c0763ac",
"address": "muqKFtxqq1MDA1VywQKFYvTgZU8akRArKM",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a914c97d6d5303a962a526d728e71d45df419b6cb6d388ac",
"pubkey": "2103545e4e1f0de8b84b6e32e504683c837b00b587402ff1d8276cbbcfa3c3c15f3bac",
"address": "mytLNSEz35ei49SW6g6aNdprQUqRK5L3vB",
"scriptPubKey": "76a914f99a6f99f871537ae4b9dc9180eb3eb15ee7bdd888ac",
"pubkey": "2102c567f4e6a09ff3f53c1728558c97d3f1d1b954e8d5a580ff024bc1f98f140e51ac",
"address": "n4GjZDZ4ErLUZCkZ1hLG9V8s8No1KtKw9S",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a9148275fedc2c0903cda9db203ac32ba641b92bed2a88ac",
"pubkey": "21030462176aa60f26ffd4e31e456acec576658e21a5575c1686ca107c82314e902cac",
"address": "msQmVTzw8wN9uSFgBfQq8ntZMMoyzA4a6s",
"scriptPubKey": "76a9143079321984b2a19402a96ffdaf83fede1f9a0e3c88ac",
"pubkey": "2103d8852dbc2ebb23f612e502e6c36dc85b88d32ec3b39b9644f055ea732d418acfac",
"address": "mjwFv5zVxbq649Ytcaan1DGAzAmonFBZM2",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9146b56576f707e7119d78df49a9107865a55d246be88ac",
"pubkey": "210344cdb7234055d8ad59348fc5bffecf7fe4678e6f2604256e977ca5373b7bcf85ac",
"address": "mqJW2hJ3Jsizonfpw76mD41rEMbymS3PtJ",
"scriptPubKey": "76a9147f91a151a90fae49edeb8bf6ad65d3490e97109588ac",
"pubkey": "21028dde21d5c4d7b0a8a6fa77c5b8578493378bb00ea2a8c009e720c450b46d8354ac",
"address": "ms9UZycPv2rrUHC6LS8zUzB9JPkxvh6BZ2",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914d3f35877aa90b85de092b293465247a0d259d58b88ac",
"pubkey": "21020fda5c7d94b859938d47e63ab4843cee76e8367e2a878615dcd686263d0cecc9ac",
"address": "mzqePUdoUkKh61HJRj7Lh3pySysRUgjPJ8",
"scriptPubKey": "76a914a16df9685cf3ae209daa7da7c6a6792d37cd727c88ac",
"pubkey": "2103cde67c89a963e52ca8057994014e7fde2759280de2c91f6a77e17733ef0ae322ac",
"address": "mvEWq5o4zbKviN58HyExyeNP4TJ3v5pkKm",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a9140e74d772a311588f932e9a9211e9c5b01e418d5f88ac",
"pubkey": "21038fc7712d972135841418a9181d5e51e82f205b16c05785d1173fada457691146ac",
"address": "mgqPj32rQ4epR7rNK1aoeE1NBi8wreymrL",
"scriptPubKey": "76a914a5d60185f773a106ee36c1fda77755d31c45516b88ac",
"pubkey": "21032ae5fa15dd3c945509abe655847b9805a4f25369bdc0f5513c78589ab1ce131cac",
"address": "mvdpA6mAmsDrexXbUx1UaHR11TfYrREBsr",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a91466c76e1de385dde510268d6283bb5134c319105f88ac",
"pubkey": "2103ed3550901d232499e0738f7d82c9719e156bb0c2b909128b8c0b42fa5b05c03aac",
"address": "mptQ8GccEQHrA9UeAzusApFtap2Vp6r9un",
"scriptPubKey": "76a914a45239a1eda5911a6facfff99846aa23ed61923b88ac",
"pubkey": "210369c72066b1624b30101c0e1ec31ae82c926efce2be23af494715d1b3659c71c5ac",
"address": "mvVocch93W3SVPGVUDvZGGEsCvF4fgJNcK",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
},
{
"index": 20,
"scriptPubKey": "76a914ae0d12aaa3eee2da0b166a3363a1f65c4d35bd7488ac",
"pubkey": "2103cbbbee5ee1e8ffc8629a680cd227f159f11a082d229c4d0fba4d0f71a732ac79ac",
"address": "mwPFXkivuTdUmvr9YkpijPSYC7DwvvE94a",
"scriptPubKey": "76a914c8b92b9d8d6edba62382fd3f84680c7ab9711ae588ac",
"pubkey": "21034eb1316f57c8b395060b97bdc6e711aed7736f37a9f3fc1c55ebed5f2eb6ad98ac",
"address": "mypHGHNosVts6rocLBJ6ZGJSrHnaotgzpZ",
"hdPath": "m/44'/0'/0'/0/20",
"transactions": []
}
......@@ -229,161 +229,161 @@
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914ff139702bf1e483862191a6538325ac8ad7b7fd388ac",
"pubkey": "2103a39cfe33bb98f17e6db0b3cf2425423ad828e41e528cb31774c652a7630ef044ac",
"address": "n4mg56kJY18Sy3V6aApsz1Coq1ztyYRN7h",
"scriptPubKey": "76a914f9b47de89bba2c033a9f073456b18c3b94455e8688ac",
"pubkey": "21022942e1d7d62037caebe974545b3b966f78378233d0cd91127f4173c710194a12ac",
"address": "n4HGmcT9i1sGiSohmhXZWMUyBGz42Feoo6",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914e8545861f7290152584efb490a1846da3f1ee9f488ac",
"pubkey": "210310ffad29d6038b502ea824935c2021719a8b10330b256666aafc53d5191fc286ac",
"address": "n2hQ6yA4vKeW2WKByyhmP36eor7mHSggR8",
"scriptPubKey": "76a9141ca068e68b4f1987771890d3a58e1052ef15f96188ac",
"pubkey": "2102f094a3ea1609f322c0c2ab2f990a4c907498841a6aa2235ce6c9ed7a815725e1ac",
"address": "mi8KNtehhTQ1jAyKpWTsCDFzenAyUaZDdK",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914cd0edd7d493b1a52621ef364f38114baa11910e588ac",
"pubkey": "2102867c49125d8e20ea0cd49c53632ef67c2f36fade5688466422273adcb5c3c59aac",
"address": "mzDCdEMEvh3h2awYZ9dA92or1kvaqXDosC",
"scriptPubKey": "76a9145b504dc09e162440869bda631dfcb53b6402a63488ac",
"pubkey": "2102f26c2c04136980245c0238afa9b1959727a638c5ee0e11f6f6cf1843c6acc552ac",
"address": "moqmz7PJxXZBp8rQ3kBvJTYRZqZZi3XAaC",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a91455c2a5d17feb30aa4496ef45347967c8095cca2288ac",
"pubkey": "2102fb90a22fbb3d415b91de8adf4661fef8951929295037571921733653c623d439ac",
"address": "moLQuimAsAoaaDkjVZ7Jy4o2aaJQ3h26RB",
"scriptPubKey": "76a9149e57eaee9d3c9d81edbc13a2d43315dcf45a83e088ac",
"pubkey": "21034d5621fb2b92220988e532c0bf297a25244fb34e50b76b8840e6f25c037db47eac",
"address": "muxCNzWY7skwBpufCrGi2tNtxzWxGKt5H9",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a91472b8f97b00c9b13065eddbb2d31157ee570f0ab988ac",
"pubkey": "2102e7631d02e1c9738290574d5c87b9e3ec4893e8aca1c09aa3fdd90a2b51d41045ac",
"address": "mqyYvBJwzEUj97jiYwHc1Sbc1CembLm3N5",
"scriptPubKey": "76a914a023a887a8fb09d3da69f2a6bc3f93517bedc90588ac",
"pubkey": "2102d804ab3abf257aeef32fbf075395c191602cec53b1aa91afeecaa2c6792b6f03ac",
"address": "mv7h8L7i9Ebfp3iU1tpYTqZzhptaDVoKAe",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a914c26e691fccd3bde32d0c2256473caa4ae5ef5ce388ac",
"pubkey": "2102bf8cdd0cc4e9026ef314ca659316a8a5bc56449300051ac5cccd24b6be17f404ac",
"address": "myF1ejajYPbMpNRtAc8uE7wzoTW5eyYZyC",
"scriptPubKey": "76a914b8756820961ced3a3c71a09340fe7fb156c6f5be88ac",
"pubkey": "2103de7a7e43239d89d235333577849e7a75a0cfe6e256998c190b7ad91a9b5aed8fac",
"address": "mxLHGv14SUidAQavsPh76uqVGHNvNw1ago",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914feeacc8e3fefb70ed46a156f2eaa4008daa5a0b288ac",
"pubkey": "21038d7ec824b82ef4b6a9cecf1bf65906e3a51a91c98cf87382e05d1035087e90daac",
"address": "n4kqCuJjLEc3uTZauSG1Bp7uuZrHnEPXDs",
"scriptPubKey": "76a914ad5050eaebee426d56ec436595d54cdd6173493488ac",
"pubkey": "2103d5d55e2c5f27862be11054c549ececc7226cf8f9e50d8275a76b46c2cf698bf8ac",
"address": "mwKMQhZJh8QZq57bkaoHGesee8CddkaAko",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a91446c86d1a426829854c301441933e44456270976388ac",
"pubkey": "2103187bc1992efc8a0455d79f25b01ead8f4637668333a60c1ca78e0720488b3b53ac",
"address": "mmyDhLXJ1cgg1sFfCxeamUDMaZ6qR3xWoX",
"scriptPubKey": "76a91492e75c5f24db5f5660778a1f1d7e36792a5d2ec888ac",
"pubkey": "210327ddf86c7e539405e3b9b265b68620dcc7fc0dfd1ba6dbdb2cf818278cb7bb6aac",
"address": "mtui7HxzrhKBrHVS6GebQBjc3nopRSvfzD",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a91456ff3efe99d48762fef18e79980fa6120b9a909888ac",
"pubkey": "2103b0561978b94c5f538fcebcd77ebdb5e0906843a318662828109fb29b984ce0f4ac",
"address": "moSxBMoUYpYyh4Y19Dbh567qk1TUEDXrSb",
"scriptPubKey": "76a9146e238b5f70f17f10666fdbd2751a29c39c26ba2688ac",
"pubkey": "2102f15326490abc14a05fc00f8ae36c46c067a542232ab8eb289ae216144da9fe65ac",
"address": "mqZKCppcvUkJhunVsUPtXZXsxmZAJ2P3QN",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914778cde18e1eec08f5864e3b67480452386367c9588ac",
"pubkey": "21021971590a23125a4d7bc8d361721e9a18820763601f9a23d6dea3e12e70162d20ac",
"address": "mrR5TXotkp48odaQRyK29xid1tiwvuPeeC",
"scriptPubKey": "76a914fc1e22898b807ab6f08467181c5ac05227183cb988ac",
"pubkey": "2103cb9f0c0813e529b30b28abbdfcb6a3596dff488471f35264be05f66feb8dbff6ac",
"address": "n4W2gCszHmeuPYNN25FTLohim7vnZJ5gea",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914b5734b6edf4b26fbdcef7b29e45db7e68164029388ac",
"pubkey": "2103972dfa35a5de8c70a43ed7837e0f0fe48d8166916f644deea63cb66a7ed5c152ac",
"address": "mx4Nib6uaE2ARMk6zUaHV3poDZhKZDaiZR",
"scriptPubKey": "76a914ce006df0a9de66d9a77ec23c7cc68e230c5d7e4a88ac",
"pubkey": "210229c73e908a8f13d90f6a5e8ecc9fe7f73729813a2229acff5a653f0a8974ef22ac",
"address": "mzJC1Qjd8KsqM6FuqhfUcrSaGPe2hKSiNK",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a91417c6599d06f291875cd49965443012936a18067d88ac",
"pubkey": "2103421b459a9f21c53fba256cb2cb561112fd21978615c1f786c9025cd347ea067dac",
"address": "mhgfT4yaypG1Qu3P4kZT2N2yC61b45Xh89",
"scriptPubKey": "76a914fe23510b7cfbd174adf35b881119b271f2658f7988ac",
"pubkey": "2103f57a6045bccdbbd47fa5f73370434c69ef94b940affcc779682834961551e392ac",
"address": "n4giEcoP3rcvbXwoZM7B1LpVyFfzBQjm2V",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a9143341e078a54db203513b560ec51e7e8a96cc97e088ac",
"pubkey": "21037484b8636bea72420b71447a6f22ffde6f662ba15367977ff45cf897788e3e60ac",
"address": "mkByg3Ja5PUo7LL99gmuXCETqAdHc458ZH",
"scriptPubKey": "76a914327d0acd72a3800c89dccedf6a448ba268d937b488ac",
"pubkey": "21021f8aad7ee9f8245d9911245c03059f50657c79a8e42ff5761d7eee6c5d03a746ac",
"address": "mk7usjH4UdBBJ87HBhrcwY61hxTiSKXa8u",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a9140f4fd8a9640e7e6785722bcd6b39d347a0055c7688ac",
"pubkey": "2102428644d905bf8323018e775c3bd7f5f143f47cabc5a28fdfda016af3ab0c7d26ac",
"address": "mguv5kaDwdZHcB3s21jqio6EAzn797C9o3",
"scriptPubKey": "76a9148c5a0458a5685cb34b01170e665519d1ea18545a88ac",
"pubkey": "21034f43b27946e081c7ad8cf0a4cff62ce9dbd5b305dd67cfd2ae04670cbddc683cac",
"address": "mtK4jQ8Hay8NHmYp7c2mCECyyeub4WxMPb",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a914bc8b6cb8ca9a86b1f242bfc938938f518abb09ac88ac",
"pubkey": "21038aaf24aec88b8463452aa63d2549f40b4c421b8af1a5b35b090ffa02a4c2c0afac",
"address": "mxhtMWsGNXhBFWyziykHLxams1YCNLVzCp",
"scriptPubKey": "76a91467ab335e50033a03b910369336d257b2422c4f0a88ac",
"pubkey": "2103b0c169f9accf3c27b01b19db9b2a6a533592652cbbee99ff6e942b970e50a99cac",
"address": "mpy6z3SED18V2jcjyr9XKZzEBQ86pSEvuf",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914ebc4590dc5388bd76faaf9daaf1235d4e029fae588ac",
"pubkey": "210322a61a2121c41119215d5b71864e974cc42ed0af9cfd31d5bee0cc691ec27341ac",
"address": "n31aJd6LkqxarmPjCKYRdtwJNNgyhhWXZ2",
"scriptPubKey": "76a91477bec47a7ae286a1e86a22b50ef2f4df6221d67388ac",
"pubkey": "21039e29b554bc9fb351ba52be52b1d0c14b23e9d9ad6dca7b2398d6db615d7400c2ac",
"address": "mrS7Ee4AYoVp8qybeAQj6Y7nJMrnf3Hpsf",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9149ef5c03865d74031ec8c0859a74e70bc0028548c88ac",
"pubkey": "21027f296ebaaf84a587f3c34f5c871870861c4cb40841906026e7acec17b709b009ac",
"address": "mv1TTS2jKBBLarksYE6XNyRGCB8B4tTetu",
"scriptPubKey": "76a9143deac5ad6a4005edbffecc68f42bae463b56cac888ac",
"pubkey": "21036124cc9a6f6b4b6bac5f4538b259fcc96849312befd352a66b30201bdb3b52b3ac",
"address": "mmALm1gQr6X42YZZMiJe9UbXux74wfwaA2",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a9146a36ffa24284a16b0d91594d97e7f36d0fdb607b88ac",
"pubkey": "210292c78b55fd132e6396bb2e4a7bf183e5a0aad451856a8687af8fac5389832faeac",
"address": "mqCZoknHRYQsga8AnmjoTaaMX8ubNS51ke",
"scriptPubKey": "76a9146feecf04bd66d80cb54cd1a8e5b9ec251131ecdc88ac",
"pubkey": "210398d1797388b35a7b0ab913f67fde62665557cbf47601495055b4f61627c444ecac",
"address": "mqioP4gF5tvR83TRmnfYmjxGA53dtFL1je",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a9148a2e23ee837c00a2077156859a24a55f2cda23ac88ac",
"pubkey": "2102b6f4db16fa04e83ac712013a9e97b9158b1827dbd037607670c03cba56e4b4d5ac",
"address": "mt7apR21EJMFKzEoBmw9LtKFGZFnxvHBxr",
"scriptPubKey": "76a9146e50411aa4dc289103ad04a5403ce96661e095da88ac",
"pubkey": "2103e225dc7c993b663585dfd2777c5fe9d3d35b993e41e74f924b021b6c6c961444ac",
"address": "mqaEmKg5TLQLBkvaEMoGLBSNYd7WyTLRvu",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914bf05e13f71ebca5aad9177cce9269ae77ac9840a88ac",
"pubkey": "2103f671ce8b2cfb545f3ffb89312487e83edf59989b47951cdac3e540d424c2f8d9ac",
"address": "mxvzQEYzAahN84b6pxDjt1UasET7ZGh4XP",
"scriptPubKey": "76a914a6985dd029c01e5adcd7dee00bb653478757961d88ac",
"pubkey": "21022d24b93a0c60896600f0a49f214fb004b316fd3ce7d99a76804f197872302b24ac",
"address": "mvhpzWEs9MB6Pq4rF5CwFpKnaVV9hHE81L",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
......
......@@ -2,11 +2,11 @@ regtest=1
rest=1
server=1
txindex=1
rpcuser=de893caee72f1c34ac73ee6953cb0f40587492ec
rpcpassword=de893caee72f1c34ac73ee6953cb0f40587492ec
port=13329
rpcport=12223
apiport=13286
rpcuser=42852640b1aa0c94ddb6e22581fa4a672746df12
rpcpassword=42852640b1aa0c94ddb6e22581fa4a672746df12
port=12731
rpcport=12906
apiport=11375
printtoconsole=1
keypool=10
agentprefix=node13329
agentprefix=node12731
__cookie__:ef2a355088fa991c75f6a28b336a40db14fd157bad716e64bae2494e0b236f13
\ No newline at end of file
__cookie__:f180e01485a65770cdd27b6a294693437ca63ea018034403cd3673ebd1b4d110
\ No newline at end of file
[2018-07-27 13:23:57.6461 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-27 13:23:57.6461 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-27 13:23:57.9181 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-27 13:23:57.9274 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-27 13:23:57.9274 12] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-27 13:23:57.9274 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-27 13:23:57.9274 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-27 13:23:58.7767 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-27 13:23:58.7767 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-27 13:23:58.7767 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-27 13:23:58.7864 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-27 13:23:58.7864 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-27 13:23:58.7864 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12223/
http://127.0.0.1:12223/
[2018-07-27 13:23:58.8024 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-27 13:23:58.8024 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-27 13:23:58.8024 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-27 13:23:58.8024 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:13329
[2018-07-27 13:23:58.8024 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-27 13:24:01.6791 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-27 13:24:02.6318 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:02 agent node12655-StratisBitcoin:1.1.2
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-30 19:40:25.1960 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-30 19:40:25.6165 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-30 19:40:25.6165 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-30 19:40:25.6325 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-30 19:40:25.6325 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-30 19:40:25.6325 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-30 19:40:26.5956 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-30 19:40:26.6009 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-30 19:40:26.6009 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-30 19:40:26.6009 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-30 19:40:26.6214 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:12906/
http://127.0.0.1:12906/
[2018-07-30 19:40:26.6214 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-30 19:40:26.6214 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-30 19:40:26.6324 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:12731
[2018-07-30 19:40:26.6324 13] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-30 19:40:30.1815 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:30 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
......@@ -34,13 +33,11 @@ Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-27 13:24:03.8241 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:03 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:30.8885 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:31.7441 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:31 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -56,28 +53,8 @@ MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-27 13:24:04.1655 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-27 13:24:06.6810 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-27 13:24:07.6548 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:07 agent node12655-StratisBitcoin:1.1.2
Headers.Height: 3 Headers.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 3 Consensus.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Wallet.Height: 2 Wallet.Hash: 28d56e9fe90cbb3afbfd1525ddffca084e5f62a3a6dc7a59ca5a79e715eb3b4d
======BlockStore======
Pending Blocks: 2
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 100.00000000
======Connection======
[2018-07-27 13:24:08.8336 12] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:08 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:33.9427 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-30 19:40:35.1949 7] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:35 agent node10346-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......@@ -96,26 +73,8 @@ Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-27 13:24:23.7374 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:22 agent node12655-StratisBitcoin:1.1.2
Headers.Height: 3 Headers.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
BlockStore.Height: 3 BlockStore.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Consensus.Height: 3 Consensus.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
Wallet.Height: 3 Wallet.Hash: 506f45284e3914812bfa4c3023a72926d04fcd0863bdb135d9b86659ab985060
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 150.00000000
======Connection======
[2018-07-27 13:24:23.7405 13] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/27/2018 13:24:22 agent node13329-StratisBitcoin:1.1.2
[2018-07-30 19:40:35.9040 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-30 19:40:36.7576 5] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/30/2018 19:40:36 agent node12731-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
......
{
"name": "mywallet",
"encryptedSeed": "6PYUj5Q3Y9uL6hTertcJQVe4AY1e9ES2CswLqfQS94ohzaqCKnN8e6UETX",
"chainCode": "C4EJ1JRZZMRILhx1ZDJAl+RMuEKHeK3m6/v4jZr5Kng=",
"encryptedSeed": "6PYM9RHZd7rrQGHdcDgVBshGc1KdHN84yefSgrwxqhTjwLtyykgWzFDjGc",
"chainCode": "wdl/Do6+FvfczRpShz+xsst4ULBUputsGrJV12Ss0II=",
"blockLocator": null,
"network": "RegTest",
"creationTime": "1532697842",
"creationTime": "1532979632",
"accountsRoot": [
{
"coinType": 0,
......@@ -13,166 +13,166 @@
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDCdx12g4zDCE4C5JY164p3rWMcceDPpv95qu7MHWbeShMGxyty4EDpwDihe4eaWYMVxKFmyyrkiZEJQfeJosQ8nSjpsYK8TjheNbHfMc3mW",
"creationTime": "1532697842",
"extPubKey": "tpubDD9f5P1A9L64McMdcDbXyrfeSLHcNcdorS8jeAhccrk4r3e2XA4bSksJnL7JmktZBrnhg5eDRd3Wh2KarhnozLTcATQjjjqG3HvVjgf9bQS",
"creationTime": "1532979632",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a91422e6558143fbf70d8d425e6fd7b474ac24ab2ace88ac",
"pubkey": "210263078ae8355e4090b3d33a45144e1750fe3d451d7235bfe692119370104a736eac",
"address": "mihVCTq8FFHdaMk6ZqPvpb567PfDLyKPXy",
"scriptPubKey": "76a914873cf3ea65d798793e10f72fea1bfa177a43dd4988ac",
"pubkey": "21020ca963ddc11f38d7ccdd838d00d3985c6a261eb984eab30d7ca9740b1d156e72ac",
"address": "msr2Y2SMooq93PhtnWCpEuf8Pe5HuoQfHu",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914e22503ce5ddac19fa47a25ee1199c6af481ebfbb88ac",
"pubkey": "210215eae9e147dbc74525b54346e82a7afb239e8acb80970ec0af570d81e8315877ac",
"address": "n28hMFD5pg7TVrcoU74zfNrgAvuU8bXuPW",
"scriptPubKey": "76a9143f5e6234863546b08ca692ed187255e11068969388ac",
"pubkey": "210245428abc1e20a184b5dd57be488f88be7baa011fc592711f7bfb3d5e0a1b3ec6ac",
"address": "mmJ1w2ZnJ3yqEHQNVnNXmEf5q28HvrP6uv",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a91401af46bdca7499dafe74975903241c43d5324ea188ac",
"pubkey": "2103339ae05fc5e9886e115b3e8bb57d1941972e8d32069ed65d9dddff9bd4338adeac",
"address": "mffrwfB99DHWaMyiTQk7GkPJavg9VmZ1Ex",
"scriptPubKey": "76a914593f5b895c2bbf95f43fe393dbb1462bc2b2b8e688ac",
"pubkey": "2102d37ae4c8a50deae4afe30508322ffe73df4889653318b81ec7cd84ee6626739aac",
"address": "moerLHe57tcGsChHwnxTti8jMhumFq8ngq",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914043db70645b922e5010465b9b5a960f0c6eb8f3788ac",
"pubkey": "21026b7397e7cfb46e07725e603a49ae6192130fafb72d8396459f9cd4a8e06a28efac",
"address": "mfuNvrHNTpPJjayGuG96hmdGQNmrE8JwWa",
"scriptPubKey": "76a9149dc94f3062335d89bb019cf8fce2f1917377021488ac",
"pubkey": "2102ba966d230de5d9ddad52e46ce26fc0e3aaa8d5b85ac40486d468a52c3bfeaa12ac",
"address": "muuFYPWqvEXuGxgrqMhawADqj6N3QV9sbH",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9140ef6721096a6ba42a60ee6fd213e8205dc3ea91388ac",
"pubkey": "2103fbf27b8aacc24b46b7670a96802b168fd1c98f612b41b83726a607b804066dcaac",
"address": "mgt4z5TmNPQ6hrvdQcKdLmxGHot76Roruo",
"scriptPubKey": "76a914f5bd838021623a15461462a1b6687b2353d84f6d88ac",
"pubkey": "210256fa7a8651e9cfdcd729aa2b9b23decffb175abcb323800e5890374d52b1c41bac",
"address": "n3vJshAn57YroDYF1KFjsswMajEPAHwrh6",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a914aadbb5f9e1d10101373f7a0fae4dce10464dbdc388ac",
"pubkey": "2103c1814b53e308238350c6076a0da30cc997b099613d74fb6d4279a96454a07a45ac",
"address": "mw6NNSc41NixaoXv6Tc9pZejFSpQDahMrR",
"scriptPubKey": "76a9144f2f52aa1ac261b5a0dcc58fd4cfea998296699c88ac",
"pubkey": "21032d32ed2242db63a2f8c19bd847f31bbd879a686268216adcc7678c8b8096a9afac",
"address": "mnjeNG9Mifo3PXGtVqR25sLu8nD69QDAFR",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914962f80008d968cba71d79279a1580ed1abd3025588ac",
"pubkey": "210282a10947bd29b02cbd6977f7d599f5d64eed854b79b04418e6d3fb8b0b6fe1e8ac",
"address": "muD4ZBoRMwaSyzc6P5Q6KnKcfeXYxNNYFZ",
"scriptPubKey": "76a91455b9114df056051f27022b75a15baf2b48c288a488ac",
"pubkey": "21031087b448cb1c9927820cddf4335b6dc4a4c8b95d5f67776bdff37c4665b95354ac",
"address": "moLDS5gf5sNo2N9FRP7Lin9CfYf8jDDsmy",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914277cf329b8fb048b9b2e62e90d62254cfa4df12e88ac",
"pubkey": "21025d4e65b07611319c4db0072fba31df1dde9914bd8025edd8476aa49c9568b9ffac",
"address": "mj7kLCm2ZMZHSAMPUQ2zjDbBRrAeWWDh2C",
"scriptPubKey": "76a91405a91f0cb67eee86c2a2727d33ab9f89a67ab53988ac",
"pubkey": "21035f8bc550f0d9de269fae67a2bf8b165ba8eb9beb0915138d49f9f284362c0b6eac",
"address": "mg2tGmPv762LfVPEZZwDMhFpRpNbiE7Gi7",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914eab70f0cec8a0d0d71e48aa881f16c922ffc847188ac",
"pubkey": "21026710155b318a5083289f65be2b54c950eff28c16a52155f1f841bbe9820bbe21ac",
"address": "n2v1i6BQSnYvws15eC2kK9Tn5EYf2T9Xcn",
"scriptPubKey": "76a914e6c384fbfb5e9847e939725c627ab0e78dd5579f88ac",
"pubkey": "210226e008b1d7892f96f30a9a9f32d212fdd00b8cfa95b8447ea1064a4d9668d144ac",
"address": "n2Z7w76fXgjjxkKtMBdLxZy2nBJbVozvE6",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a91444953f3c170377c01431e5ef095f3e5c9b8425f588ac",
"pubkey": "2102b2f83ff521fd643df281aa9bf6e8f34dd1b6c962b482ba81631ecc2d473a4b3dac",
"address": "mmmb2xnPcz9Naa4dCKGyZuTtda9T2YVGBU",
"scriptPubKey": "76a91426167c1ac13a0844c66ab3e24f7c5bc4ba27b72588ac",
"pubkey": "2102a18063e6ce58b90027da9461a74c258bc50e9fd1eea3c01bb679d633fd8a8e82ac",
"address": "mizLucYkw6s8sGbnVs692duQ19FcigHeDU",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914f6ee39b721c9ae43d3f979c5cee27ee75c174e1f88ac",
"pubkey": "210326006926c379f964b02e7e35f58e1258dfb5154b8d8e2b3ba5888daa5ae9d4d5ac",
"address": "n42buSQMS31rQj3cxEWcWTGguMQjHHRR5d",
"scriptPubKey": "76a914e8c0df89e1f0c20edbf09bfa75ce7ebb4d2b78bb88ac",
"pubkey": "2103f7a8b1b8c36e493b24500ee97dc0ac9a10d170da0053cb1e8b806cf8a142d742ac",
"address": "n2je7d7LLgV8ohXuonUuJzWDKhf3URjnZ9",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a91451ad4005f8dcb8115276d6afa4d0628e729a627888ac",
"pubkey": "21036a01eb2dd95f9446078d19afb877bbff8326b7060e5d6f1783d70ab91e8878ebac",
"address": "mnxpaDhA5KDJXyJSU64QFGj83C1vqz36on",
"scriptPubKey": "76a914bf271deb00a355127165ae400e0e3eb8275bb1f788ac",
"pubkey": "2102709f636d2d431b0579a404aa125d52789b17a126b91f104c8901a8e2b197d8a9ac",
"address": "mxwgDafRnh6eCgvddecWzsGbYECh2Ba2fu",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a9140f339cf0d1ef0fff173e9e393030225d2917570c88ac",
"pubkey": "21033c41775de50f1f8baed7c2c8cec236d5fe0ac91e0be8c1aba8110847a7798fffac",
"address": "mguLG4xV5gNZ4MzW6mdVwoFQFZdZADWC1c",
"scriptPubKey": "76a914a61eb963e9e4bf0c938d8de55954717fdd58d29988ac",
"pubkey": "210364f8aa714cd47ed76b7a08084dfb69b9c01f2747467658840b4e06231c4a0c6aac",
"address": "mvfKGejVN33QitNvD1LA7Labr3Qn1xxZvV",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914c835a174d4eec93445ac62e9c5ed27fd037a6b9088ac",
"pubkey": "21037e796bab0ba917fc435a6034c3bc80b1f8d654ff6e946a9fa2059d843c5b21f5ac",
"address": "mymZgkCnr7VY2uuDibAqgXSwh6e8Z5FDyL",
"scriptPubKey": "76a914ac24652fca5a0fa4e1c6b4431de7d849561760f788ac",
"pubkey": "21029ffff5d062f9a0d0ab338e7c9132b8d3eab0335f29245d23c1a4fad78e455f90ac",
"address": "mwDA7qSAaKW4QYi7fkniNhZftsqvtgXz9N",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a9140ce5c65ed65af7b14ba04fc87f4e47393979398288ac",
"pubkey": "21027c056d0db6f4fafbaa80b32ee62871cb39656c1dc2b99c2e959b52ac8a9cf8f7ac",
"address": "mgh9fPrYTCDRVD9Q7QA5GdEtptEfvsjd4U",
"scriptPubKey": "76a9142ca121cd2a50548f978f412486f802600ecc183288ac",
"pubkey": "21025ff987df7dd952842637a797e1cf446f13df37e6cf8ce9b983f9fe8e8d488947ac",
"address": "mjaw49MCJn2JfddhY4deWMUPq8LE7LFfKC",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914625f88b30db7ee8a0e4490bde1a604548afdfafd88ac",
"pubkey": "2102a4f97a5b2ed7c56085766df1435ee69b828521a66e29dbd3fca7821fe945f6f8ac",
"address": "mpV6xfrzZJmzoyyr43kXeegPjzmUE3TTrK",
"scriptPubKey": "76a914af9ee07e366d3170a125d867054aabc89d36534d88ac",
"pubkey": "210316bad97c981461bd5823a79f588bac8bc1020703f6f8808bc8c99c77cda3f22cac",
"address": "mwXYsayqhiMF6NZjwZvXg6dYp4s38nphnx",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a914775389f5aa93020174fe521cca8dc7910aa8242f88ac",
"pubkey": "2103fbca7efb45acb198e67f65758798a14dd7c713d4b1429795981412b073546b5fac",
"address": "mrPtnGRT7x84PZsWg4rEUmX5dCJtYrQfXj",
"scriptPubKey": "76a914b37f77f3841ddb6871720aab8f0e67f506b4936b88ac",
"pubkey": "2102f7e40e79b9566610f6566b2889d4585f6a8ffa7f681cae77e58f8fccf81ac82aac",
"address": "mwt3x4aLAtfLm1bk5tShcynrJvxPghPbbu",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a91403cf9a4809c849adf309cc34216ffe4d595f741d88ac",
"pubkey": "2103f8bff72a1ef939b77c818b1f30a6a9844fd59838269b04a256a07d6cb0ce3accac",
"address": "mfs727eDFVX5YCPTGkszUT6GwWtwH6UqPp",
"scriptPubKey": "76a914d3beb698df6b85ca1a8ef5e7c70dd938ec5f9dc088ac",
"pubkey": "2102f86228a4ac5e004007c05c0ebd69dde7a2ab37724540ee4e313a026134f71c9fac",
"address": "mzpZLX9QEiitRVnr1nkBBWvtnWssxd5mBC",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a914a0e51eedbb2524995b9d2bccaeedd5039682f95c88ac",
"pubkey": "210385688d6694de03f053bd3cf767c4544783e7b74b105456e3baf6389db62bc68fac",
"address": "mvBgtLghJAmqqCr6G7heRGorMU34MioLZ9",
"scriptPubKey": "76a914e1392a027c89f235979f56042a2e748641527c2d88ac",
"pubkey": "2102f53847b509ebe0c7339f82b2439bcca78c44262985d6408d1f1b4ff8d03b5c9aac",
"address": "n23pp3h1xgLwaBmzPDtzqVW5RY7fcYkaEm",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914030784af397da4022a20ef0c0b0dca46d85ac98a88ac",
"pubkey": "21036d1b64a3dd30cea471f50ad1eafbf9e237cf1fee2ea5d5e6c1b4cab3888fde3aac",
"address": "mfnyL1Y7T76KKEw9sGtoZ1d6viLmajz3JR",
"scriptPubKey": "76a914e55e982b86522141f3e6c8532041878f2414df7388ac",
"pubkey": "2103e97cb128bf9caae0792e88ca08a83cbf64cc8975e2bb0b170261361e3f6a3f58ac",
"address": "n2RkMX1qGj2PKx2dnUuay4224UA4JqcTWV",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
}
......@@ -180,161 +180,161 @@
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914456dd3f99da4ca60c9ada51ca787125673cf2a0c88ac",
"pubkey": "21022b3d3de0229d4694aadb56e2ccfc71f689daf7e3dd3a00f32a076326d5391d4bac",
"address": "mmr4VGvtaFRhV6LvdX8ZtbHRvQUMtEVGFj",
"scriptPubKey": "76a91493a1c7440314befbffb040be06e9b264057cf3f988ac",
"pubkey": "210235369877ea2301816d6f2c991aa4772fcaedf773cb6fc15d695a4d8deb586d1cac",
"address": "mtyZRp4ATSLjELFGRE5hVNVbyE89cNfQbo",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914c1a8a44fe2f983223d40893825f5b33f760bc47388ac",
"pubkey": "210287776efbddd2afc3b41f8daaf04b4ec1faea0c8c921e6ab87de8a0227f3deed6ac",
"address": "myAvjWzut6bN3NqdhDhiDhFYFJiT9im5pX",
"scriptPubKey": "76a9146ffea60529d53e4bf051e61da29733afed32b6cc88ac",
"pubkey": "2102a6ced40cb152b7c9651539458b63fc6bfcc90249bed7c105fe174062498372d5ac",
"address": "mqj8Mdrk9YvGix6vkqn2P9ZqCpypJ6qGfS",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914aface9ac31f5d4117f8276c62969d1be1b85f91a88ac",
"pubkey": "21036bad2e5d638f35da45ddcb32a052b38d10c6ad829fccd4c4375acd4efd3cc6c9ac",
"address": "mwXqgpEXNe9f8GKKrvW8HdJEcPjNwG8kYq",
"scriptPubKey": "76a914815c9d2f708957b24599be3cf7bac2b25d3fefa688ac",
"pubkey": "2103c27045df5673cda5da2a37b19321d01cfc04ffd8b70e13d9f6fccb75332790f8ac",
"address": "msJxQjXYHuU1kHZ1u7gZK3q4kNWf1TrtaV",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914817f08fb70ed589111371c636a7d374d411dd80e88ac",
"pubkey": "2103a2f13d1829dd5cd0d01519672c2d2741cf913e69834b415731cea7131df1e4c7ac",
"address": "msKfeMQmENRzVYzU5NbLGxmcHn5UfwSeRx",
"scriptPubKey": "76a91448680165ce60d2b12daecf94ef6a6c466c46d10588ac",
"pubkey": "2102052ee40417c9f3caff77ea334449d8873e139623543e4dc18bb3268013efae66ac",
"address": "mn7oYHsznr9ZvDfFkKnBH2Q1wyELioJkS7",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a914d5f4687b53554a4352a73e3bed4d5957004fb39b88ac",
"pubkey": "21027a927ddeb117bbc56911bcd121e259829c7afb4ea2a5964ee591525617d7c66eac",
"address": "n12F1gtjPoKGkqVTQjSM8yEfvxTUG7LTqM",
"scriptPubKey": "76a914fdfbf1ba850a7d6be2461d3619f10e1891e5b0aa88ac",
"pubkey": "21021477126739641cfb308b0941300b1beaa77399d862ee8189a7c6744da92cbca9ac",
"address": "n4fu4yqBqeW1GJpXbLkzWzc8FDjPermaAb",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a9140891991e986847aebc3bc3b2109438156f5ddf9e88ac",
"pubkey": "21033b0e03844d3d6c4b49f3e12c8cd85eef492b4bac26f5cff3938fec790fcbff48ac",
"address": "mgJG7vXGm3wENx3KcZPdD8K8JrrDDninmM",
"scriptPubKey": "76a9148ab922588dd01043d23580b0e1b426b7f02dd04b88ac",
"pubkey": "21035bab9733917e0336cf66caf931fe4d400952f985c81f7ed928f345379af9807eac",
"address": "mtATKsdoFxb3RcGC1LhMStpCQ358K57Z5i",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a9146f28f9a73929a7e2a7ac3558df2a7c17c86208ee88ac",
"pubkey": "2103116d98977e54d6ac6e846eda5d40fd3e91c7c6e735dc1d44cd613a554018bbf1ac",
"address": "mqeiPMWy3GFp4kXFvXWaStad2bWESdVTz4",
"scriptPubKey": "76a914026875eff018603fa068d96168d31bd1f3c3226188ac",
"pubkey": "2103090c06f41a290a4ce7f8760b51e7d5638e4a3c1467496563c22d5197490ec958ac",
"address": "mfjgnVbWP73HMKABohGkGcPifBHeB3cYEN",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914883c8965701df7e965945b7ab1f70f1434dfdfd488ac",
"pubkey": "2102ba89fa0c8e2a2cabc35abc203a967fda01529bea4a16b2f288579605486749e4ac",
"address": "mswJiJkejgyu2zf2sNzCCFNMwAq254pKxU",
"scriptPubKey": "76a914b51af4708f40dd4100cff375f8ccd61a6ff36efe88ac",
"pubkey": "210299268a132c5dacc0b77ecdfae0cc21be89d75221d02ca92af9fc276d78ade623ac",
"address": "mx2YtdXexoP1yYiSmxPsxHTKxj8D958S9K",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a91482f16f39bd3111025a4223a5c034e30fac6208df88ac",
"pubkey": "21030124ccce859e0925a3e1e32a402b2529e4a09c22eee2d7b126f7abad62a15a7dac",
"address": "msTKN9rCGtBGYsyyBtBBPzkXURpBDYR3a9",
"scriptPubKey": "76a914786820a8337394e5ed805dff7d6a69673a71d68488ac",
"pubkey": "21039f52f493d41c19ef1133f9db2e5d19b22bacc1e26c67426ae972ff8c072c5ed4ac",
"address": "mrVc7z1rxM7yDVG34fQ8dznecwJ5L1mgvb",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914d455928a0a2ad8d4e1f7284994e211e5d9ed7fa388ac",
"pubkey": "210344b20ca4915ba40cb781cfb8fa531099bd5fc83391d3b216a018324252e14052ac",
"address": "mzsg4Q31FtJicWvXsAEZ6hYMdTDLe4Wr3L",
"scriptPubKey": "76a9142e51f7c055655851494c93c6e533e4b20747125088ac",
"pubkey": "2102fceec127b2cb8451db20e402cf879eece486f092f861afe599284c0805385604ac",
"address": "mjjsa6iMUQEiST867EFnRw6w8V4LRvFJ8R",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a91480a609482d416d4bd838cfc497cdd47b47210fc988ac",
"pubkey": "2103327c9d2af9d8cb852db4152329c5a538efa6a13b6f378543e502ae4cb79721dbac",
"address": "msFBh1X1gg9NTdU2eWvJ4JGtY4gK7y6h6Q",
"scriptPubKey": "76a914682618d9ffb2c8758417eae2f57372d01c90c73188ac",
"pubkey": "21024f952dcfe6019ed11f99d944aceb03f53869adbd5987539c36697ad5d956cdeaac",
"address": "mq1eD32D3Cw8iNaCao3fUJghoDkmcQPZ69",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a91468061453b2f101b590c98a7ff61c1e922f900e8d88ac",
"pubkey": "2103efd98ee5480e422bb4e1d1cedbf3473f581fd51c168f6cbfd046551c45aebb8fac",
"address": "mpzyrQexNHnyiYcLDWHSedkJsujMkDBvaa",
"scriptPubKey": "76a9142651e169c569d61e74253338e94efe7f3a93006e88ac",
"pubkey": "2103b0b71467bf794d1bfd177dce0133c8ff96b037dc2518127831abff73e4263454ac",
"address": "mj1a4W4W4THJsDFRGTameyc4zxu38fhSka",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a914424eab42eb4c2ba501a3bae26df80eb2b64cf24788ac",
"pubkey": "21021b72bd8386602609d9511a95a39a0d0cf6ab980644f28bbf05adb1613bdaf477ac",
"address": "mmZZ8jQwDYiW9TEanzHNVaYR67r1MDSpm5",
"scriptPubKey": "76a9144748c5b528977aa17abd508da865bf99f075bd6d88ac",
"pubkey": "2103cb2efdc2d97e48405fa37201e9ac6ca8157b12dd57f7c6864e613c6646681e5cac",
"address": "mn1sSytkDPgccBcJB2Jm4soWR1YPuAptTC",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914c1ffe8b261465de0ca8d97e43e4973f3dc5cc38688ac",
"pubkey": "210372ae73b14b17cf50770e46e2a10f6a04ba1f5488fb0156a4faa177a64a97c41dac",
"address": "myCjGwj8rsZUAEiQZ9ZAEKg4BSkjru9uvB",
"scriptPubKey": "76a914f1f9275756296060ec8cff109f0df1b004d1c4ac88ac",
"pubkey": "210343bad5b299b9bc025888702be59e74b1202e209c5f2967a9c06a72b7a7669112ac",
"address": "n3aPcnYdCE5hnEjGCfQbvGNijwv9ioqquA",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a91487b0bc332743fc8ae60a50ecdc41bdcfa32ee4a988ac",
"pubkey": "2103affb62b32d8433f3bb25ef83bf9fce130514c0b16715d967bf25f7722c42d412ac",
"address": "mstREj1CUYDTcYM74MxcCUqK4gXsLwtYt4",
"scriptPubKey": "76a9144bb3093e195c9efaea6a8082bd51301f985f874588ac",
"pubkey": "21024a0e1edd050b705a0350144d48101d3680ad8d975329b3ef8d75ea418989d0a6ac",
"address": "mnRDT63sStiyBvPoy1Gjgz5Ep4ToRnWJCP",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914f3d24b2e49d92750983143f8c75bdf9c2af58ca188ac",
"pubkey": "2102e7fe08a9ac2f6d91b5ee0c01393cb3c65f432ee966b1e6e2b28ab91060a460beac",
"address": "n3kAR8Tw1Lt5BirnATXqkvAbQJkshaUyhQ",
"scriptPubKey": "76a914ffe7ca925781785fc1a40b1730cb0534c492b4b188ac",
"pubkey": "21028e33f955b0f61fa221e2981671d1017c169bedc28c3934c6273d9e35f5fe1283ac",
"address": "n4r4H7U8s7ZKzD2tVW5RtYGv4mYcJaSRov",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a914b7747cdb2a5417ccd4141f76ec623c9456c3660188ac",
"pubkey": "2103107d9e7062b26a02db9dd0f48c2d84c4d25672ef436c0262ffff7e2526610924ac",
"address": "mxEyVsGtmYRLQxit4jbtoKRot3W7aEVKnn",
"scriptPubKey": "76a9141fa50c5229f42ea94badefab86fd417d5f66963088ac",
"pubkey": "210348d2be87ea1982238d5d4710c747289a41c08b3a986db679ae23bd536591c928ac",
"address": "miQGxkD6NRXxCHG7KYaeAwrHiUD6qFfKrA",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a91453be5b20d92cc8aed4243b67f6dc17c389c4127488ac",
"pubkey": "21028655010deb140daa6316b648fbb0f7bc98ff717385dd7970bb6aa42dcaba34dbac",
"address": "mo9kR97GN4H8JXzruBvvuQjRZs66stHzEt",
"scriptPubKey": "76a914fccacd0c1f08ff2ef2d908473c35a9f910e454ae88ac",
"pubkey": "2103f1f239bd9bc31a39bbd83182fc962696daf480265b1edf5a37acadcab1449b51ac",
"address": "n4ZbXFerRDb8dGJeMh6fE2sa6nyCufNtPP",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a91424696f8c29cfe63de77498e970b414d3bea31e3088ac",
"pubkey": "210218998492a5efbaecc555dc4b2949fcd1d6a3e04beaa7bbb8403b0d1f1a812202ac",
"address": "miqUvmD7b3xBVs1JxdjRBv7ZiKwXXDVmAo",
"scriptPubKey": "76a91419148f97c50e5905031e75de1b766d64a6fbe6b588ac",
"pubkey": "2103c3527e2412ee8e804451f7d63f2531701102713ad3597d636088988c720cbab8ac",
"address": "mhoZpSsNJtthUphfmPJ7ZijiYQfTMZju6A",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914c35f87c81b060942731f02bcdd4749215764586b88ac",
"pubkey": "2102f1b1b0515cb83ef41f3461e9f085c935a99cb62f0229e3aa219757bd13f88072ac",
"address": "myKzW2erCx1tcmJKsek9SrcTkaJSjbLVa5",
"scriptPubKey": "76a9147501dd007c71879303b24bde4a5dab4a1a589f3788ac",
"pubkey": "21026c94e7470db199e76220b79f0f6f7d8b29caf18720dddc8aeafa5e59d7dcc0f1ac",
"address": "mrBdaxjZvQUYZ7T6JpursqnFRJu9tVK96D",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment