Bitcoin Forum
May 08, 2024, 12:37:34 PM *
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 »  All
  Print  
Author Topic: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace]  (Read 15677 times)
xinbinbin
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 02, 2015, 11:15:43 AM
 #21

The sale of some coins, to PM
1715171854
Hero Member
*
Offline Offline

Posts: 1715171854

View Profile Personal Message (Offline)

Ignore
1715171854
Reply with quote  #2

1715171854
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
andrepierre
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile
May 02, 2015, 11:15:57 AM
 #22

i love pre-mine Embarrassed

At least dev will post block explorer with premine address and was very honest in op with his premine.

No dev work for nothing, will keep an eye on this.
mxhwr
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
May 02, 2015, 11:21:46 AM
 #23

i love pre-mine Embarrassed

At least dev will post block explorer with premine address and was very honest in op with his premine.

No dev work for nothing, will keep an eye on this.

Yes i agree its beyond me why people think devs should work for free. if you had option to get free coins or pay to mine what would you do. the value of the coin is in the development. if its developed and looking at it its a short POW plus POS the premine is nothing

xbinbin pming you
xinbinbin
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 02, 2015, 11:26:00 AM
 #24

Yes, a good development needs pre-mine. Don't expect DEV to give us free!
mxhwr
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
May 02, 2015, 11:27:21 AM
 #25

Yes, a good development needs pre-mine. Don't expect DEV to give us free!

come on look at dark coin instamined load of shit. its the feature that rose it and the whales.

xibinbin pmed you my offer
TillKoeln
Legendary
*
Offline Offline

Activity: 2282
Merit: 1051

unnamed.Exchange, join the Cool Kids!!!


View Profile WWW
May 02, 2015, 11:34:04 AM
 #26

send some request to get listed on the voting page


emmnazady
Sr. Member
****
Offline Offline

Activity: 284
Merit: 250


The Standard Protocol - Solving Inflation


View Profile WWW
May 02, 2015, 11:58:51 AM
 #27



ARRRRRGGHHHHHHHHHH

Next-Gen of
Algo Stablecoins

  ▄▄██████████████████
 █████████████████████
█████▀▀
████▀    ████
████     ████
████     ████
         ████     ████
         ████    ▄████
               ▄▄█████
█████████████████████
██████████████████▀▀ 
TheStandard█▀▀▀











█▄▄▄
▀▀▀█











▄▄▄█
  Join Private Sale of $TST
  No KYC     Fair Launch Auction

  CopperLaunch.com
▀▀▀█











▄▄▄█
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████

.
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████   ▄▄▄    ▄▄▄   ██████
█████▌   ███    ███   ▐█████
█████▌                ▐█████
███████▄   ▀████▀   ▄███████
poolmn
Sr. Member
****
Offline Offline

Activity: 314
Merit: 250


View Profile WWW
May 02, 2015, 12:25:40 PM
 #28

We've added a pool too:

https://pool.mn/utle

Please spread some hash and @Dev: Please add the pool to the OP ! Thanks

https://pool.mn - 0.99% fee
wasref
Hero Member
*****
Offline Offline

Activity: 555
Merit: 500


View Profile
May 02, 2015, 12:56:18 PM
 #29

when will you release masternodes
tic-tac-totoro
Sr. Member
****
Offline Offline

Activity: 287
Merit: 250


View Profile
May 02, 2015, 01:30:08 PM
 #30

Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 50 * COIN;
   
    if (pindexBest->nHeight+1 == 1)
    {
      nSubsidy = 12000 * COIN;
      return nSubsidy + nFees;
    }
   
    else if (pindexBest->nHeight+1 <= 100)
    {
      nSubsidy = 0 * COIN;
      return nSubsidy + nFees;
    }
   
    else
    {
      nSubsidy = 50 * COIN;
      return nSubsidy + nFees;
    }
   

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}

