Skip to content

Commit

Permalink
Merge pull request #139 from Ashuaidehao/dev-back
Browse files Browse the repository at this point in the history
Upgrade 3.3.1
  • Loading branch information
Ashuaidehao committed Jun 28, 2022
2 parents 1d636dd + 9498d0f commit af417a4
Show file tree
Hide file tree
Showing 10 changed files with 52,128 additions and 28,573 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Your feedbacks and suggestions are welcome. Please submit issues.

## Required Tools and Dependencies for development

1. [Visual Studio 2019](https://visualstudio.microsoft.com/) and [.NET Core 5.0](https://dotnet.microsoft.com/download)
1. [Visual Studio 2019](https://visualstudio.microsoft.com/) and [.NET Core 6.0](https://dotnet.microsoft.com/download)
2. [Node.js](https://nodejs.org/)

## Build and Run
Expand Down
57,522 changes: 39,952 additions & 17,570 deletions neo3-gui/neo3-gui/ClientApp/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions neo3-gui/neo3-gui/ClientApp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neo-gui",
"version": "1.4.1",
"version": "1.4.2",
"private": true,
"main": "main.js",
"homepage": "./",
Expand Down Expand Up @@ -120,4 +120,4 @@
"electron-builder": "^22.4.1",
"electron-devtools-installer": "^3.0.0"
}
}
}
23,119 changes: 12,142 additions & 10,977 deletions neo3-gui/neo3-gui/ClientApp/yarn.lock

Large diffs are not rendered by default.

Binary file removed neo3-gui/neo3-gui/Plugins/LevelDBStore.dll
Binary file not shown.
Binary file not shown.
5 changes: 0 additions & 5 deletions neo3-gui/neo3-gui/Plugins/LevelDBStore/config.json

This file was deleted.

13 changes: 9 additions & 4 deletions neo3-gui/neo3-gui/config.mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@
},
"Storage": {
"Engine": "LevelDBStore",
"Path": "Data_LevelDB_MainNet"
"Path": "Data_LevelDB_Mainnet"
},
"P2P": {
"Port": 10333,
"WsPort": 10334
"WsPort": 10334,
"MinDesiredConnections": 10,
"MaxConnections": 40,
"MaxConnectionsPerAddress": 3
},
"UnlockWallet": {
"Path": "",
"Password": "",
"IsActive": false
},
"PluginURL": "https://github.com/neo-project/neo-modules/releases/download/v{1}/{0}.zip"
}
},
"ProtocolConfiguration": {
"Network": 860833102,
Expand All @@ -27,6 +29,9 @@
"MaxTransactionsPerBlock": 512,
"MemoryPoolMaxTransactions": 50000,
"MaxTraceableBlocks": 2102400,
"Hardforks": {
"HF_Aspidochelone": 1730000
},
"InitialGasDistribution": 5200000000000000,
"ValidatorsCount": 7,
"StandbyCommittee": [
Expand Down
29 changes: 17 additions & 12 deletions neo3-gui/neo3-gui/config.testnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,31 @@
},
"Storage": {
"Engine": "LevelDBStore",
"Path": "Data_LevelDB_TestNet"
"Path": "Data_LevelDB_Testnet"
},
"P2P": {
"Port": 20333,
"WsPort": 20334
"WsPort": 20334,
"MinDesiredConnections": 10,
"MaxConnections": 40,
"MaxConnectionsPerAddress": 3
},
"UnlockWallet": {
"Path": "",
"Password": "",
"IsActive": false
},
"PluginURL": "https://github.com/neo-project/neo-modules/releases/download/v{1}/{0}.zip"
}
},
"ProtocolConfiguration": {
"Network": 877933390,
"Network": 894710606,
"AddressVersion": 53,
"MillisecondsPerBlock": 15000,
"MaxTransactionsPerBlock": 512,
"MaxTransactionsPerBlock": 5000,
"MemoryPoolMaxTransactions": 50000,
"MaxTraceableBlocks": 2102400,
"Hardforks": {
"HF_Aspidochelone": 210000
},
"InitialGasDistribution": 5200000000000000,
"ValidatorsCount": 7,
"StandbyCommittee": [
Expand All @@ -53,11 +58,11 @@
"03184b018d6b2bc093e535519732b3fd3f7551c8cffaf4621dd5a0b89482ca66c9"
],
"SeedList": [
"seed1t4.neo.org:20333",
"seed2t4.neo.org:20333",
"seed3t4.neo.org:20333",
"seed4t4.neo.org:20333",
"seed5t4.neo.org:20333"
"seed1t5.neo.org:20333",
"seed2t5.neo.org:20333",
"seed3t5.neo.org:20333",
"seed4t5.neo.org:20333",
"seed5t5.neo.org:20333"
]
}
}
}
7 changes: 5 additions & 2 deletions neo3-gui/neo3-gui/neo3-gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,22 @@

<ItemGroup>
<PackageReference Include="EFCore.BulkExtensions" Version="3.1.1" />
<!--<PackageReference Include="Neo" Version="3.1.0" />-->
<PackageReference Include="Neo" Version="3.3.1" />
<PackageReference Include="Neo.LevelDb.Dev" Version="3.0.0-pre4" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\neo\src\neo\neo.csproj" />
<!--<ProjectReference Include="..\..\neo\src\neo\neo.csproj" />-->
</ItemGroup>

<ItemGroup>
<None Update="Plugins\LevelDBStore.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Plugins\LevelDBStore\LevelDBStore.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>


Expand Down

0 comments on commit af417a4

Please sign in to comment.