Bitcoin Forum
May 25, 2024, 12:13:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 ... 164 »
361  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 08, 2014, 08:46:09 PM
15 min to go.

People receiving pizza: PM me where you want pizza to go
People sending pizza: I will PM you where to send it, PM me an address in the meantime
362  Alternate cryptocurrencies / Altcoin Discussion / Re: NXT/NEM or Monero/Bytecoin? on: June 08, 2014, 08:37:44 PM
What sort of flaws have been discovered in the code for Monero?

There aren't any major ones, but there is stuff that needs to be cleaned up and fixed (like the database issue). The protocol is PoW, so security models similar to that of Bitcoin.
363  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Economy on: June 08, 2014, 08:30:57 PM
I will be formalizing the proposal for the fixing of blockreward at year end of year 10 of Monero emission; a couple of charts are below:


A is the current projection.
B is the fixed subsidy projection.

As you can see from the images, there is only slight inflation at this time.
Final block subsidy: 0.117061151915
Inflation starting at year 11: 0.335774683775%
Inflation starting at year 20: 0.325925311615%

Code:
import math

M = math.pow(2, 64) - 1
total_supply = 0
YEARS = 20

f = open('monero_calculator.txt', 'w')
f.write('Year\tCoin supply\tInflation\n')

# Unlimited subsidy decreases (ByteCoin code)
for i in range (1,YEARS+1):
    beginning_supply = total_supply

    for j in range (1,525601): # 525600 blocks/year
        block_subsidy = (M - total_supply) / math.pow(2, 20) # Atomic
        total_supply += block_subsidy

    inflation = 0
    if beginning_supply == 0:
        pass # Infinite for year 1
    else:
        inflation = total_supply / beginning_supply

    total_supply_in_monero = total_supply / math.pow(10, 12) # Moneros
    inflation_in_percent = (inflation * 100) - 100
    f.write(str(i) + '\t' + str(total_supply_in_monero) + '\t' + str(inflation_in_percent) + '\n')

f.write('\n')

total_supply = 0
last_block_subsidy = 0 # Usde to get the block_subsidy for year end of year 10

# Subsidy fixing after 10 years
for i in range (1,YEARS+1):
    beginning_supply = total_supply

    for j in range (1,525601): # 525600 blocks/year
        if (i <= 10):
            block_subsidy = (M - total_supply) / math.pow(2, 20) # Atomic
            last_block_subsidy = block_subsidy
        else:
            block_subsidy = last_block_subsidy
        total_supply += block_subsidy

    inflation = 0
    if beginning_supply == 0:
        pass # Infinite for year 1
    else:
        inflation = total_supply / beginning_supply

    total_supply_in_monero = total_supply / math.pow(10, 12) # Moneros
    inflation_in_percent = (inflation * 100) - 100
    f.write(str(i) + '\t' + str(total_supply_in_monero) + '\t' + str(inflation_in_percent) + '\n')

f.write('\n')
f.write("Final block subsidy at year 10 end: " + str(last_block_subsidy / math.pow(10, 12)))
f.close()
364  Alternate cryptocurrencies / Altcoin Discussion / Re: rpietila Altcoin Observer on: June 08, 2014, 06:33:34 PM
And these are the two greatest threats to a Bitcoin-style monetary system.

Personally I'm more worried of things like inability to scale, government 51% kill switch through massive NSA-owned ASIC farms and quantum computers.

A kill switch would never be used.  Centralization will not be used as a kill switch, but rather to force the network to an evolved protocol which serves the interest of the central entity.  There is essentially no probability that the interests of the centralizer would be optimized by killing a dominant coin.

In the long run PoW just will not work, for that reason, if that outcome is deemed a failure mode.  SlipperySlope's CPoS is the best alternative I've seen so far.  I also like that scheme because it should be pretty straightforward to refactor the block chain storage format to distribute it, in that scheme, which would solve the scalability issue.  It would not require much bandwidth, if the refactor kept transaction threads confined to cliques.  Then you could keep a full node on a cellphone.

See my PoW/PoS hybrid in MC2. I still like the scheme, though I'm unsure about some incentives issues regarding it (it'll be interesting so see how it plays out upon release).
365  Alternate cryptocurrencies / Altcoin Discussion / Re: rpietila Altcoin Observer on: June 08, 2014, 05:10:26 PM
Quote
Suppose a coin has its block subsidy reduced to 1/10th of what it was yesterday. Some miners will bail, thinking its not worth their effort, and some will stay. Thus there is a mining equilibrium as a self-adjustment mechanism. If fewer stay, more get the fees. The paradox lies in expecting a constant number of miners from the POW inflation phase to the tx fee phase.
I feel this sentiment is security agnostic.

Quote
So you have the mining equilibrium plus the stakeholder backup to secure the network.
I feel this sentiment is centralisation agnostic.

