Bitcoin Forum
June 22, 2024, 02:57:43 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM POW/MASTERNODE COIN on: July 05, 2018, 11:49:30 PM
STIM Whitepaper release, Bitcointalk ANN update & Bounty

Make sure to check our discord ANN to get more details about it:
https://discordapp.com/channels/452980527360770059/452987392421396480/464575207181647874
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: July 04, 2018, 12:17:40 PM


Nice work with Stim redesign !
Looks much better.

Maybe this is best time to also update ANN first page,
and start translation campaign

Thanks for the kind words.  We are working on it. Hope to have ANN redesigned by the end of the week. 
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: July 04, 2018, 12:11:11 PM
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: July 04, 2018, 12:14:18 AM
You already touched on our first step in making it sustainable. "Most of the mn-related coins that I have encountered were abandoned by owners after quite some time.' When looking at the code of some of the mn-related coins to which you refer we found a common theme. Block reward. If  there are large amounts of coins per block, would you expect the coin to be worth more or less than a coin with a similar block time with a far lesser block reward. Less coins in circulation could mean a higher value per coin simply due to scarcity alone.


 Then we would see this stuff:



CAmount GetDevFundPayment(int nPrevHeight)
{    
    
    CAmount nPay = 0;
    int rblock=0;
    if (nPrevHeight>=SOFTFORK1_STARTBLOCK && nPrevHeight<=SOFTFORK1_STARTBLOCK+1200){
        rblock=50;    
    }
    if(rblock>0 && nPrevHeight % rblock == 0){
        nPay = 50 * COIN;
    }
    return nPay;
}

Or this:


