Bitcoin Forum
April 26, 2024, 01:08:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 ... 211 »
  Print  
Author Topic: [ANN] [CPU mining] Yenten v2.0.1 [YTN] [YescryptR16] [Exchange avilable]  (Read 147084 times)
ir.hn
Member
**
Offline Offline

Activity: 322
Merit: 54

Consensus is Constitution


View Profile
December 06, 2017, 07:01:15 PM
 #981

Dev please look over my post about adding wallet funcionality so people can encode a crowd-sourced exchange into the blockchain using op_return.  The full text of my whitepaper is included in the comments on the forum post

https://bitcointalk.org/index.php?topic=2521788.msg25870369#msg25870369

1714093711
Hero Member
*
Offline Offline

Posts: 1714093711

View Profile Personal Message (Offline)

Ignore
1714093711
Reply with quote  #2

1714093711
Report to moderator
1714093711
Hero Member
*
Offline Offline

Posts: 1714093711

View Profile Personal Message (Offline)

Ignore
1714093711
Reply with quote  #2

1714093711
Report to moderator
1714093711
Hero Member
*
Offline Offline

Posts: 1714093711

View Profile Personal Message (Offline)

Ignore
1714093711
Reply with quote  #2

1714093711
Report to moderator
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714093711
Hero Member
*
Offline Offline

Posts: 1714093711

View Profile Personal Message (Offline)

Ignore
1714093711
Reply with quote  #2

1714093711
Report to moderator
eule
Hero Member
*****
Offline Offline

Activity: 756
Merit: 501


View Profile
December 06, 2017, 07:42:24 PM
Last edit: December 06, 2017, 10:28:58 PM by eule
 #982

Finally got my Odroid XU3 lite mining by compiling yentend, wasn't able to compile cpuminer-opt. Is the source of minerd available somewhere?
Mining on 7 of 8 cores at 93°C, Hashrate reports vary wildly: most often it's around 63 but rarely it's reported as 0 or up to 140, probably some kind of lag. Not too bad for an ARM CPU (Exynos 5422), OS is Debian Wheezy. My properly cooled and slightly overclocked FX 8320E does 650 hashes per second btw.

Had to configure with --ignore-incompatible-bdb and remove a "-msse41" from yescrypt.h in src/hash/yescrypt. More could be possible with some ARM optimization and compile option tuning, my only CXXFLAG was O3.

Too bad the hashrate almost doubled today.  Shocked

Wow nice, I tried to get it working on a pine64 which didn't work and it seemed to be missing x86 type operations so I assumed that yenten required x86 processors.  But that is interesting that you got it to work on ARM and not only that but on a non-ubuntu distro.  Would you mind writing up a little procedure on how to do it for a linux noob?  If this works on ARM it changes everything...

Also add up each core's hash/sec to get your total.
Found the minerd source at https://github.com/conan-equal-newone/yenten/releases, all I had to do to get running:
Code:
apt-get install build-essential autotools-dev autoconf libcurl3 libcurl4-gnutls-dev jansson
wget https://github.com/conan-equal-newone/yenten/releases/download/1.1.0/yenten_minerd_source.zip
unzip yenten_minerd_source.zip
Edit line 6 of configure.ac: AM_INIT_AUTOMAKE([gnu foreign])
./autogen.sh
./configure CFLAGS="-O3 -funroll-loops -fomit-frame-pointer -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
make
strip minerd
-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard will be different for most ARM devices, look up the recommended CFLAGS for your device.
To build yentend I followed the readme except the two steps mentioned above.
The 4 big cores report 0.02kH/s each, the 4 little cores 0.01kH/s. So with proper cooling I would get at least 120H/s, only running the 4 big cores atm.

trendvip
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
December 06, 2017, 08:19:06 PM
 #983

Finally got my Odroid XU3 lite mining by compiling yentend, wasn't able to compile cpuminer-opt. Is the source of minerd available somewhere?
Mining on 7 of 8 cores at 93°C, Hashrate reports vary wildly: most often it's around 63 but rarely it's reported as 0 or up to 140, probably some kind of lag. Not too bad for an ARM CPU (Exynos 5422), OS is Debian Wheezy. My properly cooled and slightly overclocked FX 8320E does 650 hashes per second btw.

Had to configure with --ignore-incompatible-bdb and remove a "-msse41" from yescrypt.h in src/hash/yescrypt. More could be possible with some ARM optimization and compile option tuning, my only CXXFLAG was O3.

Too bad the hashrate almost doubled today.  Shocked

Wow nice, I tried to get it working on a pine64 which didn't work and it seemed to be missing x86 type operations so I assumed that yenten required x86 processors.  But that is interesting that you got it to work on ARM and not only that but on a non-ubuntu distro.  Would you mind writing up a little procedure on how to do it for a linux noob?  If this works on ARM it changes everything...

