Bitcoin Forum
May 05, 2024, 01:36:35 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 ... 215 »
  Print  
Author Topic: [ANN] Slimcoin : Proof of Burn NEW BLOCK GEN, Mineable by low power computer!  (Read 284891 times)
MOCKBA
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
May 29, 2014, 05:33:30 PM
 #581

how much khash do you guys get? I got an old Core i5 750 and I have 4 x 0.45khash. Is that even worth mining? ^^
That's what I have been running (same hash rate) since block ~170 and have not found any blocks in about 15+ hours.
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
"Your bitcoin is secured in a way that is physically impossible for others to access, no matter for what reason, no matter how good the excuse, no matter a majority of miners, no matter what." -- Greg Maxwell
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
1714872995
Hero Member
*
Offline Offline

Posts: 1714872995

View Profile Personal Message (Offline)

Ignore
1714872995
Reply with quote  #2

1714872995
Report to moderator
Givatoshi_Moremoto
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
May 29, 2014, 05:35:45 PM
 #582

ok I did 3 burns before I went to sleep

3 slm
3 slm
6 slm

after burning I waited for 6 burn confirms, looked like I wasted my coins and went to sleep
I woke up just now, and I found 2 transactions of

80.32 and 64.62

so I'm guessing those 2 are POB transactions.
what I don't understand is when does the burn transaction come in? I thought it was immediately after the POW block? which meant I waited to to see that since I waited until burn was confirmed 6 times.
does effective burnt coins and decayed burnt coins have something to do with that?
effective burnt coins meaning its hash is still effective in finding POB block? decayed meaning it is spent?
tz
Sr. Member
****
Offline Offline

Activity: 350
Merit: 251


View Profile
May 29, 2014, 05:38:05 PM
 #583

Is there any external miner that works with this coin? Mining with the wallet is annoying like hell for me...
prix
Hero Member
*****
Offline Offline

Activity: 750
Merit: 511


View Profile
May 29, 2014, 05:40:47 PM
 #584

Dev, if I burn some coins (17 SLC as example) they will participate in the generation of POB block until they decay?
How long? How can i calculate this? What is the rate of decay?
If I send to burn 17 SLC now and network state will not change (difficulty, burn coins count, etc) how many POB blocks I find this month, a year?

I can calculate my profitability for POW mining, but in the case of POB is a lottery for me.

It would be great to see a detailed example with formulas.
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
May 29, 2014, 05:41:34 PM
 #585

Dev, if I burn some coins (17 SLC as example) they will participate in the generation of POB block until they decay?
How long? How can i calculate this? What is the rate of decay?
If I send to burn 17 SLC now and network state will not change (difficulty, burn coins count, etc) how many POB blocks I find this month, a year?

I can calculate my profitability for POW mining, but in the case of POB is a lottery for me.

It would be great to see a detailed example with formulas.


