Bitcoin Forum
August 16, 2025, 01:36:05 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 1741 »
  Print  
Author Topic: [ANN] Blacknet BLN | Staking | Future of zApp & ZeFi  (Read 2510983 times)
CoinBitch
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
February 26, 2014, 10:45:10 AM
 #1461

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question
derBruchpilotPro
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
February 26, 2014, 10:56:23 AM
 #1462

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question


Thats the function in the source:

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
    int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


COIN_YEAR_REWARD = 0.01 (1%)

But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?


edit: typo



NEM/XEM!!!
nrg_wolf
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
February 26, 2014, 11:04:48 AM
 #1463

if all blackcoin is mined in just a few days, what does that mean for long term life of the coin?
Sparkzor
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 26, 2014, 11:11:19 AM
 #1464

Renting is (almost) unprofitable right now. Diff is 100, close to 120. I wouldn't suggest doing that. Just scoop up at 15 and keep until Pos.
I've gotten 11k tonight... I think 11k is worth more than 0.08  Grin
Collegestudent
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500

The blockchain is the future


View Profile
February 26, 2014, 11:14:37 AM
 #1465

Is this http://bc.crypto-coinz.com mining pool trusted? thinking of joining the Black Coins boat Cheesy
Miner232432
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 26, 2014, 11:16:10 AM
 #1466

Is this http://bc.crypto-coinz.com mining pool trusted? thinking of joining the Black Coins boat Cheesy

Cyrpto-coinz are good, I used them myself over last few days since launch

I am blunt, don't like it ? Too bad
deliciousham
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
February 26, 2014, 11:16:55 AM
 #1467

if all blackcoin is mined in just a few days, what does that mean for long term life of the coin?

POS after initial POW mining is done
thenukemforall
Sr. Member
****
Offline Offline

Activity: 273
Merit: 250


View Profile
February 26, 2014, 11:17:19 AM
 #1468

this pool didn't work really well for me, a lot of stratum disconnect, but that was yesterday. Maybe it's working fine now.
thisisnotmyltcusername
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
February 26, 2014, 11:22:57 AM
 #1469

I see that dedicated says it takes 8 hours to get your coins from the pool! Is this the case for every pool?

I don't understand what's going on with dedicated. I get the huge confirmations part, but we're beyond that...
I got 2280 CONFIRMED blackcoins, autopayout didn't work, I lowered to 1000 autopayout, still nothing, I tried manual payout, nothing happened either.
and all of this with last confirmed block in the 25xx and we're in the 30xx mined, so the 480 confirmations are behind us... something must be broken or some payout cron job halted...
BachMann
Member
**
Offline Offline

Activity: 113
Merit: 10


View Profile
February 26, 2014, 11:27:29 AM
 #1470

I see that dedicated says it takes 8 hours to get your coins from the pool! Is this the case for every pool?

I don't understand what's going on with dedicated. I get the huge confirmations part, but we're beyond that...
I got 2280 CONFIRMED blackcoins, autopayout didn't work, I lowered to 1000 autopayout, still nothing, I tried manual payout, nothing happened either.
and all of this with last confirmed block in the 25xx and we're in the 30xx mined, so the 480 confirmations are behind us... something must be broken or some payout cron job halted...

