Bitcoin Forum
July 08, 2024, 02:23:03 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3]
41  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 21, 2014, 12:34:33 PM
out of sync,processed 1743 blocks of transaction history.

Yes, same problem  Huh

Also stuck in the 1743 blocks

We are at 1745

Until the difficulty re-adjusts, we may have some stuck blocks for a little bit.  Hang in there!  Again, a large number of miners left us at an awkward time, but we'll mine through this and things will adjust.

Also, I have a "sort of" working cpuminer-apt port that hashes using getwork (for solo mining or old style pools), but it needs stratum testing.  If you're still up for it, would you mind sending me some information about your pool (either here or PM) so that we can test against it?   We're hoping to have that in the github in the next day or two.

Getting a pool online should help resolve this situation as well.
42  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 20, 2014, 08:31:56 PM
My cards in 1743
new win-qt!!!!

A new wallet isn't the answer.  We're all hashing the same block at the moment, but it's taking longer than expected for a few reasons.  The biggest reason is that it seems the number of miners has dropped significantly and left the rest of us at a higher difficulty.
43  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 20, 2014, 04:35:54 AM
I don't think this thing is moving.  Surely someone has kicked out a block in the last four hours with difficulty this low.

Actually, the difficulty is rather high (relatively).  The network had been discovering blocks much quicker than the targeted rate, and has adjusted accordingly.  Scrypt-NM is also an experiment on variable block times aside from standard difficulty.  Currently, the network is working on hashing using an N-factor of 12 (which takes longer than lower values) at a relatively high difficulty.
44  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 20, 2014, 01:19:38 AM
Hi,

Block Reward ?
Any pools ?

Thx.

Block Reward= 42 Apt

I am in the process of setting up one, with modified stratum code, and custom hash algo. But for that we also need external cpu miners. Will see if I can get one working.

Is there a bounty for any of this?

Ok, so my modified stratum also adds the "nfactor" value to the stratum information (after clean_jobs) - I just need a CPU miner to implement this additional check.


The thing I am stuck on is that the normal cpuminer send the "midstate" to the scrypt function - but there is no midstate parameter that I can see on the aptcoin one?

We are currently working on a modified cpuminer.  We will post it to github as soon as we get it working.  At the moment, we're only testing the getwork support, so if you're willing to help us test the stratum support, that would be appreciated.
45  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 19, 2014, 05:08:12 AM
finally found a block on 3 cpus mining all day. hooray!


Great!  The difficulty has raised quite high since release, but it sounds like you're on the right track.
46  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 19, 2014, 12:28:42 AM
Here's a command line (aptcoind) overview that might help:

Aptcoin basics:

Compiling on Debian/Ubuntu:

Code:
sudo apt-get install ntp git build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev libqrencode-dev
git clone https://github.com/aptcoin/aptcoin.git
cd aptcoin/src
make -f makefile.unix

Create config file:

Win7: C:\Users\Username\AppData\Roaming\aptcoin\aptcoin.conf
OS X: /home/User/Library/Application Support/aptcoin/aptcoin.conf
Linux: /home/User/.aptcoin/aptcoin.conf

Code:
rpcallowip=127.0.0.1
rpcuser=rpcuser
rpcpassword=rpcpass
addnode=199.127.225.232
addnode=199.127.225.195
addnode=199.127.225.191
addnode=50.7.47.93
addnode=50.56.225.246

Running a full Aptcoin node:

Code:
./aptcoind -daemon

Running a full Aptcoin node (while also mining):

Code:
./aptcoind -daemon -gen

Checking the status and confirmed balance:

Code:
./aptcoind getinfo

Showing combined confirmed and immature balance:

Code:
./aptcoind listaccounts

Showing mining info (your hashrate, network hashrate, etc):

Code:
./aptcoind getmininginfo

How to Send 10.25 APT to an address:

Code:
./aptcoind sendtoaddress AHc5z43eY5v6n2NTguVzyWkVtUrm1qvRYc 10.25
47  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 11:43:53 PM
Ok so now it passed that error but i got another mentioning once_atomic somewhere on boost folder being undefined... i cant copy paste right now...

We haven't seen this error.  You're on the latest github source and building on Linux?  Are you trying to build the daemon alone or the QT wallet?  Can you remove your tree and start over and paste any error you're seeing when you get a chance?  Several of our machines are debian based and we are able to cleanly build both QT and the daemon on there.  What distro are you using?

I am on the latest github source and building on ubuntu 13.10. I am trying to build the daemon.

I am getting this:

