Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Plugin for UTXO tracking by account. #65

Merged
merged 27 commits into from
Apr 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
96f6bab
Add Plugin for UTXO tracking by account.
Mar 11, 2019
0a80ceb
Rename RpcSystemAssetPlugin -> RpcSystemAssetTracker.
Mar 11, 2019
87aea4f
Accept address or script hash.
Mar 11, 2019
fc297be
Remove unnecessary white space.
Mar 11, 2019
0f12ea0
Merge branch 'master' into RpcSystemAssetPlugin
jsolman Mar 12, 2019
1b9870a
Update project ref to Neo 2.10.1-CI00002.
Mar 12, 2019
44d358a
Ensure consistency in case of crash or kill.
Mar 12, 2019
f21450a
Fix setting lastPersistedBlock after each block is persisted.
Mar 12, 2019
c7e0922
Performance optimization: Don't write block number for empty blocks.
Mar 12, 2019
0777eee
Optimize.
Mar 12, 2019
ab8a4d7
Add support for tracking unclaimed spent outputs.
Mar 12, 2019
1544902
Provide getclaimable RPC call for getting available claim spent outputs.
Mar 13, 2019
d206f94
Merge branch 'master' into RpcSystemAssetPlugin
vncoelho Mar 13, 2019
d2722ad
Clean-up.
Mar 13, 2019
ee6ff9c
Don't leak memory.
Mar 13, 2019
008087e
Implement getclaimable to get get total unclaimed amount for an address.
Mar 13, 2019
dfa8f7d
Merge branch 'master' into RpcSystemAssetPlugin
jsolman Mar 13, 2019
01fb48e
Remove unnecessary comment.
Mar 14, 2019
d8ff18a
Merge branch 'master' into RpcSystemAssetPlugin
shargon Mar 17, 2019
fff91e4
Merge branch 'master' into RpcSystemAssetPlugin
vncoelho Mar 18, 2019
9a5a87e
Fix size of UserSystemAssetCoinOutputs. Remove unused using statement.
jsolman Mar 18, 2019
ce54a8a
Reload max utxo's from configuration if it changes.
jsolman Mar 20, 2019
4e57313
Merge branch 'master' into RpcSystemAssetPlugin
vncoelho Mar 20, 2019
7118c69
Merge branch 'master' into RpcSystemAssetPlugin
jsolman Mar 21, 2019
b335b9d
Merge branch 'master' into RpcSystemAssetPlugin
vncoelho Apr 1, 2019
84df11c
Upgrade dependency
vncoelho Apr 5, 2019
35a4368
Merge branch 'master' into RpcSystemAssetPlugin
vncoelho Apr 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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" />
</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