Bitcoin Forum
September 24, 2024, 10:10:14 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Local / 离题万里 / Re: 调查问卷 - 您在旅行时有意愿使用加密货币支付吗? on: September 06, 2021, 07:35:24 AM
用手机数字货币钱包扫个码就行了,我在瑞士的时候就是这么付的午饭钱,是一家门面很小的龙虾汉堡套餐店
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GeekCash Launching on: May 15, 2018, 03:24:17 AM
Wink Hi, So Interesting projects,I want to know how can be a masternode,if  I had enough 10000 GEEK? Roll Eyes
yes,you are right
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers on: May 22, 2017, 01:51:32 PM
Sorry mate... I missed your question.

Here is a concrete example to figure out how LiskElite payouts' work:

I hade roughly 3.9K Lisk in my forging account for about a week. Today I received my share (10.9 LSK) based on 3892 LSK.

10.9 LSK (reward) divided by 0.0028 (the coefficient) equal the balance I left in my forging account for a week.

To simplify you can also calculate it the other way around:

3892 X 0.0028 = 10.8976 LSK
 
The proof for Thomas: https://explorer.lisk.io/tx/9013045835012655592 Wink

Thanks Smiley

The number doesn't seem the same for everyone though.  You got 0.0028, I see crodam got 6.9/3,883 = 0.00177697656451, frumster got 9.9/4,140 = 0.00239130434783, blackswan got 2.9/1,109 = 0.00261496844004.  It seems you actually got one of the best payouts, and everyone got a payment rounded to the nearest .9
Also, wouldn't it change every week based off the new voter's balance?  So 0.028 isn't accurate after 1 week calculations.  
Is the payout only based off your balance at payout time or your average for the week, since this would change the math