** ALERT: PAYOUTS take EIGHT (Cool hours or 480 confirms to mature. I spoke with the devs, please see this: http://pastebin.com/raw.php?i=Bc8cq1bt.
** Because this is a PoS coin it withholds coins from our server wallet for EIGHT (Cool hours after blocks are confirmed.
** For more information on PoS coins: https://en.bitcoin.it/wiki/Proof_of_Stake

** Your balances may be negative or coins seem "missing" because I changed the confirms from 120 to 480. This will correct as the coins mature again and will be added back to your account.

Autopayout not working for me either, maybe because i dont want to donate 1% on top of 2% fee?
Jonesd
Legendary
*
Offline Offline

Activity: 1876
Merit: 1014



View Profile
February 26, 2014, 11:40:32 AM
 #1471

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question


Thats the function in the source:

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
    int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


COIN_YEAR_REWARD = 0.01 (1%)

But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?


edit: typo


Thanks for the feedback. So it really is 1%. This basically means it is a pure POW coin, since nobody will be really interested in the PoS rewards, I think.

Co-Founder and Managing Partner of Block Bastards
bitwarrior
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile
February 26, 2014, 11:44:21 AM
 #1472

The demand for this new coin is really amazing. 14.26 TH/s !!! network hash.

Any ideas on how much would be this trading after 1 week?
Hampuz
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 26, 2014, 11:46:45 AM
 #1473

The demand for this new coin is really amazing. 14.26 TH/s !!! network hash.

Any ideas on how much would be this trading after 1 week?

Dont you mean 14.26 Gh/s?

Anyways on the value point, my prediction is initially 5-10K satoshis. Somewhere in between that range.

More would not be impossible.

$0.5 each would mean a market cap of $50M.  Might sound like a lot, but if all is done correctly, and the dev(s) have some good things coming, this could easily see that by the end of this year.
suncoastbuddy
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 26, 2014, 11:58:52 AM
 #1474

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question


Thats the function in the source:

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
    int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


COIN_YEAR_REWARD = 0.01 (1%)

But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?


edit: typo


Thanks for the feedback. So it really is 1%. This basically means it is a pure POW coin, since nobody will be really interested in the PoS rewards, I think.

I think you really need to consider the compound interest.  1% of the 1% 3 times a day could add up fairly quickly.
artiface
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
February 26, 2014, 12:00:20 PM
 #1475

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question


Thats the function in the source:

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
    int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


COIN_YEAR_REWARD = 0.01 (1%)

But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?


edit: typo


Thanks for the feedback. So it really is 1%. This basically means it is a pure POW coin, since nobody will be really interested in the PoS rewards, I think.


As has been said a thousand times in this thread it is 1% nominal interest.  That 1% can be compounded as much as every 8 hours.   If you don't understand what compound interest means then go look it up.  If you don't think that will be enough POS then don't bother, leave it to the people who actually understand.  
mr.pj
Sr. Member
****
Offline Offline

Activity: 258
Merit: 250


View Profile
February 26, 2014, 12:02:57 PM
 #1476

Still looking for a pool to mine at?

Check out my p2pnode at http://p2pools.cryptoprojects.eu:9336/static/
paniczklos
Full Member
***
Offline Offline

Activity: 322
Merit: 101


View Profile
February 26, 2014, 12:03:14 PM
 #1477



blackcoin p2pool node
GREAT FOR MASSIVE MINERS - CURRENTLY THE NODE IS @ 400Mhs!
http://freebtc.eu:8336/
1% fee
USAGE:

Code:
cgminer.exe -o freebtc.eu:8336 - u your_wallet_address -p x
Jabulon
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile WWW
February 26, 2014, 12:04:21 PM
 #1478

This may have been asked/answered elsewhere but I've looked and cannot find anything straightforward, either here or or blackcoin.co:

How do you set your BC wallet up for PoS minting? After wallet encrypt it shows stake miner locked for minting.

Is it done with a simple command in debug console? If so, what is the exact command?

Or is it something more complicated, involving setup of a .conf in your %appdata% folder? Again, details please, if this is the way.

Please make reply PoS-noob friendly, I have never done this setup before. Thanks very much.

Visit NightBark Music, home of the BlackCoin Music Video! https://www.youtube.com/user/nightbarkmusic
asdlolciterquit
Hero Member
*****
Offline Offline

Activity: 1666
Merit: 565


View Profile
February 26, 2014, 12:07:25 PM
 #1479

Hi,

The stake of 1% annually. Does this mean you get 1% extra coins per year? (Much lower than with MINT or EBT)

Anybody?

i am also very interested in an answer to this very important question


Thats the function in the source:

Code:
// miner's coin stake reward based on coin age spent (coin-days)
int64 GetProofOfStakeReward(int64 nCoinAge, int64 nFees)
{
    int64 nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}


COIN_YEAR_REWARD = 0.01 (1%)

But I couldn't figure it out when and how often it applies.
Maybe a DEV could help to understand this better?


edit: typo


Thanks for the feedback. So it really is 1%. This basically means it is a pure POW coin, since nobody will be really interested in the PoS rewards, I think.

I think you really need to consider the compound interest.  1% of the 1% 3 times a day could add up fairly quickly.

can anyone say how much is it with the compound interest?
i made some math, but it's seem (maybe i'm wrong) that in very few higher than 1% year Sad
yannis7777
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 26, 2014, 12:07:43 PM
 #1480

This may have been asked/answered elsewhere but I've looked and cannot find anything straightforward, either here or or blackcoin.co:

How do you set your BC wallet up for PoS minting? After wallet encrypt it shows stake miner locked for minting.

Is it done with a simple command in debug console? If so, what is the exact command?

Or is it something more complicated, involving setup of a .conf in your %appdata% folder? Again, details please, if this is the way.

Please make reply PoS-noob friendly, I have never done this setup before. Thanks very much.
I second that. Well said.

DOGE: DDsZd5Ekyz95ndodQZpChpspR2PstTdNQY
Pages: « 1 ... 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 1741 »
  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!