According to the source it seems like PoW never stops....
Ultimatecoin (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
May 02, 2015, 01:33:39 PM
 #31

Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 50 * COIN;
   
    if (pindexBest->nHeight+1 == 1)
    {
      nSubsidy = 12000 * COIN;
      return nSubsidy + nFees;
    }
   
    else if (pindexBest->nHeight+1 <= 100)
    {
      nSubsidy = 0 * COIN;
      return nSubsidy + nFees;
    }
   
    else
    {
      nSubsidy = 50 * COIN;
      return nSubsidy + nFees;
    }
   

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}

According to the source it seems like PoW never stops....

after block 7860 it switches to pure pos. 2 days after pow pos masternodes will be released. stake reward is 3 coins per block. we havent decided on percentage share for masternodes yet
tic-tac-totoro
Sr. Member
****
Offline Offline

Activity: 287
Merit: 250


View Profile
May 02, 2015, 01:37:27 PM
 #32

Where in the code can I find that it'll no longer accept PoW blocks after block 7860?
scorpio18
Legendary
*
Offline Offline

Activity: 1680
Merit: 1000


Admin of CoinMiners Pools


View Profile WWW
May 02, 2015, 01:48:56 PM
 #33

Where in the code can I find that it'll no longer accept PoW blocks after block 7860?


https://github.com/Ultimatecoinn/Ultimateeee/blob/master/src/main.h#L30

tic-tac-totoro
Sr. Member
****
Offline Offline

Activity: 287
Merit: 250


View Profile
May 02, 2015, 01:57:11 PM
 #34

Where in the code can I find that it'll no longer accept PoW blocks after block 7860?


https://github.com/Ultimatecoinn/Ultimateeee/blob/master/src/main.h#L30

thanks
emelac
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
May 02, 2015, 02:02:02 PM
 #35

There was an ultimate coin released last year with the ticker ULT.

https://bitcointalk.org/index.php?topic=519153.0

Is that why you chose the ticker UTLE?
andrepierre
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile
May 02, 2015, 03:19:49 PM
 #36

Once I think this coin have a block explorer it will be listed on exchanges.

Hope it is soon!!!!
keriferocoius
Full Member
***
Offline Offline

Activity: 164
Merit: 100


View Profile
May 02, 2015, 04:19:25 PM
 #37

coins in total?
jimlite
Legendary
*
Offline Offline

Activity: 1848
Merit: 1018


View Profile WWW
May 02, 2015, 04:52:09 PM
 #38

Would be nice to get another pool.

Binance, hottest/largest alt exchange, 2BTC daily no verification. https://www.binance.com/?ref=13309371
NEED TO RENT A RIG? All algos at http://www.miningrigrentals.com/register?ref=627


  ✵ Super FAST block times      ✵ Block Explorer right in the wallet!     ✵ Stealth Addresses     ✵ PoW/PoS hybrid  
██
██
██
██
██
██
██
██
██
██
██
Ancient Money
for a New World
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
Join the conversation!
██
██
██
██
██
██
██
██
██
██
██

                 ▄████▄▄    ▄
██             ████████████▀
████▄         █████████████▀
▀████████▄▄   █████████████
▄▄█████████████████████████
██████████████████████████
  ▀██████████████████████
   █████████████████████
    ▀█████████████████▀
      ▄█████████████▀
▄▄███████████████▀
   ▀▀▀▀▀▀▀▀▀▀▀

TWITTER


louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
May 02, 2015, 05:03:03 PM
 #39

Would be nice to get another pool.

I would, but the premine looks damned high to me.

Maybe some justifications could help me sort my mind about it.

Bitfarms.io - Powering Blockchains with Sustainable Energy
andrepierre
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile
May 02, 2015, 05:10:34 PM
 #40

Would be nice to get another pool.

I would, but the premine looks damned high to me.

Maybe some justifications could help me sort my mind about it.

Dev posted he will post address for premine once block explorer is there, all devs need to get paid so for dev transparent so lets see what happen.
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 »  All
  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!