Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
bubasik authored Aug 20, 2018
1 parent 4cb103c commit cae6cc5
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions fast_yenten.bat
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

0 comments on commit cae6cc5

Please sign in to comment.