Commit 1e7757b6 authored by Pavel Pavlov's avatar Pavel Pavlov

code research and analysis Stratis

parent f0168c8d
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using DeStream.Stratis.Bitcoin.Configuration;
using NBitcoin;
......@@ -18,6 +20,7 @@ using Stratis.Bitcoin.IntegrationTests.Common;
using Stratis.Bitcoin.IntegrationTests.Common.EnvironmentMockUpHelpers;
using Stratis.Bitcoin.Interfaces;
using Stratis.Bitcoin.Utilities;
using static Stratis.Bitcoin.BlockPulling.BlockPuller;
namespace DeStream.DeStreamD.ForTest
{
......@@ -27,7 +30,97 @@ namespace DeStream.DeStreamD.ForTest
{
MainAsync(args).Wait();
}
private class TransactionNode
{
public uint256 Hash = null;
public Transaction Transaction = null;
public List<TransactionNode> DependsOn = new List<TransactionNode>();
public TransactionNode(Transaction tx)
{
this.Transaction = tx;
this.Hash = tx.GetHash();
}
}
private static List<Transaction> Reorder(List<Transaction> transactions)
{
if (transactions.Count == 0)
return transactions;
var result = new List<Transaction>();
Dictionary<uint256, TransactionNode> dictionary = transactions.ToDictionary(t => t.GetHash(), t => new TransactionNode(t));
foreach (TransactionNode transaction in dictionary.Select(d => d.Value))
{
foreach (TxIn input in transaction.Transaction.Inputs)
{
TransactionNode node = dictionary.TryGet(input.PrevOut.Hash);
if (node != null)
{
transaction.DependsOn.Add(node);
}
}
}
while (dictionary.Count != 0)
{
foreach (TransactionNode node in dictionary.Select(d => d.Value).ToList())
{
foreach (TransactionNode parent in node.DependsOn.ToList())
{
if (!dictionary.ContainsKey(parent.Hash))
node.DependsOn.Remove(parent);
}
if (node.DependsOn.Count == 0)
{
result.Add(node.Transaction);
dictionary.Remove(node.Hash);
}
}
}
return result;
}
public static Block[] GenerateStratis(IFullNode node, BitcoinSecret dest, int blockCount, List<Transaction> passedTransactions = null, bool broadcast = true)
{
FullNode fullNode = (FullNode)node;
//BitcoinSecret dest = this.MinerSecret;
var blocks = new List<Block>();
//DateTimeOffset now = this.MockTime == null ? DateTimeOffset.UtcNow : this.MockTime.Value;
for (int i = 0; i < blockCount; i++)
{
uint nonce = 0;
var block = new Block();
block.Header.HashPrevBlock = fullNode.Chain.Tip.HashBlock;
block.Header.Bits = block.Header.GetWorkRequired(fullNode.Network, fullNode.Chain.Tip);
block.Header.UpdateTime(DateTimeOffset.UtcNow, fullNode.Network, fullNode.Chain.Tip);
var coinbase = new Transaction();
coinbase.AddInput(TxIn.CreateCoinbase(fullNode.Chain.Height + 1));
coinbase.AddOutput(new TxOut(fullNode.Network.GetReward(fullNode.Chain.Height + 1), dest.GetAddress()));
block.AddTransaction(coinbase);
if (passedTransactions?.Any() ?? false)
{
passedTransactions = Reorder(passedTransactions);
block.Transactions.AddRange(passedTransactions);
}
block.UpdateMerkleRoot();
while (!block.CheckProofOfWork())
block.Header.Nonce = ++nonce;
blocks.Add(block);
if (broadcast)
{
uint256 blockHash = block.GetHash();
var newChain = new ChainedHeader(block.Header, blockHash, fullNode.Chain.Tip);
ChainedHeader oldTip = fullNode.Chain.SetTip(newChain);
fullNode.ConsensusLoop().Puller.InjectBlock(blockHash, new DownloadedBlock { Length = block.GetSerializedSize(), Block = block }, CancellationToken.None);
}
}
return blocks.ToArray();
}
public static async Task MainAsync(string[] args)
{
try
......@@ -43,7 +136,7 @@ namespace DeStream.DeStreamD.ForTest
Console.WriteLine($"current network: {network.Name}");
// NOTES: running BTC and STRAT side by side is not possible yet as the flags for serialization are static
IFullNode node = new FullNodeBuilder()
FullNode node = (FullNode)new FullNodeBuilder()
.UseNodeSettings(nodeSettings)
.UseBlockStore()
.UsePosConsensus()
......@@ -53,18 +146,25 @@ namespace DeStream.DeStreamD.ForTest
.UseApi()
.AddRPC()
.Build();
if (node != null)
await node.RunAsync();
//(node.NodeService<IInitialBlockDownloadState>() as InitialBlockDownloadStateMock).SetIsInitialBlockDownload(false, DateTime.UtcNow.AddMinutes(5));
(node.NodeService<IInitialBlockDownloadState>() as InitialBlockDownloadStateMock).SetIsInitialBlockDownload(false, DateTime.UtcNow.AddMinutes(5));
//Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
Mnemonic _mnemonic1 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
//Mnemonic _mnemonic2 = node.NodeService<IWalletManager>().CreateWallet("123456", "mywallet");
//HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
//Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
//Key key = _wallet.GetExtendedPrivateKeyForAddress("123456", _addr).PrivateKey;
HdAddress _addr = node.NodeService<IWalletManager>().GetUnusedAddress(new WalletAccountReference("mywallet", "account 0"));
Wallet _wallet = node.NodeService<IWalletManager>().GetWalletByName("mywallet");
Key _key = _wallet.GetExtendedPrivateKeyForAddress("123456", _addr).PrivateKey;
//stratisSender.SetDummyMinerSecret(new BitcoinSecret(key, stratisSender.FullNode.Network));
//int maturity = (int)stratisSender.FullNode.Network.Consensus.CoinbaseMaturity;
//stratisSender.GenerateStratis(maturity + 5);
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));
......@@ -84,7 +184,6 @@ namespace DeStream.DeStreamD.ForTest
//Transaction trx = walletTransactionHandler.BuildTransaction(transactionBuildContext);
int qwe = 1;
NodeBuilder builder = NodeBuilder.Create(node);
......
......@@ -2,11 +2,11 @@ regtest=1
rest=1
server=1
txindex=1
rpcuser=72bd1ed09d10a2a2de2cdab36417713892497247
rpcpassword=72bd1ed09d10a2a2de2cdab36417713892497247
port=13167
rpcport=11254
apiport=13638
rpcuser=f8ea820eaff15b70836adb49d67e6836d3b1ce81
rpcpassword=f8ea820eaff15b70836adb49d67e6836d3b1ce81
port=11680
rpcport=11647
apiport=12790
printtoconsole=1
keypool=10
agentprefix=node13167
agentprefix=node11680
__cookie__:ed7b9212f66c0994d74fed43687126831c6238840af33ec19ee19a2df7e14137
\ No newline at end of file
__cookie__:5ec2c47925207702410fc0fef36bf1e58d7028ae14d9010327102c9a92becc9c
\ No newline at end of file
[2018-07-25 14:52:15.1662 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-25 14:52:15.1662 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-25 14:52:16.0255 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-25 14:52:16.0654 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-25 14:52:16.0654 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-25 14:52:16.0765 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-25 14:52:16.0765 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-25 14:52:17.4801 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-25 14:52:17.5167 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-25 14:52:17.5269 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-25 14:52:17.5453 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-25 14:52:17.5453 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-25 14:52:18.4078 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:11254/
http://127.0.0.1:11254/
[2018-07-25 14:52:18.4173 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-25 14:52:18.4173 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-25 14:52:18.4173 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-25 14:52:18.4473 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:13167
[2018-07-25 14:52:18.4473 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-25 14:52:18.4782 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-25 14:52:18.4782 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-25 14:52:18.8851 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-25 14:52:18.8851 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-25 14:52:18.8851 10] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-25 14:52:18.8851 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-25 14:52:18.8851 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-25 14:52:19.9005 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-25 14:52:19.9005 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-25 14:52:19.9005 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-25 14:52:19.9192 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-25 14:52:19.9316 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-25 14:52:19.9316 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:11016/
http://127.0.0.1:11016/
[2018-07-25 14:52:19.9316 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-25 14:52:19.9476 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-25 14:52:19.9476 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-25 14:52:19.9476 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:11524
[2018-07-25 14:52:19.9476 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-25 14:52:23.4804 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:23 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-25 14:52:23.7961 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-25 14:52:24.9657 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:24 agent node11524-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-25 14:52:27.2913 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-25 14:52:28.5257 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:28 agent node13167-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:53:16.8332 11] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:32 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:53:16.9189 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-25 14:54:05.3880 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:53:24 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:54:08.9765 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:33 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 105 Headers.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 1 Consensus.Hash: 1bc770b0838bb60b0029537c56e24930b69d08b25e46b0139386b3e5aa3271ec
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:55:30.2543 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:54:16 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:55:30.3469 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:54:16 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 105 Headers.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 1 Consensus.Hash: 1bc770b0838bb60b0029537c56e24930b69d08b25e46b0139386b3e5aa3271ec
Wallet.Height: 105 Wallet.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-26 08:58:57.8061 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-26 08:58:57.8061 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-26 08:58:58.3068 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-26 08:58:58.3221 4] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-26 08:58:58.3221 5] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-26 08:58:58.3403 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-26 08:58:58.3403 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-26 08:58:59.4163 4] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-26 08:58:59.4512 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-26 08:58:59.4512 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-26 08:58:59.4634 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-26 08:58:59.4634 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-26 08:59:00.2124 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:11647/
http://127.0.0.1:11647/
[2018-07-26 08:59:00.2294 5] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-26 08:59:00.2294 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-26 08:59:00.2447 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-26 08:59:00.2628 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:11680
{
"name": "mywallet",
"encryptedSeed": "6PYN81HCB4YykciHjfzFyH5YYNmd7Drqf4iLhaUZPewyKncKzCcugZzK1w",
"chainCode": "sRbXJSrmikfC4O82Ph0h4uYiUQP0XvvQ8oB13cLSkJY=",
"blockLocator": [
"4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80",
"6ce4c94f775ae8426d469248ef800478878c97da06cf01ef758f5afec5e9ca7a",
"2ab834f66494bc459c093d82b4fca2763c8c5747ffb368ebb898e5e602d8b09f",
"5890dde2328f8d74bd038504087cb7f585eb3d4fa52a4f4435a22222b0c32b8c",
"69f369cb460c38e80c280b4ff599162859902a4e54c8d95f430d88a58994f7a2",
"768de581bbc9a4e7b70aa6f7c00306307a26aeb9c6d57b27c463b27b54fef9fa",
"4cd0926d47c1940c7889d449c8fe71df9f1cdb3b85c57c60546242e3854506a9",
"4ba01d7b6fdb2bc28b9db255e77afb9880b6ec624e18cc7710cf478aeead8e1e",
"5625c1e73d99f61745fca5793f513b89cf88afa9dc03ca895776a4b713a58c28",
"2fa766867f349f4b338dd1e386c2dddb2652e4c5da43e83677112318ee054897",
"13b23048a85baf22ef32fcb22f11aef6a5191e3e3c512c9838c6622f0ebdde8f",
"0990d2d73afa9a800478a341f96ed562a9e2bf2c72073e4459cab6f8b7e0e2cd",
"6c726b1c77d9d1934943b73c49bc0bf349828e4e8fe4e6c288e1d62f4e0f32eb",
"6d3a84f04b0d0c6d0a1483ee83bcfbe81fa52f52a08a3e73d7449da595ffbb7a",
"2778cb6bde50cce9937072f887b5951336d1b85a772286a687ce42093f32fd4d",
"6d158ae51779eadeee5d8b4a9473b00c34f4168a17b1b229d308b34888f82768",
"34bd21eb65a2264c31d457b34487c277a9402c32f39c6df020a2d283aa77ce39",
"0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206"
],
"network": "RegTest",
"creationTime": "1532530341",
"accountsRoot": [
{
"coinType": 0,
"lastBlockSyncedHeight": 105,
"lastBlockSyncedHash": "4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80",
"accounts": [
{
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDD4xdtuPLec1C84jySdb4Dz4f4SJo1KfyQJXxrne6Y5z9Yot2cyWMToNGt77hCa2LAttVVBygb8S19kpbUcsmTs9RuTxquDg9W9gPCsAmTf",
"creationTime": "1532530341",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914e6ac15eeea218da2848b332132ed30fba02d1a4c88ac",
"pubkey": "2102efa073ea656e20895f571122255453d08c204a3c6c40f71029d0123518c9dcbdac",
"address": "n2Ydru1JFvRWSdK7KDg1zGPfAMB2z9eRcH",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914ecfe6a12d50c37a26f08afae419d1eddec4f4afd88ac",
"pubkey": "21036b1da8dacf8a84b5405401611451f35eff0fa48c3bc4219e8b65ddc62c4cc0e9ac",
"address": "n384YLxb58ZBGAssPQm2oLmJibmpk22has",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914079a0009410846cdfef76143a5d3054a15fd9f4488ac",
"pubkey": "21039722711a0062c0f11666ad7fa822238bfde024d6c92ad54ce7cd272df97c07a8ac",
"address": "mgD9WWn8DUSL1zk9S5evykA55z2mH7sT9R",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914adc34194ae6a189c33f577633a02dddd95ad68d888ac",
"pubkey": "21034ef0c128431ddd1fa71266822fdca59d49da0f2ef13888b39765d15435da34f8ac",
"address": "mwMj6srMmMLvqH4fyxQn7KEcoMQuWrLqFa",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9146293932fce8c62b7059a900183832cff05f638d988ac",
"pubkey": "2102bc657450aa4d557b52caa53ffee5f8ac1386a9cc7c2f2931aea53d364c2d2260ac",
"address": "mpWBJYJiBWHtdsXcMHNFKY4NZqsJp3dDAT",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a9143b0d8d8789877ef7ae2c94a8a729e0ac2c58aa2888ac",
"pubkey": "21021869f462f43d4a6c8ec2b42eee0dfee7ed8b8a3c2684b8f478c75d9bd329f080ac",
"address": "mkuCQ3JVc8sEDxk1EUEJqfT95a6DKwk3SL",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914e528645dcf0a774e20a05f3d0a71021f493728ec88ac",
"pubkey": "21024ca133537a85fe113cbbd07f1aa680112aaa8da6959c33b9c67ad949d69c3704ac",
"address": "n2QdRUMdisR8au63hBXGZbPf5KoBDWtbSi",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914f7a419550cecb0324c6f931ec67e3627765474ff88ac",
"pubkey": "210202e754ed3f899a0122fc4e3ee0d743d322e8967f0a0e51c50bde2a3520e69b50ac",
"address": "n46MnENWBMiz6j2BnMHQwCx2PPNHJWKVxY",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914f28847f676a6eaf51176a78804fedfffa2f275ca88ac",
"pubkey": "2102991a2fce28077eeb43f34f480259ffffe0877ce53d08ceb6fe17a77cdaa6ccc7ac",
"address": "n3dM5THvo31JaLZJfEdT6scvWnJ6eS3UzU",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914d99fac3824604bfac52bb260dc8bffd09876a80188ac",
"pubkey": "21039cb58bc773b233ccc26bf84cbb351b64dd29beaa5d00cbac5de590faff93f4fbac",
"address": "n1MeCwJhhK9CJc3xo29eUenfCSWrJmxkdw",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a914e7f270a508fe9b5be513cd73e6973ecdbd1cd4b088ac",
"pubkey": "21024725c9e248f4000e2e7a85d073ac667e702ec70d6f74684f7b37fde0d3e3d458ac",
"address": "n2fNpPqnMh9guM48N9c7h9UqA1f1BQy4u8",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914f2d749e8368a0c331116a65b124bd2eb91ad5a7e88ac",
"pubkey": "2102fa328952e9b90db67eff598f041c1e9d361fb699a2134a876c05a6d3ea7acfc3ac",
"address": "n3eyizqkXcdRwrVSJ49uEJLgYzo1g9nLYE",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a91413bdb1cfa85c4796c0fc443dcb6275055917b91d88ac",
"pubkey": "210259a1a02e62b1c0cb89d3fa1c23003382936eae2e1bd209224dd78232ce5f09d1ac",
"address": "mhKLNufsjdecpX1B169Y9JFpDTTHpS8Anh",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914d6c5d2db9fc5e2702d531b62cd597747be979e1788ac",
"pubkey": "210278d926bd4eaba24e041ccb4acdab1db0d7891f0f4239f510f874137ec76de257ac",
"address": "n16Zt8mtjPLz1AYTkuSwbr1WaX46AjXfDP",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a91422790f5b20484586af1b833228ca46e03d51ffcf88ac",
"pubkey": "2103d5aeb6efb2f825fb8c36921b23bc7259d628468ec10bff610f1411229d2ed074ac",
"address": "mifEHyJ7XLPdEScRcXK2xsqGKv1gC6SKtk",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914149f0fa50e0115384761ad9966a80aee4253b71288ac",
"pubkey": "2103be9fb8ccff59503f29119eb0a60b1f216127bc9b9cc08b9feb6bdacf7dd46f94ac",
"address": "mhPzMegQUSjy2xDdUzjYXiTmkLFo9mCHRd",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a91440f46cfe626478c4577faa2fd11c4cc12173d6bd88ac",
"pubkey": "210252e128124751ea2fd3b0ac8ad0bdf481f7a54a51b2977c118fce60fb9c3fe570ac",
"address": "mmSQML7wyeG641rzMTHDvsQmLucHvePxHj",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a9149e4f302287b5f6bb466821adcbed5663fbb9c46f88ac",
"pubkey": "21037f1427d169f6016159c9600a0c833c8f753cea2b3c2c1eb3e19749a68757dbeaac",
"address": "mux1vShB64LeZRsdvVwoNdiRa3kkSmwCZL",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a914879e5fa198d20d0f2ed8cd69cb4ae92f8b85c22988ac",
"pubkey": "21038ca3571d63113e5a68a9d1bce78378637715817374809d755d1b3b275d70dee8ac",
"address": "mst3EwQuJ4626QbTWFPi9ocAwbBGPbdweP",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a91438f483f86363c0955463d16b22017af50a76677b88ac",
"pubkey": "2103f35112bcc0ce66751b1afc24fc8a3429549523db0b95e1ed69642a52909bc684ac",
"address": "mki742odq3pkk6m2RwusVs5CVnCMd1Uf6n",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
}
],
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914b19f2ad334ce6c4bc1b2d8af64083f9bb593c16988ac",
"pubkey": "21039e49ec5374741876a26b4c028510e76b222327035de2473b60d444132a2e64a1ac",
"address": "mwi8a9MaRc5nfBWC6XVxcMQcVdXNHgE21i",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914daf25926d9a15566f4843c14f7fe78e5e6a8c47b88ac",
"pubkey": "2103a074f506a8cceb5a3513be86f111d3b3bf5102634879fd35983385fb28f995b3ac",
"address": "n1UdvXP15mn7x5BVCssPtvNRoXQEh5t5uZ",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a91438d691fe5217574c6f535d6a1fdfe205e1a7acca88ac",
"pubkey": "210353f621225286a99389fac942a20e68f46d1bab85a9b043ef105ced99c13a2061ac",
"address": "mkhVBQEdv7mjW5PAPs3cxWqeMZn3N9rz25",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a914227fea8edd3554e6fedca796cdea937e1cb8606988ac",
"pubkey": "21027eae4b14221ccff6793153ca2524cda2a42c1293653bfacf8468b0b9e1a79787ac",
"address": "mifNWMQNjXRq2fAr7A9f7EgjEcrBEEoNKE",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9147979a628d4aca9cfdaa4b7de9d1d528f0fe3d2c288ac",
"pubkey": "2102f99ea8083c0e628ec583859bbd950938298ad2a370e241ee414b88b0b29a4155ac",
"address": "mrbFnbCP423Xr3YeLXKAVAuW3P4SkXoqaB",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a91406cb0bf7dcb9162e921f03380bc5d41008254f0188ac",
"pubkey": "2103d69592cad4ef46634d84f0c9134786a6492d5f9a6cc8a987f39258c63ec37b49ac",
"address": "mg8sb97ATFG5F4spzCbzNmz4jpi7UzMsB5",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914849e2d6453766767554dd1ffdfe2ab6e6d62e79488ac",
"pubkey": "210395802310237082312bb02fdab510d5dbb7e51e9127c79ad3e8fd8320b867ee5dac",
"address": "mscAyjB6TQ4gmw4NKJR23nGTu8StVyqe2p",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914911d73c8dde41d3b33212534782e52787ff3337188ac",
"pubkey": "21025b7950c230d33184ff1d448e789df4a21d071625563ed4b44a71abd328a7a3cbac",
"address": "mtkFZFTBytKXfbEqjhyiyViW3F6QxRmaKz",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a9145d02df13cec35c4fc9eb978cc1bcee9f89b9648888ac",
"pubkey": "2102f4570e62236d148f5292d14318a24d38c71b3102801a0bc38ae9c1133a0c8be8ac",
"address": "mozkaQHjEzEFfMUKW6gVsSnggekeVFoS48",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a9148dcea50ad6d7ab967e068c593a8735194bc07d3d88ac",
"pubkey": "210374b9692b44e12ef729bdb778d106d96a11c2b41b7f8022b45cb27a20a26cafa1ac",
"address": "mtSm82YEsDhfhTYsoqdp6RnWRKPKUkzurN",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a91489e0824b4ad7e2f934c1b09263a2e9e9b3be84aa88ac",
"pubkey": "2102a45447838d6b45e9980beaa7f6280eba858582bfce920a3f61be20f4e8edc5d8ac",
"address": "mt5ypVRdNykcSdjQ9cj79hGBkGAVe9sjP6",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914825147bd6533e6fca1bb0397fcc42747e38085d088ac",
"pubkey": "210237d1b1666c8fb9cb96ec4c047bdc41f6364f4934f1cabd86211d4eb8f78d5037ac",
"address": "msQ1WSZrqJL6xN93puTTpu9TWvcVztSj1m",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a91439edc962b4fcdf46f25c958b12c14e70645c045388ac",
"pubkey": "2102177a3560de6f0c8d76f6c7179631ae5c08d0398143ca00fc789cdd2d151580c2ac",
"address": "mkoFfhHFhZLhAbnbm2iPhfUMh9Vd5Eib8X",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a9147a13007f299eb05c1d4f375b57509a87639ce9e788ac",
"pubkey": "2103746edb4c1f339baeea5c8ffdabbe3c3aa17b04cd596fc421cc6af4949f744e11ac",
"address": "mreRVjbnFsj9cvjMvXaDcXQPwUDvBjQF9j",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a91421ce02273bb16949757ac36ee14c60e0e5d4503888ac",
"pubkey": "21033e3ea3ca0c81a4f4a31623d334e72fb6438b710edd4c1035a71b30e151e2edcdac",
"address": "mibhP6jsaWTAHTfK8jh5EWTxgzph17y9UC",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a9144704432893a684f638ebeb1428219e94cff7707d88ac",
"pubkey": "21029c0cb1a6e7a4986ccb62c2a95ac0f8217fd6776a9ee942beac283ae445e426b9ac",
"address": "mmzTNptJCedfodtsnvNtp66ajW8C9hdAi5",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9148bb985d6881e6cfbc088e91d265fec4ffc28b4e088ac",
"pubkey": "21036c53d04fe061f703733375a99b0c90135fa17d72c6d74f23265c58d04c60b0e4ac",
"address": "mtFkU4x43pgspM5zpTfPa6ezMTS1MtDJpJ",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914251b589ba74e4379c21a91677692af9102e89f8f88ac",
"pubkey": "21023a4a48428253ce31d98470fc7385c144f4fcd0f836072880a568c7cee0b3f177ac",
"address": "miuA4CCHiHZS3C4XG9xjBXsFVCF6NnU7EH",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a914a03cf6a1436d76915c8cd79ddaf22e6c28adbda788ac",
"pubkey": "210342f0afdc1f1fbf9b3adbe00d44c647dcd03a7026efd73353323098b50d9e35e7ac",
"address": "mv8DSZKYT3SRS8jDNQadXP6TztuW6MY2DG",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914cfdf7ad4156a6d469d874652c6c3fc6d738595bf88ac",
"pubkey": "21032aee031bfed78c575939db7ef389a14add53646063954f05addce6d2f5895a4fac",
"address": "mzU5tQph6aVCubHohmEFjodXNvz39HWvJr",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
]
}
]
}
]
}
\ No newline at end of file
regtest=1
rest=1
server=1
txindex=1
rpcuser=24633a316c7f32e05a289d1f6cf8a6c028483b2c
rpcpassword=24633a316c7f32e05a289d1f6cf8a6c028483b2c
port=11524
rpcport=11016
apiport=13539
printtoconsole=1
keypool=10
agentprefix=node11524
__cookie__:d5907bec5b991b8c0bb248c68e23d58c54a43da78a43dde9bc15b58becf4401e
\ No newline at end of file
[2018-07-25 14:52:18.4782 1] INFO: Stratis.Bitcoin.FullNode.Initialize Full node initialized on RegTest
[2018-07-25 14:52:18.4782 1] INFO: Stratis.Bitcoin.FullNode.Start Starting node...
[2018-07-25 14:52:18.8851 1] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading finalized block height
[2018-07-25 14:52:18.8851 6] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Loading chain
[2018-07-25 14:52:18.8851 10] INFO: Stratis.Bitcoin.Base.BaseFeature+<StartChainAsync>d__26.MoveNext Chain loaded at height 0
[2018-07-25 14:52:18.8851 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext FlushChain starting
[2018-07-25 14:52:18.8851 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Periodic peer flush... starting
[2018-07-25 14:52:19.9005 10] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext Consensus Loop starting
[2018-07-25 14:52:19.9005 1] INFO: Stratis.Bitcoin.Features.MemoryPool.MempoolManager+<LoadPoolAsync>d__25.MoveNext Loading Memory Pool...
[2018-07-25 14:52:19.9005 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext MemoryPool.RelayWorker starting
[2018-07-25 14:52:19.9192 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext wallet persist job starting
[2018-07-25 14:52:19.9316 1] INFO: Stratis.Bitcoin.Features.Wallet.WalletSyncManager.Start WalletSyncManager initialized. Wallet at block 0.
[2018-07-25 14:52:19.9316 1] INFO: Stratis.Bitcoin.Features.RPC.RPCFeature.Initialize RPC Server listening on:
http://[::1]:11016/
http://127.0.0.1:11016/
[2018-07-25 14:52:19.9316 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext DiscoverPeersAsync starting
[2018-07-25 14:52:19.9476 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorAddNode.ConnectAsync starting
[2018-07-25 14:52:19.9476 7] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeerConnectorDiscovery.ConnectAsync starting
[2018-07-25 14:52:19.9476 1] INFO: Stratis.Bitcoin.Connection.ConnectionManager.StartNodeServer Node listening on:
0.0.0.0:11524
[2018-07-25 14:52:19.9476 12] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext PeriodicLog starting
[2018-07-25 14:52:23.4804 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:23 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-25 14:52:23.7961 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-25 14:52:24.9657 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:24 agent node11524-StratisBitcoin:1.1.2
Headers.Height: 0 Headers.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 0 Consensus.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Wallet.Height: No Wallet
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Connection======
[2018-07-25 14:52:27.2913 11] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain starting
[2018-07-25 14:52:28.5257 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:28 agent node13167-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:53:16.8332 11] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:32 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:53:16.9189 6] INFO: Stratis.Bitcoin.Utilities.AsyncLoop+<>c__DisplayClass16_0+<<StartAsync>b__0>d.MoveNext WalletManager.DownloadChain stopping
[2018-07-25 14:54:05.3880 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:53:24 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:54:08.9765 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:52:33 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 105 Headers.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 1 Consensus.Hash: 1bc770b0838bb60b0029537c56e24930b69d08b25e46b0139386b3e5aa3271ec
Wallet.Height: 0 Wallet.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:55:30.2543 6] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:54:16 agent node11524-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
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
[2018-07-25 14:55:30.3469 17] INFO: Stratis.Bitcoin.FullNode.<StartPeriodicLog>b__75_0 ======Node stats====== 07/25/2018 14:54:16 agent node13167-StratisBitcoin:1.1.2
Headers.Height: 105 Headers.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
BlockStore.Height: 0 BlockStore.Hash: 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206
Consensus.Height: 1 Consensus.Hash: 1bc770b0838bb60b0029537c56e24930b69d08b25e46b0139386b3e5aa3271ec
Wallet.Height: 105 Wallet.Hash: 4c9a904263bff10e39b7424f33d1c4afe28aa0cfb074e6da66d0414a6f3fdb80
======BlockStore======
Pending Blocks: 0
Batch Size: 0 kb / 5000 kb
=======Mempool=======
MempoolSize: 0 DynamicSize: 0 kb OrphanSize: 0
======Wallets======
Wallet: mywallet, Confirmed balance: 0.00000000
======Connection======
{
"name": "mywallet",
"encryptedSeed": "6PYMfmQUf8qfoNWXWvzqx5fo4ZiMV6aQYnTrKWXVAXC8hTZY7Lzvggy24q",
"chainCode": "PWJCVWmMSPyQDF87is6by4mWDSo3mLdVBMyzMD0NZD8=",
"blockLocator": null,
"network": "RegTest",
"creationTime": "1532530345",
"accountsRoot": [
{
"coinType": 0,
"accounts": [
{
"index": 0,
"name": "account 0",
"hdPath": "m/44'/0'/0'",
"extPubKey": "tpubDDXQwDRLjRepLnBbWJYEuUqWPgn3H6cFTTX9NDUe3WmiXco8h3Tf9uH7AbgqQCDF6bLjwfr8bo8Vb5a31Y88F4PczLaB7q6H3KdsFPuJvS6",
"creationTime": "1532530345",
"externalAddresses": [
{
"index": 0,
"scriptPubKey": "76a9149805837738cc582880255175bff0b82ace6b74d588ac",
"pubkey": "21034e607ab39444b7634cec9a7621e0fb822fcbb85455895b98328a26a153fa3874ac",
"address": "muNmcJL2aktZPb4goTLzYMEN99ujG29tcb",
"hdPath": "m/44'/0'/0'/0/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a9143768f219885db47308ce968b966ae4023679a98388ac",
"pubkey": "2103a54c4b7a79abde5ea00f16f0c79171ea1d9805d2adc90fd972d93e28434bccd9ac",
"address": "mkZwBMpzD6sYjaVLLk5JRdmwG3RtoMDMzq",
"hdPath": "m/44'/0'/0'/0/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914cd6fe48421751ff162862255fb2ed172086b426888ac",
"pubkey": "2103f5d167193f12f382faad140ad666c81759b04d5b032496a7a1d847d507742467ac",
"address": "mzFCrpJ9gbZywz1ogAkwnYTfvBym3wDasN",
"hdPath": "m/44'/0'/0'/0/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a91477746fefb479eefc7c83717681321df0e20b9abc88ac",
"pubkey": "21026eecda5c2105ad77bd5afad67541642473a1288caf66e0e2103e6cb2fa3e630bac",
"address": "mrQaC5pUnsaDgEWDqeY2Y1YR6qtmywCP3Z",
"hdPath": "m/44'/0'/0'/0/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9145c3d0b11b14d2eca7d5eb7b09fbf53a8852ba1b988ac",
"pubkey": "2103ac487205638f2e93314dbbde3435d0b203d6befac53d883dd720a32b36cc4744ac",
"address": "movfb4VTq7rKMVo43Z7oZLy7mhuLxsZdFv",
"hdPath": "m/44'/0'/0'/0/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a914cde09770143efac72107f2e93ca33d2b18b15d4188ac",
"pubkey": "21020e3e686a3208babfd331691c5525d306e5da6699651d9cf355ab451f5f5ce348ac",
"address": "mzHXsGqymy1DQVfzh6e3xshv6weT33qkmV",
"hdPath": "m/44'/0'/0'/0/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914359352a20eccb3ae07b67f5ddcc944c9870a8fcc88ac",
"pubkey": "21033c9b794c3a78160cd8c77f28c1c857147bf99b791b4117a02038ca847b325466ac",
"address": "mkQEbPSAhyFKV6QqyP3pcHGa4EypBy39j4",
"hdPath": "m/44'/0'/0'/0/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914e2a70d58502242b2a064ad218bae9eafb881ed2088ac",
"pubkey": "21032419b2f0c062d0f4231680c80885cc56bcf5b13c79019d2f9f4d3915f2395949ac",
"address": "n2BP8Pkc3M4niN8vxQUryvhHB3byFsZ5UT",
"hdPath": "m/44'/0'/0'/0/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914a04ae82c17e7421bee337a86e2726d0e52b6cb6b88ac",
"pubkey": "21039205746a21ae70b904c850d89f9ea93ba29840a2203044cee71d315e70abca02ac",
"address": "mv8W9NUjFENZi9Z3y33boru62Vj8f6yDRF",
"hdPath": "m/44'/0'/0'/0/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a91499b61a17d96140a021ea17953c6087130995ae2488ac",
"pubkey": "21023c69c5aca1601ed7cb4ffadabd921b6768c4660fc24b99f6f0a100a0608c8c2fac",
"address": "muXhq4t8CckNcPXQGaQnSH3Lpeufa2cqdQ",
"hdPath": "m/44'/0'/0'/0/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a9143e2ecf1a74f0b9e020765be8a2c0f137bb4679ef88ac",
"pubkey": "2103091375097d057578f9fe9a2a81e52b7dbbac1f57bee29f0239ea97c24498454fac",
"address": "mmBkGHz9fRKMoy5FVQNr2bRK6SBewX2U5A",
"hdPath": "m/44'/0'/0'/0/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914607ae0efe269fbaca963978a0711aedcb883eb7188ac",
"pubkey": "210293410c5ffd818c5a0329112eae3308241a0a477fbcc4525030a3701a2b7544f9ac",
"address": "mpK6NEDjQaNbKZ1Ecxth2o8YxUk2xDioMu",
"hdPath": "m/44'/0'/0'/0/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a914b61d35c5c725eecd38c0c109ef8a35874ebe977a88ac",
"pubkey": "210339c3a84693e181629b0ce969430450b3efe01c5ee809b03c54aae0246dda80dbac",
"address": "mx7tGWwGgreeK4cd5D9t9VDQ6bq9LDkeZP",
"hdPath": "m/44'/0'/0'/0/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a914ac6fcc70714df089bdc69d4a6e4277e7abb5972588ac",
"pubkey": "210334d0f16a45c66f22f47c06497255bd5cfff821e3f460180a0cfe0c8316dfacc4ac",
"address": "mwEiSx7pDxzVDJpbx72Ynsfhk93PkWsiQw",
"hdPath": "m/44'/0'/0'/0/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a914afcb3aff42a185c7b323395cb9153fe5fed30e6188ac",
"pubkey": "2103777cb0ca17159e946aa7f9f4e169dcec0405713964969d746ff4bff84522da91ac",
"address": "mwYU1KkTqwCC2WphdrMJm5gcgcEhxJnJxE",
"hdPath": "m/44'/0'/0'/0/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a91465055b3609ebe23f25baa1630cb38cfaf2249fa888ac",
"pubkey": "210261e2b18ab5ac0860366211c50a3d483b4b0f7aa6e1df79a52d8a1a63ec7a54a4ac",
"address": "mpj6xbDHvA5j8dPFPRAjVszSJb2vb2p1nQ",
"hdPath": "m/44'/0'/0'/0/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9144b3063e37ab335201b17e3dc07b6ccfc065f92ef88ac",
"pubkey": "2102c8a11d2b447eb2c2f5ad3ed611e36fb8cadfd75a1fc6af447aed429daf5c1335ac",
"address": "mnNWwegz97WRQpDbqCxbPd8Q8t3Ebn3K6N",
"hdPath": "m/44'/0'/0'/0/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a914c6d49514749cfa1450dcde0ae56bb6a574b728bc88ac",
"pubkey": "2102e5459fd0931c823b594b540204d1c508a755356ade0548c19f5fec0797a1270bac",
"address": "myeGkWv7f2MLFyyPksrgNHR8o4nZPNB6wg",
"hdPath": "m/44'/0'/0'/0/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a9141296808532103097b6486cf1878761edfadae50788ac",
"pubkey": "2102b7d3d6e7c4e0440d787ebb34c99ba05e2b20cb5795233d805f25852ec246ae37ac",
"address": "mhDEka6o4jQGXFaWcpgom8wmvEUe5SKe5K",
"hdPath": "m/44'/0'/0'/0/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a9148a3517929dc795d092ad6005d59353c1b647c58488ac",
"pubkey": "210204be24fb65cfb95bedde2396e0517675ecdbeab3fdc9ddc5e0a96020bee1bd28ac",
"address": "mt7j9Rqf1QfqYXf8rfgddZNyqU9YvkZUze",
"hdPath": "m/44'/0'/0'/0/19",
"transactions": []
}
],
"internalAddresses": [
{
"index": 0,
"scriptPubKey": "76a914f7f14d0e5d8d1642364bbbe340253f20f65d631588ac",
"pubkey": "21034de7b254bec5e9d9c551914f08f45748e9f144a0d70aeb40907484f716f9d447ac",
"address": "n47xGKikNPEBz3LPYHYsZPEhvYXpYmpc4v",
"hdPath": "m/44'/0'/0'/1/0",
"transactions": []
},
{
"index": 1,
"scriptPubKey": "76a914ddddf530574933076b0044fdd3339754a4a167cd88ac",
"pubkey": "210360106a8964f5b2d380f1ca891d9a31094f04e969ef44403f09a23ef0472f6214ac",
"address": "n1k5XLwnetkd8dmCF1TeBhexiLnHi6o2Ym",
"hdPath": "m/44'/0'/0'/1/1",
"transactions": []
},
{
"index": 2,
"scriptPubKey": "76a914f0baa555fd4b76a8e0aa8269e2ddd53b40d8e3d288ac",
"pubkey": "2102e0fd588e88ef3018f34740def2f06b256f806d8e4fcc28538da524aec63d0ab8ac",
"address": "n3Tp4USM45rbXGnKMKV1EBsvpGnLXBLE74",
"hdPath": "m/44'/0'/0'/1/2",
"transactions": []
},
{
"index": 3,
"scriptPubKey": "76a91466dfb486f9423280fff98df05cc52fda1e5615e888ac",
"pubkey": "2102d7af382efe6ed2ebdba0512fe02bf69b0e298a2f383c095b98824459037d741dac",
"address": "mptuCvrt8Wvp5HujbqAPoTj7inEdPspSaZ",
"hdPath": "m/44'/0'/0'/1/3",
"transactions": []
},
{
"index": 4,
"scriptPubKey": "76a9145bf4238a570c0fd3044d1045c830e0573db77ce188ac",
"pubkey": "2103d99b8d991170c3ef1fc5b6ecf480a2965dbf27ae4d75590f92735f9ee4fe5ae9ac",
"address": "mouAFaEhprV4G5kN58oUKd7AToaTrHJDjd",
"hdPath": "m/44'/0'/0'/1/4",
"transactions": []
},
{
"index": 5,
"scriptPubKey": "76a914200b50be8e23c8891b532ad97a223f0a1c3b34d988ac",
"pubkey": "21031fb829ef58c8aed3ef2fec99a27e4934c7aa839ac5c949958bcd527171856835ac",
"address": "miSPUQCtBBCspRERwrnKhYtFKEcHzegXBp",
"hdPath": "m/44'/0'/0'/1/5",
"transactions": []
},
{
"index": 6,
"scriptPubKey": "76a914176f2031fbb6bd67f164534cd38dd529268897d488ac",
"pubkey": "2103475962d7c0b695a7fe2fcdb030237b7495b8898d20121713fa54dcb17d5f0e3aac",
"address": "mherxctAFa76o6E31amFVFWjbm68PYc7PC",
"hdPath": "m/44'/0'/0'/1/6",
"transactions": []
},
{
"index": 7,
"scriptPubKey": "76a914972a78b0975845b52e93b6250d2270937e3cb97488ac",
"pubkey": "2103df13953fda22fb4b57725b9ba69d0c91494c0de513a57fa062ac5f97b178ef5fac",
"address": "muJFCzGH8CXok9hQfkn2q1qaB8zjQ7eAxW",
"hdPath": "m/44'/0'/0'/1/7",
"transactions": []
},
{
"index": 8,
"scriptPubKey": "76a914faad3fafd91827ba07a0c0de7fda877a198656e388ac",
"pubkey": "2102866a853b8f0504fb1474df7bd6410e61be384c1b7eb0a0f99ee9583b3ae9b3a8ac",
"address": "n4NQmYif6cbvHkjmD2CrtQdgVqGUNVWJ2W",
"hdPath": "m/44'/0'/0'/1/8",
"transactions": []
},
{
"index": 9,
"scriptPubKey": "76a914353df294314e8ae988d57c95ed99b245ef94324f88ac",
"pubkey": "21027e6d641608d1847d16726f796a30e340e50932ddef43fdd0796ef0f036373c8aac",
"address": "mkNUKQxfJVPFdqzssFM2GAJtafcVcFecis",
"hdPath": "m/44'/0'/0'/1/9",
"transactions": []
},
{
"index": 10,
"scriptPubKey": "76a9142805b659d353c2e919f06709f30bf136c7ffefca88ac",
"pubkey": "21039f3d0d5eacc27af21d835fee6094f68a48e84d292a14010f978a85b38ce08091ac",
"address": "mjAaAdDyox5hM92XYNDYaJeX7t9n8ZYFvX",
"hdPath": "m/44'/0'/0'/1/10",
"transactions": []
},
{
"index": 11,
"scriptPubKey": "76a914a3fd294e9da712009789d0f0c6ee6fccf047882988ac",
"pubkey": "2102729a5bcedee2c21b7b723db7ac695db1f01411cde95115724fe482aaaa15bea2ac",
"address": "mvU3iHJ5WjVrokN6ZecDvDsbPyjVoVDSWL",
"hdPath": "m/44'/0'/0'/1/11",
"transactions": []
},
{
"index": 12,
"scriptPubKey": "76a914634b1df63a611d6389308343a6f878cfe3fa0cb588ac",
"pubkey": "2103f53c2815c1aa68692ddf786d90af50fd2189747b87461fc2923869a05f53142aac",
"address": "mpZyBGXgmzW5XHMK1Y7SDDZkm77pvpNkc6",
"hdPath": "m/44'/0'/0'/1/12",
"transactions": []
},
{
"index": 13,
"scriptPubKey": "76a9144222deb16c199c87c2c56d3f3f46630b70e25d2488ac",
"pubkey": "2102b5ee1e140ddf91bdcb8339c5a478eee92f41263a004f752f72d20d7510792172ac",
"address": "mmYefWyRmhw3M2mVUNnbYaKsN6484V9qdK",
"hdPath": "m/44'/0'/0'/1/13",
"transactions": []
},
{
"index": 14,
"scriptPubKey": "76a9149ab4b28f3d850fa72af902d01d0a0b8c0af25aa388ac",
"pubkey": "2103f6cdb607a1516a32b05b8ab4328100327a0ba8007c31fba0b6b399e64b2d5f57ac",
"address": "mucxpgHfXNBNMZCvq5MTFc3pX7htorHuZ4",
"hdPath": "m/44'/0'/0'/1/14",
"transactions": []
},
{
"index": 15,
"scriptPubKey": "76a914f67151add1ad0b816fa909196db512ecb2f7075788ac",
"pubkey": "21029290dd8c54ed9197d693920309aa9c3f908c76f7e0c0567a21fa58c6afd2649dac",
"address": "n3z2Gnoa7YtfaThdqUZujhnzkgVnk3DN5W",
"hdPath": "m/44'/0'/0'/1/15",
"transactions": []
},
{
"index": 16,
"scriptPubKey": "76a9143236c763b261e093eecd3096a1ca15b2fdffdd4288ac",
"pubkey": "210235c5076855ed1b8ab69e450fb72e44ed24c26e71de9bcd85ca00a5ed1ed10944ac",
"address": "mk6ThkKswiVbnsMpSR1GwAuYnZqAWNDhom",
"hdPath": "m/44'/0'/0'/1/16",
"transactions": []
},
{
"index": 17,
"scriptPubKey": "76a9148119728eb20969044d0a387a4cbbd9a01051751788ac",
"pubkey": "2102e7df3de39116c449bcea651deca156d2c34d2e8fe6c19383d2eae62ed2f235e2ac",
"address": "msHZwvULtyzxb9Pwro9p8Z54EjNgQ49QgA",
"hdPath": "m/44'/0'/0'/1/17",
"transactions": []
},
{
"index": 18,
"scriptPubKey": "76a9140705ffd5875bf2742c1f75b23834067f3ea85cf188ac",
"pubkey": "2102c1e61dce05a796e82bb709178d3282fab6782e6f666f76daf24c953677704642ac",
"address": "mgA6DEpdmZXPNbbkyAed4wXXStUerj6GoK",
"hdPath": "m/44'/0'/0'/1/18",
"transactions": []
},
{
"index": 19,
"scriptPubKey": "76a914b029e0a31117d688cc6832bc778471c249d8829d88ac",
"pubkey": "2103a993e8bada76b5f8b6d3b9eb8c4cc515f7e4a610b8e4525dd94d052e5b7a4bb1ac",
"address": "mwaRPWpw8iwjBG3Ng8KSNumg8EVSAf3gtq",
"hdPath": "m/44'/0'/0'/1/19",
"transactions": []
}
]
}
]
}
]
}
\ No newline at end of file
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