Yenten 5.0.0 - core only
You MUST upgrade to the NEW version by January 30, 2023.
The old version will no longer work.
The new version is backward-compatible and works fine now, so you can migrate now.
DEFINITELY RECOMMEND
Keep a backup copy of your wallet.dat.
Preferably in an archive with a password.
(windows - %appdata%\Yenten)
Block data (bootstrap)
Updated on Jan. 11, 2025
- yenten_block_data_standard.7z (Synced by Yenten-6 beta, also supported in Yenten-5.0.0)
- yenten_block_data_with_txindex.7z (Synced by Yenten-5.0.0. In Yenten-6, the database is automatically upgraded on first access.)
Build Notes / ビルド メモ
For Windows 64bit: built on Ubuntu 18.04 on Windows11 WSL
PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g')
cd depends
make HOST=x86_64-w64-mingw32
cd ..
./autogen.sh
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure --prefix=/ --enable-upnp-default
make
For Windows 32bit: built on Ubuntu 18.04 on Windows11 WSL
PATH=$(echo "$PATH" | sed -e 's/:\/mnt.*//g')
cd depends
make HOST=i686-w64-mingw32
cd ..
./autogen.sh
CONFIG_SITE=$PWD/depends/i686-w64-mingw32/share/config.site ./configure --prefix=/ --enable-upnp-default
make
For macOS: built on Mojave 10.14.6 with Xcode-9.4.1
cd depends
make HOST=x86_64-apple-darwin11
cd ..
./autogen.sh
./configure --prefix=`pwd`/depends/x86_64-apple-darwin11 --enable-upnp-default --with-qtdbus=no
make
make deploy
For Linux: built on Ubuntu 16.04
cd depends
make HOST=x86_64-pc-linux-gnu
cd ..
./autogen.sh
./configure --prefix=`pwd`/depends/x86_64-pc-linux-gnu --enable-upnp-default
make