Also add up each core's hash/sec to get your total.
Found the minerd source at https://github.com/conan-equal-newone/yenten/releases, all I had to do to get running:
Code:
(sudo) apt-get install libcurl jansson
Edit line 6 of configure.ac: AM_INIT_AUTOMAKE([gnu foreign])
./autogen.sh
./configure CFLAGS="-O3 -funroll-loops -fomit-frame-pointer -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
make
-march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard will be different for most ARM devices, look up the recommended CFLAGS for your device.
To build yentend I followed the readme except the two steps mentioned above.
The 4 big cores report 0.02kH/s each, the 4 little cores 0.01kH/s. So with proper cooling I would get at least 120H/s, only running the 4 big cores atm.



Hi, Can you tell me how to edit the "Edit line 6 of configure.ac" via ssh?
eule
Hero Member
*****
Offline Offline

Activity: 756
Merit: 501


View Profile
December 06, 2017, 08:21:20 PM
 #984

Hi, Can you tell me how to edit the "Edit line 6 of configure.ac" via ssh?
With a text editor like nano.
Code:
apt-get install nano
nano configure.ac
Ctrl+X to exit nano.  Wink

Yannic
Sr. Member
****
Offline Offline

Activity: 356
Merit: 259


airdrop-pepe.art


View Profile WWW
December 06, 2017, 08:26:23 PM
Last edit: December 07, 2017, 12:56:51 AM by Yannic
 #985

Simple yenten faucet : https://cryptoservices.net/en/ytn-faucet

Proof-of-Work Captcha 1024:
Claim as you want, for each YTN claimed, i will place a bid to rebuy them to support buy price.

♥‿♥ Show me your Love with few Yenten to :
[url=https://airdrop-pepe.art]Airdrop

Airdrop
Airdrop
♥‿♥
Website in progress : CryptoServices.net/en/ and Yenten.Today
☮ Peace, ♥ Love and Yenten Thanks ♥
trendvip
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
December 06, 2017, 09:49:11 PM
 #986

Hi, Can you tell me how to edit the "Edit line 6 of configure.ac" via ssh?
With a text editor like nano.
Code:
apt-get install nano
nano configure.ac
Ctrl+X to exit nano.  Wink

Thanks. I'm very new on Linux and if you are kind please need some help:
git clone https://github.com/JayDDee/cpuminer-opt.git
cd cpuminer-opt
Edit line 6 of configure.ac: AM_INIT_AUTOMAKE([gnu foreign])
./autogen.sh
./configure CFLAGS="-O3 -funroll-loops -fomit-frame-pointer -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
make

This are the steps?
eule
Hero Member
*****
Offline Offline

Activity: 756
Merit: 501


View Profile
December 06, 2017, 10:25:25 PM
 #987

Compile minerd instead of cpuminer-opt if you're on ARM. Are you on ARM?
Code:
apt-get install build-essential autotools-dev autoconf libcurl3 libcurl4-gnutls-dev jansson unzip
wget https://github.com/conan-equal-newone/yenten/releases/download/1.1.0/yenten_minerd_source.zip
unzip yenten_minerd_source.zip
Edit line 6 of configure.ac: AM_INIT_AUTOMAKE([gnu foreign])
./autogen.sh
./configure CFLAGS="-O3 -funroll-loops -fomit-frame-pointer -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard"
make
strip minerd
Some of those package names can be different on your distro and I'm not sure about the dependencies since I already had most installed. Also change the CFLAGS -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard according to your device.

devident
Member
**
Offline Offline

Activity: 152
Merit: 10


View Profile
December 06, 2017, 11:52:59 PM
 #988

Bitzeny goes up. Difficulty increases. Some miners peel off to yenten mining.

Hold onto your hats.

Still hope this coin will stay under the radar for quit some time. Mining is still easy :-)

I would expect that the Yenten price is going to follow Bitzeny at a certain moment. Anyway wonder why the old lady (Bitzeny) is suddenly rising so fast.

guys there are orders for 124,400 yenten above 100 sat on coinsmarkets.

is anyone giving up their coins? no.

remember when we were arguing over whether or not this was a joke coin with value or not. i guess those forum posts will go down in history.

You can still solo mine this!! what monster did conan create.

Xeon_Xeon
Full Member
***
Offline Offline

Activity: 184
Merit: 103


View Profile
December 07, 2017, 01:09:44 AM
 #989

i’m still solo mining. anyone else?

discord: https://discord.gg/MW6aPzb


I did yesterday, earned three blocks in about three hours then nothing.

Then I started to pool mine, about the same number of coins but its steady.
ir.hn
Member
**
Offline Offline

Activity: 322
Merit: 54

Consensus is Constitution


View Profile
December 07, 2017, 02:23:22 AM
 #990

Bitzeny goes up. Difficulty increases. Some miners peel off to yenten mining.

Hold onto your hats.

Still hope this coin will stay under the radar for quit some time. Mining is still easy :-)

I would expect that the Yenten price is going to follow Bitzeny at a certain moment. Anyway wonder why the old lady (Bitzeny) is suddenly rising so fast.