And these are the two greatest threats to a Bitcoin-style monetary system.
366  Alternate cryptocurrencies / Altcoin Discussion / Re: rpietila Altcoin Observer on: June 08, 2014, 04:50:38 PM
A coin with mandatory inflation via block subsidy will likely have less fees than one dependent on fees, I believe. This is because miners are less dependent on fees to survive.

My feelings are that Bitcoin's dependence on fees will in the long run drive Bitcoin transactions off-chain, as there will likely need to be substantial, expensive fees required in order to secure the blockchain. Then we get all the same problems with do with gold-backed currencies issued with banks, and the blockchain will only be used to do things like bank-to-bank overnight transactions.

Further, a consensus on standard fees and cost to transact on the Bitcoin blockchain will be approached, which I think is further centralization. Deflation from random, unpredictable loss of supply also makes Bitcoin prone to wild speculation and volatility, which will make it improbable for use as an everyday store of value (like gold).
367  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Economy on: June 08, 2014, 04:26:04 PM
To oversimplify...
So the Monero group mined them at about 100... sold around 500...
And all the bagholders are happy with the "next Bitcoin" at 200 and sinking...
Wow... it's really smart to be 50% under water when you own the "next Bitcoin".

We still have all our monero.

The whales sold -- as whales do.
368  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 08, 2014, 02:56:29 PM
Auction ending today! Get some cheap XMR for sending someone pizza!
369  Alternate cryptocurrencies / Altcoin Discussion / Re: Bounty for open source ByteCoin/Monero GUI on: June 08, 2014, 02:37:49 PM
Know you guys have your hands full. Thought this might be the proper time to suggest a built-in fee calculator for regular/mixed transactions. Unknown transaction fees always bothered me about QT clients. Keep up the fine work.

Right now fees are calculated as flat for all tx, at 0.005. If there is a lot of dust, it goes a bit higher, close to 0.01.
370  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero Economy on: June 08, 2014, 04:13:33 AM
After checking out some threads it seems like monero is the most possible to be just a scam. Ill investigate more...

Indeed.
371  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - Secure, private, untraceable cryptocurrency on: June 07, 2014, 11:48:03 PM
Something like 2/3 of all my withdrawals from poloniex are failing. Support doesn't seem to offer much help other than "try a smaller amount". It's an intermittent issue, in that sometimes a withdrawal of a given amount will work, and sometimes it won't. Just wondering if the Monero devs are working with Poloniex on this?

Yes, see issues on monero-project
372  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 07, 2014, 07:36:26 PM
A little over 24 h left.
373  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BCN] Bytecoin (CPU-mining, true anonymity) on: June 06, 2014, 06:42:33 PM
As you might remember, a couple of weeks ago I posted a screenshot of some text hidden in the Bytecoin's blockchain (with a string from Cyphernomicon):
https://bitcointalk.org/index.php?topic=512747.msg6747877#msg6747877

Looks like I've found something extremely interesting

I had to do bit of a work...

I think we should be looking for PGP-armour styled signatures in this blockchain.
374  Alternate cryptocurrencies / Altcoin Discussion / Re: Monero (MRO) Speculation thread on: June 06, 2014, 06:02:39 PM

It's like Bitcoin in 2009/2010.

At that time, we had LibertyReserve, e-Gold, etc etc competing.

We all know who won out: the group with the technology that worked and was fraud/insecurity resistant.
375  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - Secure, private, untraceable cryptocurrency on: June 06, 2014, 05:30:53 PM
What's the difference between Monero and Vericoin?

Monero: CryptoNote codebase
VeriCoin: Fork of PoS coins, Bitcoin codebase, broken PoS consensus algorithm
376  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 06, 2014, 05:26:04 PM
updated
377  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - Secure, private, untraceable cryptocurrency on: June 05, 2014, 09:52:29 PM
^^

37e8100b4cd37e616d5ea1575a7d1732e7c176072ed42c577373bed42ecbef3c
https://minergate.com/blockchain/mro/transaction/37e8100b4cd37e616d5ea1575a7d1732e7c176072ed42c577373bed42ecbef3c

forgot to add your payment id, so they have your money but can't tell it's from you. e-mail them your txids.
378  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - Secure, private, untraceable cryptocurrency on: June 05, 2014, 03:06:36 PM
picked that in the darkcoin thread, cannot say if right or wrong. - for a non-computer scientist: this is the crux of cryptonotes isn't it? that there is no tx? Please correct me if I am wrong.

They can subpoena you for your tracking (view) key, which lets you see which addresses on the blockchain are yours. From that you could figure out your credits/debits for capital gains purposes.

As is, it's hard to tell where money is coming/going from.
379  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 04, 2014, 09:12:54 PM
10 MRO

But shouldn't this be for tacos?

Cheesy It's hard to get them delivered out here, otherwise I would be down.
380  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: Monero pizza auction on: June 04, 2014, 09:08:50 PM
Damn I missed this.  Grin Grin Grin

it's an auction, you can still bid lower than someone else Smiley
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 ... 164 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!