Pages:
Author

Topic: [PRE-ANN][°SND] SoundBit - !!X15!! LAUNCHED NOW!!!!! MOORE's LAW REWARD!!! - page 3. (Read 11660 times)

newbie
Activity: 23
Merit: 0
IPO like scam  Grin Why to IPO when you can mine this amount in 1 minute? good work dev

First of all, IPO conditions were well specified and clear.

Refunds allowed only and strictly in case of failed launch. This is not the case of , so no issues or reasons to ask for refund.

I want to remember many IPO around exchanges too, where price felt down even before opening markets.

SoundBit Reward is set by moor's law and diff retarget is DGW, so there is nothing wrong. Diff is growing and reward will be less..

If you feel scammed i'm sorry for you, but Investment is not a game. You need to think first what you can afford or not.

We did a smooth and clean launch so no matter of complains.

Our best!
hero member
Activity: 672
Merit: 500
IPO like scam  Grin Why to IPO when you can mine this amount in 1 minute? good work dev
newbie
Activity: 23
Merit: 0
Spread the hashes guys!

We're contacting Bittrex ATM.

Complete Coin Development Plans out soon.
full member
Activity: 126
Merit: 100
BitCoin, webdesign and coding.
Guys Throw some hashes to



BONUS PAYOUTS WILL BE DONE in LESS THAN 1 HOUR!
full member
Activity: 126
Merit: 100
BitCoin, webdesign and coding.
We're UP AND RUNNING!!!! We're finding blocks! BONUS PAYOUTS FOR THE FIRST 10 MINERS IN 1 HOUR!!!!!

THE FIRST 10 MINERS WILL GET FREE SoundBit WHEN THE FIRST BLOCK WILL FOUND!





    Low 1% fees
    High performance Node.js backend
    User friendly mining client
    Multi-coin / multi-pool
    24/7 Support
    No registration needed! Point your miners to our pool, set your own address and start getting payout every 20 seconds!

    EU based

    DDOS protected

    Under constant improvements for your mining pleasure!

    Why choose a NOMP pool?

   1) It's Safer than a normal Pool. Cause you do not need to give any personal info such email or passwords.

    2) It's faster: point your miners, set your address in your miner config and earn coind immediately with auto payouts every 30 seconds!

    3) It's lighter for your internet connection than normal MPOS pool.

    Are you still waiting to mine on http://pools.cryptoskills.com/  ??


Quote
Quick Guide how to mine on CRYPTOSKILLS POOLS (without even entering the website!!)

Configuration:

Username: your SoundBit wallet address

Password: anything (could be a letter or number or whatever you want)

Algorithm: x15

URL (difficulty 0.001): stratum+tcp://pools.cryptoskills.com:3017
URL (difficulty 1): stratum+tcp://pools.cryptoskills.com:3041
URL (difficulty 256): stratum+tcp://pools.cryptoskills.com:3267


full member
Activity: 224
Merit: 100
the difficulty seems to be changing now
full member
Activity: 126
Merit: 100
BitCoin, webdesign and coding.





Come on guys you're so cyber minded you cannot read a simple font?
sr. member
Activity: 383
Merit: 250
legendary
Activity: 3248
Merit: 1070


{
"blocks" : 3815,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.25000000,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"networkhashps" : 311987857,
"pooledtx" : 0,
"testnet" : false
}


lmao blocks/diff ratio screwed up

too many shit coin released at once that's why, one dev can control them all
full member
Activity: 126
Merit: 100
BitCoin, webdesign and coding.
We're UP AND RUNNING!!!! We're finding blocks!

