Zdash Private Secure Transactions [Equihash][Community Project]

Тема в разделе "English (Bitcoin Forum)", создана пользователем randers, 21 фев 2017.

  1. randers

    randers Провидец=)


    Zdash Private Secure Transactions
    Zdash Private Secure криптовалюта

    Zdash a Zcash alternative was born about 3 months ago

    Founders:

    Axel Karlsson: [@sparkit] Community manager, general communications. Founder

    Iolar Demartini Junior: [@demartini] Web Developer (Front End). Founder

    Joseph Stuhlman: [@joseph] Dev, general communications. Founder


    Today 1/27/2017 Zdash coin supply barely passed 600000 coins
    We had a slow start, but patience pays. Zdash is the 2[sup]nd[/sup] fork of Zcash
    The dev team is funded for a year with small monthly payments of 1500 ZDASH per dev
    @ current prices that's less than $14 per month per dev.
    Zdash has dev fund disabled so the entire block of 12.5 coins goes to miners.


    I have personally funded the servers needed and the website for Zdash.
    We as a team committed our time to Zdash and plan to stay around for a long time to come.
    We also welcome anyone who wants to jump in and help. Zdash is a community project.


    Some bounties were paid and 3 month payments to devs were made.
    We also owe jamalazzaz for some marketing effort he did on our behalf, I will settle that with him as well.

    We started with 121475 ZDASH

    I personally hold 6475.98890588 ZDASH in my own private address,
    which came from 3 monthly payments and some coins I mined myself.

    Our balance right now stands at 107222.324 ZDASH

    Joseph Stuhlman












    Zdash source: https://github.com/J-Stuhlman/zdash.git

    you need the daemon compiled and running to use the GUI wallet:

    Zdash GUI wallet : https://github.com/J-Stuhlman/zdash-gui


    please read the instructions on how to run the wallet before downloading.

    *only Linux is supported at this time.​



    Zpool Explorer: http://www.zpool.ca/explorer/ZDASH
    Light Explorer: http://192.99.3.29/



    * Zdash Private Secure *​





    Standalone Test CPU Miner Sourcecode (thx str4d!): Download here
    AVX/AVX2 optimized CPU Miner Sourcecode (thx kost!)Download here
    Fork of Nicehashs Miner with suprnova hardcoded - linux only currently Download here
    Windows Version of Nicehash CPU+GPU Miner with Suprnova support (use v0.3a): Download here
    Windows Version of Genoil's AMD OpenCL GPU Miner: Download here More Info
    Silentarmy standalone linux miner:Download here More Info
    you can use Claymore's Zcash Miner:Download here





    [size=14pt]TEAM[/size]

    [Axel Karlsson aka sparkit] : General Manager, Will supervise the community Slack Channel, Reddit account, Steemit account, Twitter account, Facebook Page.

    [Iolar Demartini Junior aka demartini]: Front End Dev, Will create and supervise Zdash Community Website, wiki, general communications.

    [Core Developer]
    : Core Dev, general communications.

    ~~~~~~~~~~~~~~~~~~~~~~




    Italian: https://bitcointalk.org/index.php?topic=1704500.msg17083671#msg17083671
    Spanish: https://bitcointalk.org/index.php?topic=1717086.msg17194231#msg17194231


    ~~~~~~~~~~~~~~~~~~~~~~

    [Zdash 1.0.3]: has been tested with the latest commits, Zdash is unfinished and highly experimental. Mine at your own risk.


    Screen Shots from ZDash GUI wallet:





    Zdash кошелек криптовалюты



    [size=12pt]FAQ[/size]

    [quote author=mellon link=topic=1688024.msg17035956#msg17035956 date=1480492134]
    How we can get info in your client about total amount coins or coinsupply?

    [/quote]

    The client follows the zcash code, currently there is no total supply provided by the RPC calls.
    However, you can verify the total the following way.

    For the premine of 0.578% we set three blocks #2 #3 #4 at 40,000 each. that gives us 120,000. we mined till block 121, so add 118 blocks of 12.5
    that totals 1475 coins, for a total of 121,475 coins as posted on the OP. Why we mined till block 121? we needed to confirm the first few blocks and test TX's both
    on T-address and Z-address, then after confirmation of successful TX's we placed a checkpoint at block 120.

    Block 122 was mined by suprnova pool and that can be verified by the pool. All blocks after 121 were mined by miners.

    Now how to verify that in the client.

    You can use the RPC call: getblocksubsidy [block#]:

    Код:
    ./src/zcash-cli getblocksubsidy 1
    {
        "miner" : 12.50000000,
        "founders" : 0.00000000
    }
    
    ./src/zcash-cli getblocksubsidy 2
    {
        "miner" : 40000.00000000,
        "founders" : 0.00000000
    }
    
    ./src/zcash-cli getblocksubsidy 3
    {
        "miner" : 40000.00000000,
        "founders" : 0.00000000
    }
    
    ./src/zcash-cli getblocksubsidy 4
    {
        "miner" : 40000.00000000,
        "founders" : 0.00000000
    }
    
    ./src/zcash-cli getblocksubsidy 5
    {
        "miner" : 12.50000000,
        "founders" : 0.00000000
    }
    
    etc .. etc..
    
    
    Now for the total supply part:

    We already verified blocks 1 -121 = 121475
    Total supply = 12.5 x (current_block_height - 121) + 121475

    So at block height of 5200 we get the total supply as:

    Total supply = 12.5 x ( 5200 - 121) + 121475 = 184962.5 ZDASH

    All this can be verified as well by checking the code on github.

    The fact that Zdash allows storing of coins in private addresses does not change the block subsidy.
    We are not in possession of any shards of the key that would create coins from thin air neither. That has been destroyed by the zcash team.

    I hope that answers your questions.​