Skip to content

Commit

Permalink
Add Plugin for UTXO tracking by account. (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsolman authored Mar 14, 2019
1 parent 01628e0 commit 4a37c19
Show file tree
Hide file tree
Showing 5 changed files with 608 additions and 0 deletions.
17 changes: 17 additions & 0 deletions RpcSystemAssetTracker/RpcSystemAssetTracker.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>2.10.1</Version>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>Neo.Plugins</RootNamespace>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Update="RpcSystemAssetTracker\config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Neo" Version="2.10.1-CI00002" />
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions RpcSystemAssetTracker/RpcSystemAssetTracker/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"PluginConfiguration": {
"DBPath": "SystemAssetBalanceData",
"MaxReturnedUnspents": 1000,
"TrackUnclaimed": true
}
}
Loading

0 comments on commit 4a37c19

Please sign in to comment.