obj/bitcoinrpc.o: In function `call_once<void (*)()>':
/usr/local/include/boost/thread/pthread/once_atomic.hpp:145: undefined reference to `boost::thread_detail::enter_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:157: undefined reference to `boost::thread_detail::commit_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:153: undefined reference to `boost::thread_detail::rollback_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:145: undefined reference to `boost::thread_detail::enter_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:157: undefined reference to `boost::thread_detail::commit_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:153: undefined reference to `boost::thread_detail::rollback_once_region(boost::once_flag&)'
obj/util.o: In function `call_once<void (*)()>':
/usr/local/include/boost/thread/pthread/once_atomic.hpp:145: undefined reference to `boost::thread_detail::enter_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:157: undefined reference to `boost::thread_detail::commit_once_region(boost::once_flag&)'
/usr/local/include/boost/thread/pthread/once_atomic.hpp:153: undefined reference to `boost::thread_detail::rollback_once_region(boost::once_flag&)'
collect2: error: ld returned 1 exit status
make: *** [aptcoind] Error 1


It looks like a boost installation problem on your end.  A quick search found this, which may help:

https://github.com/bitcoin/bitcoin/issues/3697

EDIT: Found another
http://stackoverflow.com/questions/20726918/undefined-reference-to-boostthis-thread
48  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 08:53:35 PM
Thanks for the tip. Didn't get your error though, I'm getting this:
make: *** No rule to make target `build/miningpage.moc', needed by `build/miningpage.o'.  Stop.

and I think thats as far as I am gonna mess with this

Thanks for reporting this, we've updated the github to address this issue.
49  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 08:23:14 PM
Ok so now it passed that error but i got another mentioning once_atomic somewhere on boost folder being undefined... i cant copy paste right now...

We haven't seen this error.  You're on the latest github source and building on Linux?  Are you trying to build the daemon alone or the QT wallet?  Can you remove your tree and start over and paste any error you're seeing when you get a chance?  Several of our machines are debian based and we are able to cleanly build both QT and the daemon on there.  What distro are you using?
50  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 04:54:40 PM
We've added another node and increased the number of connections of each, since they were at capacity.  For those affected, connection problems to the nodes should no longer be an issue.

wont compile on linux. check the thread... it is asking about laqua or something...

This was fixed a while ago.  Give it a go, or download a binary.
51  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 04:31:02 PM
We've added another node and increased the number of connections of each, since they were at capacity.  For those affected, connection problems to the nodes should no longer be an issue.
52  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 18, 2014, 07:37:23 AM
Wallets have been updated. OSX and Windows wallet released. Please see the original post for all wallets.
53  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN][APT] Aptcoin★ASIC Resistant Scrypt In-Motion(NM) w/Aptcurve Retargeting on: August 18, 2014, 12:51:46 AM
Aptcoin

What is Aptcoin?

Aptcoin takes the changing N-factor a step further through having the N-factor change per block. The N-factor is effectively randomized and can jump between N-factors of 6-13. Unlike a released mining schedule that is completely transparent and changes within years of time Aptcoin dynamically changes N-factor and cannot be predicted.

Respect to Moore’s Law

Every two years the range of N-factor will increase by 1. In respect to Moore’s Law the power of hardware that will be released will be capable of mining an N-factor of 14 within a two-year time period.  

The random N-factors therefore will be between 7-14 within 2016, 8-15 within 2018 and so on.
~ Updated with Aptcurve details! ~

Please refer to this link: https://mega.nz/#!61B2jKzS!7Tho4XLnTPawRtkdbk6SF9rvn5sNkrN1LQ6NcDEezAM



Algorithm – Scrypt-iNMotion (Scrypt-NM)
Symbol – APT
Max Coins – 42 million APT
Block time – 5 minutes
Release time – 30 years before all coins are mined
Difficult Retarget Time – Every block using AptCurve
Main Net RPC port - 12946 (TestNet - 22946)
Main Net P2P port - 12945 (TestNet - 22945)

Premine – None. There is no premine with Aptcoin.

] –

Source
https://github.com/aptcoin/aptcoin.git

Windows Wallet
https://github.com/aptcoin/aptcoin/releases/download/0.9.0.2/aptcoin-qt-0.9.0.2.zip
Mirror:
https://mega.co.nz/#!m54xlI7Z!K_l4wfGorS4BzJUq8KomoSbw1BihuK6Hy8s2-W-6Fa4

OSX Wallet
https://github.com/aptcoin/aptcoin/releases/download/0.9.0.2/Aptcoin-Qt-0.9.0.2.dmg
Mirror:
https://mega.co.nz/#!7w5CESoY!8TDeUq9PyKKCWfG2iuRukzNqwY6dFiD-AdSDzy_SL40



Email - Aptcoin@safe-mail.net
Reddit – http://www.reddit.com/r/aptcoin
Twitter – http://www.twitter.com/aptcoin

How to Mine:

Currently Aptcoin is CPU minable only. Mining is simple with the built-in start mining button!


We will however rely on the community releasing modifications within their favorite GPU miners to allow hashing for Scrypt-NM.  

Save under aptcoin.conf (see below for platform specific location):

Win7: C:\Users\Username\AppData\Roaming\aptcoin\aptcoin.conf
OS X: /home/User/Library/Application Support/aptcoin/aptcoin.conf
Linux: /home/User/.aptcoin/aptcoin.conf

Code:
rpcallowip=127.0.0.1
rpcuser=rpcuser
rpcpassword=rpcpass
addnode=45.32.67.42
addnode=108.61.194.182
addnode=50.7.47.93
Pages: « 1 2 [3]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!