THE FIRST 10 MINERS WILL GET FREE SoundBit WHEN THE FIRST BLOCK WILL FOUND!





    Low 1% fees
    High performance Node.js backend
    User friendly mining client
    Multi-coin / multi-pool
    24/7 Support
    No registration needed! Point your miners to our pool, set your own address and start getting payout every 20 seconds!

    EU based

    DDOS protected

    Under constant improvements for your mining pleasure!

    Why choose a NOMP pool?

   1) It's Safer than a normal Pool. Cause you do not need to give any personal info such email or passwords.

    2) It's faster: point your miners, set your address in your miner config and earn coind immediately with auto payouts every 30 seconds!

    3) It's lighter for your internet connection than normal MPOS pool.

    Are you still waiting to mine on http://pools.cryptoskills.com/  ??


Quote
Quick Guide how to mine on CRYPTOSKILLS POOLS (without even entering the website!!)

Configuration:

Username: your SoundBit wallet address

Password: anything (could be a letter or number or whatever you want)

Algorithm: x15

URL (difficulty 0.001): stratum+tcp://pools.cryptoskills.com:3017
URL (difficulty 1): stratum+tcp://pools.cryptoskills.com:3041
URL (difficulty 256): stratum+tcp://pools.cryptoskills.com:3267



THE FIRST 10 MINERS WILL GET FREE SoundBit WHEN THE FIRST BLOCK WILL FOUND!
newbie
Activity: 23
Merit: 0
soundbit.conf example:
Code:

server=1
daemon=1
listen=1
rpcuser=youruser
rpcpassword=yourpass
rpcallowip=127.0.0.1
logtimestamps=1
genproclimit=-1
addnode=146.185.188.6
addnode=107.170.58.48
sr. member
Activity: 397
Merit: 250


{
"blocks" : 3815,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.25000000,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"networkhashps" : 311987857,
"pooledtx" : 0,
"testnet" : false
}
member
Activity: 98
Merit: 10
newbie
Activity: 23
Merit: 0
Block reward is regulated as this:

Code:
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;
    }
newbie
Activity: 49
Merit: 0
hero member
Activity: 574
Merit: 500
I'm leaving now this thread coz my belly pains with laugh like that.
Good luck, guys.  Wink
member
Activity: 144
Merit: 10
Global Risk Exchange - gref.io
I feel this coin is very good
full member
Activity: 126
Merit: 100
BitCoin, webdesign and coding.
We're UP AND RUNNING!!!! We are finding BLOCKKSSSSS!!! COME TO OUR POOL!

THE FIRST 10 MINERS WILL GET FREE SoundBit WHEN THE FIRST BLOCK WILL FOUND!





    Low 1% fees
    High performance Node.js backend
    User friendly mining client
    Multi-coin / multi-pool
    24/7 Support
    No registration needed! Point your miners to our pool, set your own address and start getting payout every 20 seconds!

    EU based

    DDOS protected

    Under constant improvements for your mining pleasure!

    Why choose a NOMP pool?

   1) It's Safer than a normal Pool. Cause you do not need to give any personal info such email or passwords.

    2) It's faster: point your miners, set your address in your miner config and earn coind immediately with auto payouts every 30 seconds!

    3) It's lighter for your internet connection than normal MPOS pool.

    Are you still waiting to mine on http://pools.cryptoskills.com/  ??


Quote
Quick Guide how to mine on CRYPTOSKILLS POOLS (without even entering the website!!)

Configuration:

Username: your SoundBit wallet address

Password: anything (could be a letter or number or whatever you want)

Algorithm: x15

URL (difficulty 0.001): stratum+tcp://pools.cryptoskills.com:3017
URL (difficulty 1): stratum+tcp://pools.cryptoskills.com:3041
URL (difficulty 256): stratum+tcp://pools.cryptoskills.com:3267



THE FIRST 10 MINERS WILL GET FREE SoundBit WHEN THE FIRST BLOCK WILL FOUND!
hero member
Activity: 574
Merit: 500
Just because this coin's launch is not ruined by big farms or 10000000difficulty you need to FUD?

Enjoy the launch!

Big farms getting BIGGER amount right now.

We are going to the moon Cheesy



With 1 satoshi? I really wish you luck lol.  Grin
Pages:
Jump to: