Search content
Sort by

Showing 20 of 22 results by phinx
Post
Topic
Board 离题万里
Re: 调查问卷 - 您在旅行时有意愿使用加密货币支付吗?
by
phinx
on 06/09/2021, 07:35:24 UTC
用手机数字货币钱包扫个码就行了,我在瑞士的时候就是这么付的午饭钱,是一家门面很小的龙虾汉堡套餐店
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] GeekCash Launching
by
phinx
on 15/05/2018, 03:24:17 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers
by
phinx
on 22/05/2017, 13:51:32 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 13/04/2017, 00:15:44 UTC
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?
Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 10/04/2017, 07:25:32 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 10/04/2017, 06:11:49 UTC
Algo this coin ? and Pool

I think the algo is X11gost
Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 10/04/2017, 05:36:39 UTC
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.


Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 10/04/2017, 05:27:07 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers
by
phinx
on 09/04/2017, 05:34:47 UTC
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....
https://cdn-images-1.medium.com/max/1100/1*3gOlqKEbfsx_kerLavJ4zA.jpeg
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
Post
Topic
Board Announcements (Altcoins)
Re: Dagra
by
phinx
on 08/04/2017, 08:37:01 UTC
wait for more info and details. good luck
Post
Topic
Board Announcements (Altcoins)
Re: [ICO] PRCOIN - Blockchain P2P advertisement platform.
by
phinx
on 24/03/2017, 03:39:47 UTC
anyone can give me some nodes?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NEW] Chimera - a Decentralized Gaming Platform - ICO coming soon
by
phinx
on 10/02/2017, 07:53:07 UTC
no more bot ! please anti them!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Sia - Decentralized Storage
by
phinx
on 10/02/2017, 07:25:01 UTC
may be sia need work hard to catch up storj.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Cryptocurrency's killer app: disrupting web ads via RaiBlocks micropayments
by
phinx
on 10/02/2017, 07:04:25 UTC
how to get more raiblocks?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PASC] PascalCoin, deletable blockchain & bank account system [PASA]
by
phinx
on 26/01/2017, 04:59:30 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PASC] PascalCoin, deletable blockchain & bank account system [PASA]
by
phinx
on 26/01/2017, 02:55:25 UTC
Could i mining on one wallet with multi-rigs?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][LSK] Lisk | Blockchain Application Platform for JavaScript Developers
by
phinx
on 11/01/2017, 15:32:21 UTC
 Wink the price is so stable,I 'm not sell any one.
Post
Topic
Board 中文 (Chinese)
Re: NiceHash两周岁啦!
by
phinx
on 04/08/2016, 08:13:24 UTC
算是最好用的算力租赁平台了
Post
Topic
Board 山寨币
Re: DECENT - 分散性媒体出版
by
phinx
on 04/08/2016, 07:57:29 UTC
不錯啦.
我會投1BTC去玩玩
你怎么才投这么点 不投个十个八个?
沒BTC啦
就投一點點玩玩好了
最近都十分多ICO不行
烧哪个不少烧啊!
Post
Topic
Board 山寨币
Re: dao lisk WAVES 为什么能圈这么多钱
by
phinx
on 04/08/2016, 07:47:17 UTC
LISK我赚了一些 现在在拿利润在玩 还是看好LISK 低价就抄点