Bitcoin Forum
May 17, 2024, 12:20:52 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: April 03, 2015, 07:33:13 PM
Actually I'm not so happy with the decision to literally handover the whole idea of the coin, continuing to pay for the block explorer, the seed nodes, the domains and giving away all future plans and control into other hands, of course you can fork it into AnalCoin2 or whatever, but I'd really like to continue the project with the In-wallet trading, the android wallets etc. Its just not a matter of days.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: April 03, 2015, 07:17:03 PM
And I have already stated that I cannot afford or I am not willing to pay 0.5 BTC for the fix plus ?? BTC for the Android Wallets.

I will try to get it fixed myself and I can also compile the android wallets, as everything is open source, but this won't happen within 24h. This was originally intended to be a long-time project, not a hype-pump-dump.

Again: There was no premine, no IPO/ICO and this was meant to be a long-time fun-project, not a 24h/7days a week all-time coding/paying project where additions can be done within days and pushed out flawless, this is not NEM or ARCH with big funding and crew behind it. No one was "hurt" by mining this coin, no one had to buy into a ICO/IPO with any promises here.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: April 03, 2015, 07:05:09 PM
Oh this was not planned as a "Coin of Innovation" - it was mostly a hobby project and of course a funcoin.

We've already invested quite some funds into the Block Explorer - the domains etc. and of course want to proceed with the coin and your promo is awesome but we cannot work 24x7 on the coin since there was no premine at all and we're paying everything from our own pockets.

0.5 BTC is a lot without any funding, since you already organized some "crowdfunding" for giveaways etc. it'll probably best if we/you pay in analtoshis after the price has been fixed.

Nice of you to surface again after some time that the chain has been limping along with problematic POS and people have started making plans for a wallet fix and hard fork. Please be more active and present if you want to make sure that the coin is successful - hobby project or not. It is one thing to not have funds due to there being no pre-mine and that just impacts timelines and delivery of plans. It is a completely different thing to disappear and not show face. Even with no funds one can show face once in a while to say you are still around, do things like update OP and give direction or talk strategy. There is also a difference between 24/7 which no-one is asking for and 1 hour in 2 days or so at least. It is a requirement for major listings for a coin to have an active dev.

I am sure everyone is glad that you are around and I am sure that you agree that the number one priority now is to to fix the wallet, POS and do the hard fork. I still wonder how you missed the code errors?



This started as a two-man (fun-) project, one left the project for personal reasons, he might come back later sometime but for this time one person is currently left alone but I agree with you and I'll try to be more active.

The fix is currently most important - yes - however there are no funds left on my side to pay for that, so I might try to fix it on my own or - if the community likes to - a crowdfunding would be most desirable.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: April 03, 2015, 06:42:30 PM
Oh this was not planned as a "Coin of Innovation" - it was mostly a hobby project and of course a funcoin.

We've already invested quite some funds into the Block Explorer - the domains etc. and of course want to proceed with the coin and your promo is awesome but we cannot work 24x7 on the coin since there was no premine at all and we're paying everything from our own pockets.

0.5 BTC is a lot without any funding, since you already organized some "crowdfunding" for giveaways etc. it'll probably best if we/you pay in analtoshis after the price has been fixed.
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: April 03, 2015, 06:27:08 PM
My friend Billotronic asked me to look at this coin for him to see whats up with it.

The staking code grabs the stake reward, and if the result is zero it returns false and no stake is found:
Code:
int64_t nReward = GetProofOfStakeReward(nCoinAge, nFees);
        if (nReward <= 0)
            return false;

I was able to verify that this is what was causing an otherwise good stake to fail.

The proof of stake reward code is very ugly and it is what is causing the chain to fail without transactions. I will show you a real example from the blockchain and the how the reward changes throughout this code. See my comments in red. This is a stake that happened with coin age = 1034
Code:
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 25 / (365 * 25 + 8); //2.5% per year interest compounded everytime we stake
    At this point nSubsidy = 8491185 (analtoshis)

Code:
    //first divide what we get by 100000000 so we don't have to write COIN all the time after it.
    //we multiply it by 100000000 later.
    nSubsidy /= 100000000;
Now nSubsidy is 0 because we can't make an integer smaller than 1.

Code:
    // 3 coins extra stake reward to give staking incentive 
    nSubsidy += 3;
now nSubsidy is 3
Code:
        //need more coins in the input to get the bigger rewards 
        if (nSubsidy < 10.010) nSubsidy = 0.010;
now nSubsidy is 0 again

Code:
       nSubsidy *= COIN;

       return nSubsidy + nFees;
It remains 0 until the fees are added to the subsidy at the very end. So if no one is paying transaction fees, then no stakes will happen.
   
This requires a hard fork to fix.

Thanks for digging into the code, can you just create a pull request so we can merge that into the code and update the daemon/wallets ?
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 29, 2015, 10:46:00 AM
Thanks for the Wallets ! Updated the OP, lets get the last blocks rocked !
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 22, 2015, 03:26:37 PM

Thank you! Much appreciated!

Idea for an updated coin design for Analcoin;



Feeback please. Also can the main Dev let us know whethere there will be Android and iOS Mobile wallets please? Think it's a must.

