Skip to content

Releases: yentencoin/yenten

Yenten 6 - beta 1

20 Jul 17:14
Compare
Choose a tag to compare

Beta 1 - Stable server version - specially for Graviex exchange

Desktop version with GUI interface is under debugging.

Yenten 5.0.0 - core only

06 Jan 18:52
df838e7
Compare
Choose a tag to compare

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 Nov. 16, 2024

  • 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

Yenten Core 4.0.3

25 Mar 07:34
4.0.3
c8ebe54
Compare
Choose a tag to compare

Changed:

  • Revised as static const CAmount MAX_MONEY = 80000000 * COIN; in src/amount.h
  • Revised several translations in Qt locale files (replaced the word "bitcoin" with "yenten" , etc.)

About "Max Supply":
In the old Yenten (1.x ~ 3.x), src/amount.h holds the description, static const CAmount MAX_MONEY = 84000000 * COIN;,
also static const CAmount MAX_MONEY = 100000000 * COIN; from Yenten 4.0.0 to 4.0.2.
This constant is just for sanity check and doesn't define the Max Supply of coins though, but very confusing.
So we changed it to 80000000 which matches the calculated Max Supply from the subsidy halving interval (800,000 blocks) and the initial mining reward (50 YTN) of Yenten.

... Now we announce clearly that "Max Supply of Yenten = 80,000,000 (80 million) YTN"

Sub version (build number):

  • 4.0.3.1: Revised translations additionally, especially in English, Russian and Japanese.

Block data (bootstrap)

The bootstraps (yenten_block_data_standard.zip, yenten_block_data_with_txindex.zip) have been moved to the 5.0.0 release page.
https://github.com/yentencoin/yenten/releases/download/5.0.0/yenten_block_data_standard.zip
https://github.com/yentencoin/yenten/releases/download/5.0.0/yenten_block_data_with_txindex.zip

Yenten Core 4.0.2

11 Jan 08:03
4.0.2
51b36b6
Compare
Choose a tag to compare

Changed:

  • fixed the issue: synchronizing failure on from Jan 8th. 2021, block height 816480 probably, on some system.

Yenten Core 4.0.1

10 Jun 20:25
9a03b8f
Compare
Choose a tag to compare

Changed:

  • changed min fee for small transactions
  • back to showing "Yenten-chan" image
  • other...

Yenten Core 4.0.0 - final

22 Apr 22:21
4a9b00f
Compare
Choose a tag to compare

Other nodes:

addnode 185.185.70.244:9981 add
addnode spbird.mydns.jp:9981 add

Other node links:
https://xpoolx.com/explorer/peers?id=1897
https://leywapool.com/explorer/peers?id=1428
https://trossmining.de/explorer/peers?id=1943

Pools work with Yenten 4.0.0
http://cpu-pool.com/
https://xpoolx.com/

CMD for compiling Yenten - ubuntu 16.04, 18.04

sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install git
sudo apt-get install build-essential
sudo apt-get install libtool autotools-dev autoconf
sudo apt-get install libssl-dev
sudo apt-get install libboost-all-dev
sudo apt-get install pkg-config
sudo apt-get install libevent-dev
sudo apt-get install libzmq3-dev
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev

git clone https://github.com/yentencoin/yenten.git
cd yenten
./autogen.sh
./configure --enable-upnp-default --without-gui
make -j 4

Read instructions:
How to compile Yenten coin 4.0.0 on ubuntu 16.04.6 and 18.04.4 LTS - http://cpu-mining.info/post.php?post=4
How to compile Yenten coin 4.0.0 on ubuntu 20.04 LTS - http://cpu-mining.info/post.php?post=5

Yenten Core 4.0.0 - beta 4

02 Apr 21:07
9029202
Compare
Choose a tag to compare
  • Fix translate
  • Add other nodes 4.0.0

CMD for compiling Yenten - ubuntu 16.04

git clone -b yenten-4.0.0 https://github.com/yentencoin/yenten.git
cd yenten
./autogen.sh
./configure --enable-upnp-default --without-gui
make -j 4

Yenten Core 4.0.0 - beta 3

29 Mar 13:45
1f3bfcc
Compare
Choose a tag to compare
  • Add static NODE with Yenten core 4.0.0

CMD for compiling Yenten - ubuntu 16.04

git clone -b yenten-4.0.0 https://github.com/yentencoin/yenten.git
cd yenten
./autogen.sh
./configure --enable-upnp-default --without-gui
make -j 4

Version 3.1.0 - yespower

09 Feb 13:06
8bea89c
Compare
Choose a tag to compare

Changes algorithm to YespowerR16 (Yespower-1.0, N=4096, r=16) - on and after 30 March, 2019 (UTC; unixtime:1553904000).

Version 3.0.2 compatible with 1.3.1

03 Dec 15:51
a9ec45c
Compare
Choose a tag to compare

Changes:

  • Replace the splash image of the Qt-wallet, with Yenten-chan created by @tamagona on twitter.
  • Changed CLIENT_NAME from Satoshi to Yenten

24.12.2018 - add Yenten 3.0.2 Qt-wallet for Mac

To test the wallet, use the faucet - http://yenten-pool.info/faucet/