-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
rem easy start Yenten wallet with last blockchain by Bubasik | ||
rem https://eternallybored.org/misc/wget/ | ||
rem http://gnuwin32.sourceforge.net/packages/unzip.htm | ||
|
||
REM create folder cryply and data | ||
MD C:\yenten | ||
MD C:\yenten\data | ||
|
||
REM download yenten wallet | ||
wget.exe -P c:\yenten -nc https://github.com/conan-equal-newone/yenten/releases/download/2.0.1fix/yenten_win64_2.0.1fix.zip | ||
unzip.exe c:\yenten\yenten_win64_2.0.1fix -d c:\yenten\ | ||
move C:\yenten\yenten_win64_2.0.1fix\yenten-qt.exe c:\yenten\ | ||
|
||
REM create start bat file | ||
Echo C:\yenten\yenten-qt -datadir=C:\yenten\data > C:\yenten\yenten.bat | ||
|
||
REM download archive blockchain | ||
wget.exe -P c:\yenten -nc http://yenten-pool.ml/blocks_yenten_last.zip | ||
|
||
|
||
REM unzip blockchain | ||
unzip.exe c:\yenten\blocks_yenten_last.zip -d c:\yenten\data | ||
|
||
REM move folders | ||
move C:\yenten\data\root\blocks_yenten\blocks c:\yenten\data | ||
move C:\yenten\data\root\blocks_yenten\chainstate c:\yenten\data | ||
move C:\yenten\data\root\blocks_yenten\hashes c:\yenten\data | ||
move C:\yenten\data\root\blocks_yenten\.lock c:\yenten\data | ||
move C:\yenten\data\root\blocks_yenten\db.log c:\yenten\data | ||
move C:\yenten\data\root\blocks_yenten\peers.dat c:\yenten\data | ||
|
||
REM start Yenten wallet | ||
cd c:\yenten | ||
start C:\yenten\yenten.bat | ||
|
||
pause |