Good luck getting an answer...
slimcoin (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile WWW
May 29, 2014, 05:56:45 PM
 #586


Quote
Dev, if I burn some coins (17 SLC as example) they will participate in the generation of POB block until they decay?
Coins decay steadily, halving in effectiveness every ~1 year. Here is the exact formula from the source code comments:
Code:
  /*slimcoin: a burn hash is calculated by:
   * hash = (c / b) * 2 ** ((nPoWBlocks - M) / E) * [Hash]
   *
   * Where: c = BURN_CONSTANT
   *        b = amount of coins burned
   *        nPoWBlocks = the number of proof of work blocks between (not including)
   *                     the blocks with heights last_BlkNHeight and burned_BlkNHeight
   *                         where
   *                             last_BlkNHeight = the height of the last block in the chain
   *                             burned_BlkNHeight = the height of the block at the time of the burning
   *        M = BURN_MIN_CONFIRMS (6), the required amount of proof of work blocks between (not including)
   *                                   the block at the time of burning and the last block in the chain
   *                                   The offset by M allows for the first burn block the burnt coins
   *                                   can hash to be at 100% strength and decay from there, instead of having
   *                                   the coins slightly decayed from the beginning
   *        E = BURN_HASH_DOUBLE (350000.0), an exponential constant which causes
   *                                   burnt coins to produce slightly larger hashes as time passes
   *
   *        [Hash] = Hash(burntBlockHash ++ burnWTx.GetHash() ++ hashBestBlock)
   *        Where: burntBlockHash = the hash of the block the transaction is found ing
   *               burnTx.GetHash() = the hash of this transaction
   *               hashBestBlock = the hash of the best proof-of-work block in the chain at the time of hashing
   */

Quote
If I send to burn 17 SLC now and network state will not change (difficulty, burn coins count, etc) how many POB blocks I find this month, a year?
A PoB block is found every 1-3 PoW blocks, (every 90-270 seconds). Currently there are 3130 burnt coins, burning 17 coins means that out of every 200 PoB blocks, about 1 will be yours. It would take about (at the absolute worst of 270 seconds between PoB blocks) 15 hours for you to get 1 PoB block. That number may vary as the difficulty may go up, or you get lucky and hit 2 PoB blocks in that time.

-Much Donate
BTC-1D5pnma7E1CP6cquHujycVy79EyXJ3eY
glop
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
May 29, 2014, 05:58:41 PM
 #587

Is there any external miner that works with this coin? Mining with the wallet is annoying like hell for me...

https://github.com/slimcoin/slimminer
Givatoshi_Moremoto
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
May 29, 2014, 06:08:27 PM
 #588

how to do check for total burnt coins?
after getting my return and clearer explanation on how pob works
I decided to burn all of my 2 mined blocks that matured.
which is 51.59 coins.
I'm trying to calculate probability of hitting pob blocks with my investment
BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
May 29, 2014, 06:09:05 PM
 #589


Quote
Dev, if I burn some coins (17 SLC as example) they will participate in the generation of POB block until they decay?
Coins decay steadily, halving in effectiveness every ~1 year. Here is the exact formula from the source code comments:
Code:
  /*slimcoin: a burn hash is calculated by:
   * hash = (c / b) * 2 ** ((nPoWBlocks - M) / E) * [Hash]
   *
   * Where: c = BURN_CONSTANT
   *        b = amount of coins burned
   *        nPoWBlocks = the number of proof of work blocks between (not including)
   *                     the blocks with heights last_BlkNHeight and burned_BlkNHeight
   *                         where
   *                             last_BlkNHeight = the height of the last block in the chain
   *                             burned_BlkNHeight = the height of the block at the time of the burning
   *        M = BURN_MIN_CONFIRMS (6), the required amount of proof of work blocks between (not including)
   *                                   the block at the time of burning and the last block in the chain
   *                                   The offset by M allows for the first burn block the burnt coins
   *                                   can hash to be at 100% strength and decay from there, instead of having
   *                                   the coins slightly decayed from the beginning
   *        E = BURN_HASH_DOUBLE (350000.0), an exponential constant which causes
   *                                   burnt coins to produce slightly larger hashes as time passes
   *
   *        [Hash] = Hash(burntBlockHash ++ burnWTx.GetHash() ++ hashBestBlock)
   *        Where: burntBlockHash = the hash of the block the transaction is found ing
   *               burnTx.GetHash() = the hash of this transaction
   *               hashBestBlock = the hash of the best proof-of-work block in the chain at the time of hashing
   */

Quote
If I send to burn 17 SLC now and network state will not change (difficulty, burn coins count, etc) how many POB blocks I find this month, a year?
A PoB block is found every 1-3 PoW blocks, (every 90-270 seconds). Currently there are 3130 burnt coins, burning 17 coins means that out of every 200 PoB blocks, about 1 will be yours. It would take about (at the absolute worst of 270 seconds between PoB blocks) 15 hours for you to get 1 PoB block. That number may vary as the difficulty may go up, or you get lucky and hit 2 PoB blocks in that time.

For a moment you had me thinking that this did not work how I originally assumed that it did. It does, in fact, work very well indeed.

New release of the year imho - congrats! " Let it Burn " - https://www.youtube.com/watch?v=_Ahc-oEFQ7k   Cheesy

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
slimcoin (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile WWW
May 29, 2014, 06:10:33 PM
 #590

Quote
how to do check for total burnt coins?

Type getburndata in the debug console, look at the entry "Formatted nEffectiveBurnCoins"

-Much Donate
BTC-1D5pnma7E1CP6cquHujycVy79EyXJ3eY
prix
Hero Member
*****
Offline Offline

Activity: 750
Merit: 511


View Profile
May 29, 2014, 06:12:19 PM
 #591

Dev, thanks for explanation.

If I understand correctly, the most profitable strategy for the long interval of time will burn all the coins without delay?
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
May 29, 2014, 06:12:27 PM
 #592

Someone has just burned 400 coins. Is it safe to burn all mined coins as interest will be returned via PoB blocks via the next 200 PoB blocks ?
Givatoshi_Moremoto
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
May 29, 2014, 06:16:04 PM
 #593

Quote
how to do check for total burnt coins?

Type getburndata in the debug console, look at the entry "Formatted nEffectiveBurnCoins"


Thanks you

my probability is about 1.47% which is about 3 outta 200 POB block.
prix
Hero Member
*****
Offline Offline

Activity: 750
Merit: 511


View Profile
May 29, 2014, 06:17:05 PM
 #594

Someone has just burned 400 coins. Is it safe to burn all mined coins as interest will be returned via PoB blocks via the next 200 PoB blocks ?
Current burnt coins count is: 3503.602781
With 400 you get every ninth POB block if the number of burnt coins will not change.
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
May 29, 2014, 06:18:23 PM
 #595

Someone has just burned 400 coins. Is it safe to burn all mined coins as interest will be returned via PoB blocks via the next 200 PoB blocks ?
Current burnt coins count is: 3503.602781
With 400 you get every ninth POB block if the number of burnt coins will not change.

Just a warning to everyone, i've burned 370 coins in the last 3-4 hours and have not seen a single PoB block come in 'out of schedule'. I;ve only received PoB rewards right after the burn.
glop
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
May 29, 2014, 06:18:55 PM
 #596

Someone has just burned 400 coins. Is it safe to burn all mined coins as interest will be returned via PoB blocks via the next 200 PoB blocks ?
Current burnt coins count is: 3503.602781
With 400 you get every ninth POB block if the number of burnt coins will not change.

  But it quickly will !!!
prix
Hero Member
*****
Offline Offline

Activity: 750
Merit: 511


View Profile
May 29, 2014, 06:22:30 PM
 #597

Just a warning to everyone, i've burned 370 coins in the last 3-4 hours and have not seen a single PoB block come in 'out of schedule'. I;ve only received PoB rewards right after the burn.
It's strange. Dev can you explain this?
TheMightyX
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250

Vires in Numeris


View Profile
May 29, 2014, 06:28:50 PM
 #598

What is the benefit of mining with the slimminer?
any increased efficiency?
kdfspam
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
May 29, 2014, 06:32:48 PM
 #599

Any pool on the horizon?  I've come up completely empty so far.
glop
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
May 29, 2014, 06:37:36 PM
 #600

What is the benefit of mining with the slimminer?
any increased efficiency?

I compiled slimminer on Windows (it's my first compiled program on C for last 10 years)
and I found no difference in performance: about 0.45 kH/s per amd core.

  Normal i think, because wallet uses slimminer....itself ?
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 ... 215 »
  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!