It seems like a hard number like that is not valid for long in a dynamic system.  What I think is needed is a calculator or API call that takes into account the current valid (I'm guessing verified and voting for at least the 56 members) voter's balance for the pool.  This would need to be developed by the elite group though, as no one else knows all the verified voting accounts for the pool Smiley
It would be great if they had an API call that bioly could use to add to his calculator



if bioly can add to his calculater that's great. i will suggest our developer to do this.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 13, 2017, 12:15:44 AM
I love the past where it says that the coin will reduce by 7% per year that's good. Its like burning the coins basically. Its reverse of pos but does the same thing. Very clever Dev.  Cheesy
reducing the block reward by 10 extra percent
this line,right?
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 10, 2017, 07:25:32 AM
Hi, whe are the developers of Dagra Cryptocurensy, our  team are working now for next update of "Dagracore's" desctop wersion with inbuiled miner and trasmit function of the any currencies by neans of post E-mail addresess. In nearest time we will intoduse our own road map and it's very important for us provide social discassion firs top tascs. Considering that our first stage is done now we will launch system of the voting.
About DAO - we represent to the whole World not only the coin but cryptoplatform of decentalized services for entrepreners and and any legal and social antities so we elaborated new approach for creation and promotin (considering providing) any usefull activity in any decentrilised invironment. These days we dispatched a request to ICO trade market. Hope on your maintanents and welfare approach.

Sincerlay yours,
developers of DAO "Dagra"  

Sometimes it's hard for me to give credibility to people with such poor spelling skills.
I can forgive with 2 or 3 instances, but this one... Roll Eyes
Even if you're not a native English speaker, at least do some effort of spell checking your post.

maybe they got a bad teacher, Grin
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 10, 2017, 06:11:49 AM
Algo this coin ? and Pool

I think the algo is X11gost
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 10, 2017, 05:36:39 AM
int64_t GetBlockValue(int nBits, int nHeight, const CAmount& nFees)
{
    double dDiff = (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    /* fixed bug caused diff to not be correctly calculated */
    if(nHeight > 4500 || Params().NetworkID() != CBaseChainParams::MAIN) dDiff = ConvertBitsToDouble(nBits);

    int64_t nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

    // LogPrintf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy);
    nSubsidy *= COIN;

    if(Params().NetworkID() == CBaseChainParams::TESTNET){
        for(int i = 46200; i <= nHeight; i += 210240) nSubsidy -= nSubsidy/14;
    } else {
        // yearly decline of production by 7.1% per year, projected 21.3M coins max by year 2050.
        for(int i = 210240; i <= nHeight; i += 210240) nSubsidy -= nSubsidy/14;
    }

    // block reward can not be less than one DAGRA
    if(nSubsidy < COIN) nSubsidy = COIN;
   
    /*
        Hard fork will activate on block 34560, reducing the block reward by 10 extra percent (allowing budget super-blocks)
    */
           
    if(Params().NetworkID() == CBaseChainParams::TESTNET){
        if(nHeight > 8064) nSubsidy -= nSubsidy / 10;
    } else {
        if(nHeight > 34560) nSubsidy -= nSubsidy / 10; // 34560 - 10.0% - launch the budget system  60 days after system start
    }
   
    return nSubsidy + nFees;
}

int64_t GetMasternodePayment(int nHeight, int64_t blockValue)
{
    int64_t ret = blockValue/5; // start at 20%

    if(Params().NetworkID() == CBaseChainParams::TESTNET) {
        if(nHeight > 46000)             ret += blockValue / 20; //25% - 2014-10-07
        if(nHeight > 46000+((576*1)*1)) ret += blockValue / 20; //30% - 2014-10-08
        if(nHeight > 46000+((576*1)*2)) ret += blockValue / 20; //35% - 2014-10-09
        if(nHeight > 46000+((576*1)*3)) ret += blockValue / 20; //40% - 2014-10-10
        if(nHeight > 46000+((576*1)*4)) ret += blockValue / 20; //45% - 2014-10-11
        if(nHeight > 46000+((576*1)*5)) ret += blockValue / 20; //50% - 2014-10-12
        if(nHeight > 46000+((576*1)*6)) ret += blockValue / 20; //55% - 2014-10-13
        if(nHeight > 46000+((576*1)*7)) ret += blockValue / 20; //60% - 2014-10-14
    }

    if(nHeight > 158000)               ret += blockValue / 20; // 158000 - 25.0% - 2014-10-24
    if(nHeight > 158000+((576*30)* 1)) ret += blockValue / 20; // 175280 - 30.0% - 2014-11-25
    if(nHeight > 158000+((576*30)* 2)) ret += blockValue / 20; // 192560 - 35.0% - 2014-12-26
    if(nHeight > 158000+((576*30)* 3)) ret += blockValue / 40; // 209840 - 37.5% - 2015-01-26
    if(nHeight > 158000+((576*30)* 4)) ret += blockValue / 40; // 227120 - 40.0% - 2015-02-27
    if(nHeight > 158000+((576*30)* 5)) ret += blockValue / 40; // 244400 - 42.5% - 2015-03-30
    if(nHeight > 158000+((576*30)* 6)) ret += blockValue / 40; // 261680 - 45.0% - 2015-05-01
    if(nHeight > 158000+((576*30)* 7)) ret += blockValue / 40; // 278960 - 47.5% - 2015-06-01
    if(nHeight > 158000+((576*30)* 9)) ret += blockValue / 40; // 313520 - 50.0% - 2015-08-03

    /*
        Hard for will activate on block 348080 separating the two networks (v11 and earier and v12)
        if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; // 348080 - 52.5% - 2015-10-05
        if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; // 382640 - 55.0% - 2015-12-07
        if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; // 417200 - 57.5% - 2016-02-08
        if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; // 451760 - 60.0% - 2016-04-11
    */

    return ret;
}


i checked the source code,Looks pretty good,i'm in.


8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 10, 2017, 05:27:07 AM
Where is link for windows wallet ?

Not available until the end of the premine and the ico

i think the premining has finished already, just check the blockexporer http://explorer.dagrsol.com/address/DAeuqP7EXANJgKHBW8WvWkJnANtmkpijhp
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers on: April 09, 2017, 05:34:47 AM
If one day 1 Lisk will be worth like 1 ETH today is it worth giving Lisk for voting? Why is there even a cost for voting?
to avoid spam on the network and support forging delegates by paying a small fee.
All blockchains do this when a transactions are broadcast.
For 10 cent you get thousands of nodes to record 33 of your votes on the blockchain within 10 seconds, and 101 of those get to split that 10 cent.
It's a bargain.  Wink



Click, clickety-clik clic....

GO TEAM LISK!

Wow, they bought a lot of nice monitors  Cheesy

Do people really use that many monitors everyday? lol seems like they turned all their monitors on just for posing in the picture.

I use two 2K monitors, one for designing and one for coding,that's awsome,you must have a try
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dagra on: April 08, 2017, 08:37:01 AM
wait for more info and details. good luck
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ICO] PRCOIN - Blockchain P2P advertisement platform. on: March 24, 2017, 03:39:47 AM
anyone can give me some nodes?
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NEW] Chimera - a Decentralized Gaming Platform - ICO coming soon on: February 10, 2017, 07:53:07 AM
no more bot ! please anti them!
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sia - Decentralized Storage on: February 10, 2017, 07:25:01 AM
may be sia need work hard to catch up storj.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][rICO]Antshares Blockchain Mainnet is ONLINE! on: February 10, 2017, 07:15:56 AM
FYI:

Some major Chinese traders got scared of the halt on Bitcoin withdrawals in the three major Chinese exchanges. It seems they are moving funds to Western exchanges. Antshares asks side in Bittrex doubled because of this.

An increase in trading volume in Bittrex will confirm this.
we will see
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]Cryptocurrency's killer app: disrupting web ads via RaiBlocks micropayments on: February 10, 2017, 07:04:25 AM
how to get more raiblocks?
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PASC] PascalCoin, deletable blockchain & bank account system [PASA] on: January 26, 2017, 04:59:30 AM
Could i mining on one wallet with multi-rigs?
sure

Definitely. You can.

I could say you ought to to multiple your chance for finding your own block.


Wishing good luck and many hashes!
thx ,the same to you,mate Wink
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PASC] PascalCoin, deletable blockchain & bank account system [PASA] on: January 26, 2017, 02:55:25 AM
Could i mining on one wallet with multi-rigs?
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers on: January 11, 2017, 03:32:21 PM
 Wink the price is so stable,I 'm not sell any one.
19  Local / 中文 (Chinese) / Re: NiceHash两周岁啦! on: August 04, 2016, 08:13:24 AM
算是最好用的算力租赁平台了
20  Local / 山寨币 / Re: DECENT - 分散性媒体出版 on: August 04, 2016, 07:57:29 AM
不錯啦.
我會投1BTC去玩玩
你怎么才投这么点 不投个十个八个?
沒BTC啦
就投一點點玩玩好了
最近都十分多ICO不行
烧哪个不少烧啊!
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!