guys there are orders for 124,400 yenten above 100 sat on coinsmarkets.

is anyone giving up their coins? no.

remember when we were arguing over whether or not this was a joke coin with value or not. i guess those forum posts will go down in history.

You can still solo mine this!! what monster did conan create.

I don't want to take much credit, the coin speaks for itself great job dev, but I have been giving it lots of publicity on the bitcoin general discussion and technical discussion forums Wink.

cryptonomicon25
Member
**
Offline Offline

Activity: 460
Merit: 12


View Profile
December 07, 2017, 05:59:26 AM
 #991

I thought people were losing interest in this coin, but here I check and the thread is still going strong.
Drag0g0
Newbie
*
Offline Offline

Activity: 64
Merit: 0


View Profile
December 07, 2017, 06:59:21 AM
 #992

Well there is no other cpu only coin what can mine, this is great.
yarisken
Member
**
Offline Offline

Activity: 68
Merit: 10


View Profile
December 07, 2017, 07:02:10 AM
 #993

I thought people were losing interest in this coin, but here I check and the thread is still going strong.
This coin is still mineable with cheap hardware. It's there Future crypto of Japan.
YaYMiner
Member
**
Offline Offline

Activity: 80
Merit: 10


View Profile
December 07, 2017, 08:21:15 AM
 #994

I thought people were losing interest in this coin, but here I check and the thread is still going strong.
This coin is still mineable with cheap hardware. It's there Future crypto of Japan.

Thank you for a profitable CPU coin Smiley
uberpatzer
Member
**
Offline Offline

Activity: 83
Merit: 10

Soon we will all be dead


View Profile
December 07, 2017, 09:36:02 AM
 #995

Bitcoin is for old and rich men.
Yenten is for the cool kids. It is cool because CPU only. No rich companies can hijack this coin.
It is also cool because the creator is mysterious.
And even more cool because you have to be 21 to mine this coin, but teenagers can secretely mine too.
This coin has all the potential the become a cult hype amongst new generation kids for who bitcoin is already ancient and old news.

twitter: @uberpatzer  --Soon we will all be dead--
trax0r
Full Member
***
Offline Offline

Activity: 375
Merit: 103

Coinz-Universe


View Profile
December 07, 2017, 11:32:12 AM
 #996

also solo mining

{
"blocks" : 28058,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00584079,
"errors" : "",
"genproclimit" : -1,
"networkhashps" : 414811,
"pooledtx" : 0,
"testnet" : false,
"generate" : true,
"hashespersec" : 1738
}
stevascha
Member
**
Offline Offline

Activity: 312
Merit: 10


View Profile
December 07, 2017, 12:07:02 PM
 #997

I thought people were losing interest in this coin, but here I check and the thread is still going strong.

the miner was consistent, no worries man

YENTEN - YescryptR16 - NO PREMINE - ASIC RESISTANT - WALLET MINING - COMMUNITY MANAGED - ADULT MALES
Yenten is a Japanese cryptocurrency of the cpu, by the cpu, for the cpu.
No ASIC. ASIC is for girls and kids. Join us!
uberpatzer
Member
**
Offline Offline

Activity: 83
Merit: 10

Soon we will all be dead


View Profile
December 07, 2017, 12:11:24 PM
 #998

also solo mining

{
"blocks" : 28058,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00584079,
"errors" : "",
"genproclimit" : -1,
"networkhashps" : 414811,
"pooledtx" : 0,
"testnet" : false,
"generate" : true,
"hashespersec" : 1738
}

woah. what processor are you using man

twitter: @uberpatzer  --Soon we will all be dead--
trax0r
Full Member
***
Offline Offline

Activity: 375
Merit: 103

Coinz-Universe


View Profile
December 07, 2017, 12:33:48 PM
 #999

also solo mining

{
"blocks" : 28058,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00584079,
"errors" : "",
"genproclimit" : -1,
"networkhashps" : 414811,
"pooledtx" : 0,
"testnet" : false,
"generate" : true,
"hashespersec" : 1738
}

woah. what processor are you using man

Hardware is a HP Server with CPUs on 2 sockets (2x Intel XEON CPU E5-2660), 10 processor cores per socket.
FacelessCrypto
Full Member
***
Offline Offline

Activity: 539
Merit: 105


IDENA.IO - Proof-Of-Person Blockchain


View Profile
December 07, 2017, 12:40:40 PM
 #1000

also solo mining

{
"blocks" : 28058,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00584079,
"errors" : "",
"genproclimit" : -1,
"networkhashps" : 414811,
"pooledtx" : 0,
"testnet" : false,
"generate" : true,
"hashespersec" : 1738
}

woah. what processor are you using man

Hardware is a HP Server with CPUs on 2 sockets (2x Intel XEON CPU E5-2660), 10 processor cores per socket.
How's the solo mining results?per day 200 coins I. Suppose.

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 ... 211 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!