vote for new logo Smiley

Logo is a mash up. Have the source. I think we should use it as a temporary logo and later on replace it with a better "hand crafted" version.

Very nice Logo, it has been added to the OP.

Who can create a Android and iOS Mobile Wallet for us ? Please send them to me and we'll add the wallets ASAP !
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 20, 2015, 08:46:53 PM
Block Explorer has been added to OP.

Hopefully Exchanges will follow soon, progress is still looking good, you cannot go so fast with Anal, it takes time, especially when it is the first time.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 19, 2015, 07:37:02 AM
It is not planned to raise PoS % in any way, PoS is mainly needed/used for long-time acceptance of the coin and to "keep the chain moving".

Currently everything is working as expected, Stake is quite low but thats okay, PoW has not even ended yet and as soon as we're at a Exchange which our API accepts (C-Cex/Bittrex) the Wallet with Trading Features will be released.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 17, 2015, 07:03:48 PM

Yay ! Here wo go with our first Exchange !

Lets spread the word to get ANAL around the world  !


BTW: We LOVE Buttman's Adventures ! ;-)
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 15, 2015, 07:09:23 PM
We're glad POS is working fine.

Next step would be an Exchange, please tweet/msg them to add ANAL, we'll then upgrade the wallet for in-wallet trading - Analysts love that Smiley

A name/logo change is not possible, as this is what makes out the coin - create a bigger acceptance for Analysts.

DarkAnal is not yet planned - but maybe, if Exchanges pick it up and in-wallet trading is working fine - next step might be Anal mixing / AnalSend etc.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 300k coins | IN-WLT TRDNG ! | LAUNCHED !!! on: March 13, 2015, 10:45:52 PM
We are currently trying to get a block explorer up and running to see what is/was going on, diff was really crazy during launch, it should have ramped up much, much faster, we are about 1000 blocks more now than expected.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 09:27:25 PM
Block Reward is still at 3 blocks from testing, instead of relaunching, we've just updated the OP with the new coin specs, everything is halved now Smiley
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 09:17:36 PM
Wallet doesnt work on windows 7. say it miss a DLL

Yes, I have prepared dlls for this situations. https://mega.co.nz/#!n14l0aAQ!_-50yx-m4C-S_hEpCt8EJuqGqY0ATX7_wSzQiXElfk8

thanks, we will add them to the wallet soon !
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 09:09:09 PM
Ugh.. Suprnova is up but the Diff Retarget seems to be broken ??! Not sure atm...

Diff is okay now.. we should probably do 200 instead of 100 anti-instamine blocks... ass hurts a bit..
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 09:00:55 PM
Source: http://github.com/analcoin/analcoin
Windows: http://www.mediafire.com/download/yrbbbhia4hjgzb2/Analcoin-1.0-Win.rar


First 100 blocks are 0 reward because of diff retargeting
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 07:01:04 PM
Found an error while compiling the Win Wallet, fixing this now but postponing for one hour as we need to test again, thanks for your understanding.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 03:08:26 PM
So far it is just another coin. Your OP looks like the dev's a$$. Can you update some more info on the OP to see if this coin has any potential or if it will just be flushed down the toilet?

Sure, what do you want to read/hear ?

We'll be releasing the wallet without in-wallet trading first, as there is simply no exchange which has ANAL listed yet, after it gets added, the wallet will be updated and In-Wallet-Trading will be enabled.

Later on (approximately after about 14 days) we plan to have multiple currencies tradeable from the wallet.

What I can gather so far then that is impotant:

1) Plan for the coin is to have in-wallet trading.
2) POW will be approximately 23 days.
3) 40s block time seems better than the other 4 and 5 minute block times that came out recently.

Some more questions:
1) Is there a premine?
2) Any other plans except for having a coin that can trade in-wallet?
3) How will you keep interest by the miners after the 2nd week of POW, especially as it will be very expensive to mine over such a long period?
4) How will you keep interest after POS kicks in @ 2.25% with 24 hours min coin age?
5) Is the wallet coingen or coincreator?
6) What will give Anal the edge over all the other coins?

1) No premine

2) Later on I'll be trying to get some extra features for the coin, but currently i'm focused on a decent launch, decent POS kick-in etc. It all works on Testnet but it is still something different on mainnet.

3) See 2

4) See 2

5) No

6) The name :-)

@SockPuppetAcc:
Yes, this is my first coin.
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 09:08:15 AM
So far it is just another coin. Your OP looks like the dev's a$$. Can you update some more info on the OP to see if this coin has any potential or if it will just be flushed down the toilet?

Sure, what do you want to read/hear ?

We'll be releasing the wallet without in-wallet trading first, as there is simply no exchange which has ANAL listed yet, after it gets added, the wallet will be updated and In-Wallet-Trading will be enabled.

Later on (approximately after about 14 days) we plan to have multiple currencies tradeable from the wallet.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: AnaLCoin | SHA256 | POW/POS | 600k coins | IN-WLT TRDNG ! | LAUNCH FRIDAY on: March 13, 2015, 07:42:17 AM
Tonight is the night.. First ANAL in crypto ever Smiley

Thank you Minerpools for the pool, thanks for the Logos, we have added them to the OP too !
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!