CAmount GetBlockSubsidy(int nPrevBits, int nPrevHeight, const Consensus::Params& consensusParams, bool fSuperblockPartOnly)
{
    if (nPrevHeight == 0) {
        return 795500 * COIN;
    }


int64_t nSubsidy = nStartSubsidy;
   
    nSubsidy >>= (nHeight / Params().SubsidyHalvingInterval());

    if (nHeight < 10080 )
    {
   nSubsidy = 13373 * COIN;



My favorite is this, actually left in the documentation (sometimes)

WARNING
THIS IS DEVELOPMENT SOFTWARE. WE DON'T CERTIFY IT FOR PRODUCTION USE. WE ARE RELEASING THIS DEV VERSION FOR THE COMMUNITY TO EXAMINE, TEST AND (PROBABLY) BREAK. IF YOU SEE SOMETHING, SAY SOMETHING! IN THE COMING WEEKS WE WILL LIKELY MAKE CHANGES TO THE WIRE PROTOCOL THAT COULD BREAK CLIENT COMPATIBILITY. SEE HOW TO CONTRIBUTE FOR A LIST OF WAYS YOU CAN HELP US.

WARNING WARNING
NO, SERIOUSLY. THE ABOVE WARNING IS NOT JUST BOILERPLATE. THIS REALLY IS DEVELOPMENT CODE AND WE'RE STILL ACTIVELY LOOKING FOR THE THINGS WE'VE INEVITABLY DONE WRONG. PLEASE DON'T BE SURPRISED IF YOU FIND OUT WE MISSED SOMETHING FUNDAMENTAL. WE WILL BE TESTING AND IMPROVING IT OVER THE COMING WEEKS.

WARNING WARNING WARNING
WE'RE NOT JOKING. DON'T MAKE US PULL AN ADAM LANGLEY AND TAKE AWAY THE MAKEFILE.


What it looks like in the official github now:

WE WEREN'T JOKING. THERE WERE WARNINGS THAT THIS WAS BUGGY PROTOTYPE CODE AND YOU USED IT ANYWAY. SO WE'VE TAKEN AWAY THE MAKEFILE. THIS CODE IS ABONDONED (AND HAS BEEN SINCE 2014)
THIS CODE IS UNMAINTAINED AND HAS KNOWN EXPLOITS. DO NOT USE IT.

THERE ARE DOWNSTREAM COPIES THAT MIGHT HAVE BETTER SECURITY. THEN AGAIN, SOME PROJECTS COPIED THE CODE VERBATIM COMPLETE WITH THE BELOW WARNING, SO CAVEAT EMPTOR.

Not trying to bad mouth anyone, but with buggy code at best and lots of coins, and an exchange to dump their coins, no matter what the price. It was fairly obvious what was going on.  Second day on block 985 with 100,000 coins already in the exchange.

We tried a different approach, low block reward only ~720 coins a day.  Another difference is that we had no advertised presale or auction.  We did no active selling  masternodes.

The core team have a few interesting ideas for use case scenarios, but we want our community to be a part of our coin so none of these cases are totally set in stone.  

We will have more information in the near future.

5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: July 03, 2018, 10:27:39 PM
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: July 02, 2018, 06:52:40 PM
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 30, 2018, 02:48:29 PM
How you planned to pay listing on exchange if you don't make ICO?
i don't want to mine another coin who will have no worth

We have already paid for our first listing which will be Crypto-Bridge.org.  We plan to apply to other exchanges in the near future!
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 29, 2018, 04:03:40 PM
masternode only for linux? Will it be for Windows?

You can install a masternode on widows, if you prefer.  I only suggest that you do not use your wallet with your coins as the masternode. Either rent a windows vps or use a spare windows pc. Most likely you will be able to run the QT version on the system where your masternode will be set up. Just run the QT after it syncs, go to Tools > Open Wallet Configuration File .

Then paste this into the file:

rpcuser=YOUR_LONG_AND_RANDOM_USERNAME
rpcpassword=YOUR_VERY_LONG_AND_RANDOM_PASSWORD
rpcallowip=127.0.0.2 
rpcport=8091
port=8093
listen=1
server=1
daemon=1
logtimestamps=1
masternode=1
externalip=YOUR_UNIQUE_VPS_IP_ADDRESS
masternodeprivkey=YOUR_MASTERNODE_KEY_YOU_GENERATED

Save.
Restart the wallet

* Notice that I changed the rpcallowip parameter to 127.0.0.2 just in case you were trying on a home network. Also if you are trying to run a masternode on your LAN you will need to forward ports 8091-8093.

If you have an aversion to command line, or would rather not fool around with linux, this will work! Cool
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 26, 2018, 10:40:31 PM
Need help installing and setting up a masternode?  Try Bit Yoda's install script!
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 26, 2018, 10:29:43 PM
We have updated the pools links on the website! Come join us! Cool https://stimco.in
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 23, 2018, 01:33:14 AM
we are just about on track... the chain has been live since 06/05  17 days x 720 blocks per day = 12,240
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 22, 2018, 05:27:10 PM
Working on the testnet today testing different parameters and prepping for new logo Grin
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 21, 2018, 05:53:40 PM
We have finished the 1.0 version of the whitepaper.  We will release it with our new website in a couple of days.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 21, 2018, 05:40:30 PM





Come mine with us!


How can i mine with nicehash ?

for nicehash i believe you just set diff=32.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 14, 2018, 09:32:46 PM
New wallets with updated logo can are available https://github.com/Stim-Community/stim/releases/tag/v1.0.0.2
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 10, 2018, 12:37:58 PM
the wallet is not synchronized, what could be the problem?

There are updated pre-compiled wallets released, they have more addnodes hard coded.  hope this helps!


https://github.com/STM0x0/stim/releases/tag/v1.0.0.1
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 08, 2018, 07:37:51 AM
1% premined (I got the info from the OP), so will Stimcoin project have massive marketing campaigns?
Furthermore, Lyra2z algorithm is not a good one for GPUs, because it might be dominated by ASICs.

Lyra2z ASICSs? I have searched for these but have found nothing ..... if you have information could you please share? Its a very low power/temperature algo for the NVidia cards we have tested on.

We will run marketing campaigns however that will not account for the whole premine, if any. 5 master nodes have been setup for early adopters/supporters who have made the first exchange listing possible and to allow the full function of the coin on launch (masternodes are required for privacy feature) The outcome for the majority will be decided by the community. Please feel free to get in touch via discord with any ideas or to keep up with current discussions and votes.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 07, 2018, 03:06:02 PM
Nicehash style rigs have already been set up and are taking the BULK of the blocks.

Good luck to those who try.

There was only a short period of around an hour at the start where we'v seen any real nicehash use. Havent spotted any real amounts since,  but a decent stable hash rate formed by gpu miners (thank you all).
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] STIM COIN SUSTAINABLE POW/MASTERNODE COIN on: June 06, 2018, 05:23:40 AM

addnode=199.247.15.130:8093
addnode=104.156.249.248:8093
addnode=45.32.216.236:8093
addnode=142.44.210.248:8093
addnode=81.132.146.42:8093
addnode=207.148.93.133:8093
addnode=94.177.198.217:8093
addnode=89.216.163.94:8093
addnode=96.245.126.165:8093
addnode=207.246.88.229:8093
addnode=209.250.236.195:8093
addnode=140.82.37.236:8093
addnode=45.32.132.31:8093
20  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN] [LAUNCH] STIM POW/MASTERNODE COIN on: June 05, 2018, 04:30:35 PM


       







If you feel you have something you would like to offer please make contact

admin@stimco.in

support@stimco.in



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!