Bitcoin Forum
May 09, 2024, 12:58:08 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: New Version of BirdCoin, Are you with us?
Yes, i'll join - 39 (83%)
Yes, but not join - 2 (4.3%)
No - 6 (12.8%)
Total Voters: 47

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 »
  Print  
Author Topic: [ANN][BIRD] | Final Stage Reward 1 BIRD/Block | Never Dies update 21st Dec 2016  (Read 48148 times)
Sambu
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
April 28, 2015, 12:37:40 PM
 #561

need help with node pls
cannot sync

I'm syncing with these
85.24.191.52:16050
71.192.130.60:16050

have you tried also those?
addnode=stratum.bejjan.net:3021
addnode=pool.bejjan.net
addnode=120.145.149.109
addnode=108.9.134.217
addnode=brd.fedaykin.us
addnode=188.226.175.6
addnode=124.182.5.93
addnode=162.250.125.26
addnode=194.146.132.131
addnode=124.227.107.175
addnode=80.94.252.226
addnode=2.93.26.126
addnode=108.9.134.217
addnode=120.145.149.109
addnode=188.226.175.6
addnode=78.46.252.170
addnode=107.170.77.175
addnode=46.165.208.136
addnode=23.92.53.139
addnode=5.9.73.53
addnode=95.85.27.95:16050
addnode=98.209.222.201:16050
addnode=71.192.130.60:16050      
addnode=124.182.5.93:16050
addnode=162.250.125.26:16050
addnode=112.201.157.122:16050
addnode=188.226.175.6:16050
addnode=107.170.77.175:16050

addnode=stratum.bejjan.net:3021

this one work
thank you very much sir

▲▼▲▼▲▼▲▼  No.1 Bitcoin Binary Options and Double Dice  ▲▼▲▼▲▼▲▼
████████████████████████████████  sec◔nds trade  ████████████████████████████████
↑↓ Instant Bets ↑↓ Flexible 1~720 minutes Expiry time ↑↓ Highest Reward 190% ↑↓ 16 Assets [btc, forex, gold, 1
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715259488
Hero Member
*
Offline Offline

Posts: 1715259488

View Profile Personal Message (Offline)

Ignore
1715259488
Reply with quote  #2

1715259488
Report to moderator
1715259488
Hero Member
*
Offline Offline

Posts: 1715259488

View Profile Personal Message (Offline)

Ignore
1715259488
Reply with quote  #2

1715259488
Report to moderator
CryptoDatabase
Legendary
*
Offline Offline

Activity: 1596
Merit: 1003


https://cryptodatabase.net


View Profile WWW
April 28, 2015, 05:58:33 PM
 #562

Hi ciocgun,

Absolutely, this is on my roadmap actually.

I'm currently working on the profitability system which will include more stats like this.

/Bejjan

The code below will use CryptoCoinCharts api to find the highest BRD->LTC price out of 50+ exchanges and then it will convert that price into USD.

Just change the variable of $brdest to the estimated daily mining amount and add it wherever you would like it to show up at.

Code:
<?php
$brdest 
YOUR_DAILY_MINING_ESTIMATE_VARIABLE_HERE
$pair 
"brd_ltc";
$curl curl_init();
curl_setopt($curlCURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair);
curl_setopt($curlCURLOPT_RETURNTRANSFERtrue);
$rawData curl_exec($curl);
curl_close($curl);
$data json_decode($rawData);
$brdltc $data->price $brdest;

$pair2 "ltc_usd";
$curl2 curl_init();
curl_setopt($curl2CURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair2);
curl_setopt($curl2CURLOPT_RETURNTRANSFERtrue);
$rawData2 curl_exec($curl2);
curl_close($curl2);
$data2 json_decode($rawData2);
$ltcusd $data2->price $brdltc;

echo 
"Daily Profit - ".$ltcusd;
?>


If you are wanting to do a different currency just change the brd_ltc to brd_coinabbr and do the same with the second query.

You could also use just this code in a global file and instead of it being ltc_usd for example you could make it $check_$against with $check being a selected variable from a database of the coin you want to check the price on and $against being the currency you want to check against.
bejjan
Full Member
***
Offline Offline

Activity: 199
Merit: 100



View Profile
April 29, 2015, 07:08:57 AM
 #563

Hi ciocgun,

Absolutely, this is on my roadmap actually.

I'm currently working on the profitability system which will include more stats like this.

/Bejjan

The code below will use CryptoCoinCharts api to find the highest BRD->LTC price out of 50+ exchanges and then it will convert that price into USD.

Just change the variable of $brdest to the estimated daily mining amount and add it wherever you would like it to show up at.

Code:
<?php
$brdest 
YOUR_DAILY_MINING_ESTIMATE_VARIABLE_HERE
$pair 
"brd_ltc";
$curl curl_init();
curl_setopt($curlCURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair);
curl_setopt($curlCURLOPT_RETURNTRANSFERtrue);
$rawData curl_exec($curl);
curl_close($curl);
$data json_decode($rawData);
$brdltc $data->price $brdest;

$pair2 "ltc_usd";
$curl2 curl_init();
curl_setopt($curl2CURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair2);
curl_setopt($curl2CURLOPT_RETURNTRANSFERtrue);
$rawData2 curl_exec($curl2);
curl_close($curl2);
$data2 json_decode($rawData2);
$ltcusd $data2->price $brdltc;

echo 
"Daily Profit - ".$ltcusd;
?>


If you are wanting to do a different currency just change the brd_ltc to brd_coinabbr and do the same with the second query.

You could also use just this code in a global file and instead of it being ltc_usd for example you could make it $check_$against with $check being a selected variable from a database of the coin you want to check the price on and $against being the currency you want to check against.

Thanks, this will come in handy.

/Bejjan

ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
April 29, 2015, 09:41:24 AM
 #564

Hi ciocgun,

Absolutely, this is on my roadmap actually.

I'm currently working on the profitability system which will include more stats like this.

/Bejjan

The code below will use CryptoCoinCharts api to find the highest BRD->LTC price out of 50+ exchanges and then it will convert that price into USD.

Just change the variable of $brdest to the estimated daily mining amount and add it wherever you would like it to show up at.

Code:
<?php
$brdest 
YOUR_DAILY_MINING_ESTIMATE_VARIABLE_HERE
$pair 
"brd_ltc";
$curl curl_init();
curl_setopt($curlCURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair);
curl_setopt($curlCURLOPT_RETURNTRANSFERtrue);
$rawData curl_exec($curl);
curl_close($curl);
$data json_decode($rawData);
$brdltc $data->price $brdest;

$pair2 "ltc_usd";
$curl2 curl_init();
curl_setopt($curl2CURLOPT_URL"http://api.cryptocoincharts.info/tradingPair/".$pair2);
curl_setopt($curl2CURLOPT_RETURNTRANSFERtrue);
$rawData2 curl_exec($curl2);
curl_close($curl2);
$data2 json_decode($rawData2);
$ltcusd $data2->price $brdltc;

echo 
"Daily Profit - ".$ltcusd;
?>


If you are wanting to do a different currency just change the brd_ltc to brd_coinabbr and do the same with the second query.

You could also use just this code in a global file and instead of it being ltc_usd for example you could make it $check_$against with $check being a selected variable from a database of the coin you want to check the price on and $against being the currency you want to check against.

Thank you CD, i will implement the code in the page i'm developing.
How is going Birdcoin in your game?
ask me when you need a refill of the wallet

Sambu
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
April 29, 2015, 09:51:05 AM
 #565

looking to swap rate to CCB its not worthed
BRD price more high but why CCB rate only 0.008

▲▼▲▼▲▼▲▼  No.1 Bitcoin Binary Options and Double Dice  ▲▼▲▼▲▼▲▼
████████████████████████████████  sec◔nds trade  ████████████████████████████████
↑↓ Instant Bets ↑↓ Flexible 1~720 minutes Expiry time ↑↓ Highest Reward 190% ↑↓ 16 Assets [btc, forex, gold, 1
ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
April 29, 2015, 10:01:33 AM
 #566

looking to swap rate to CCB its not worthed
BRD price more high but why CCB rate only 0.008
Yes the problem is that the BIRDcoin total supply is higher than the coin reserved by CCB.
Nowadays Birdcoin value is Higher than CCB so the best is keep and develop BirdCoin, but maybe in the future when CCB will finish its development, the Swap could be a nice opportunity

CCB is a bigger community then BIRDcoin..i'm alone trying to keep birdcoin alive...

bejjan
Full Member
***
Offline Offline

Activity: 199
Merit: 100



View Profile
April 29, 2015, 11:10:59 AM
 #567

i'm alone trying to keep birdcoin alive...

Not quite :-)

ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
April 29, 2015, 12:20:43 PM
 #568

i'm alone trying to keep birdcoin alive...

Not quite :-)
Yes i know, you and CD are doing a very excellent work!
But i was speaking about the old and the new community after the relaunch

BirdCoinV2 (OP)
Full Member
***
Offline Offline

Activity: 185
Merit: 100

★YoBit.Net★ 100+ Coins Exchange & Dice


View Profile
April 29, 2015, 03:26:31 PM
 #569

After Birdcoin staff meeting i've to send you this proposal

We can collect Birdcoin untill 2nd of May GMT 16.00

at that address
Kw36sQ7BnTT2GXPJgwNQziHavcksbeobaf

some donation are already made.
You che check the address
here:
http://www.multifaucet.tk/index.php?blockexplorer=BRD&address=Kw36sQ7BnTT2GXPJgwNQziHavcksbeobaf

After 1 hour we'll convert BirdCoin into Bitcoin and donate at https://bitpay.com/615074/donate

We'll send the printscreen of the donation and the transaction code

CryptoDatabase
Legendary
*
Offline Offline

Activity: 1596
Merit: 1003


https://cryptodatabase.net


View Profile WWW
April 29, 2015, 03:58:31 PM
 #570

Thank you CD, i will implement the code in the page i'm developing.
How is going Birdcoin in your game?
ask me when you need a refill of the wallet

One person has claimed BRD so far on Dragon Knight, here is the current stats for BirdCoin.

AikaPool
Hero Member
*****
Offline Offline

Activity: 878
Merit: 500

AikaPool admin


View Profile WWW
April 29, 2015, 06:04:18 PM
 #571

birdcoind getpeerinfo

[
    {
        "addr" : "71.192.130.60:16050",
        "services" : "00000003",
        "lastsend" : 1430330601,
        "lastrecv" : 1430330601,
        "bytessent" : 7662,
        "bytesrecv" : 16669,
        "blocksrequested" : 22,
        "conntime" : 1430330416,
        "version" : 70002,
        "subver" : "/Satoshi:0.8.6.3/",
        "inbound" : false,
        "startingheight" : 576180,
        "banscore" : 0,
        "syncnode" : true
    },
    {
        "addr" : "85.24.191.52:16050",
        "services" : "00000003",
        "lastsend" : 1430330601,
        "lastrecv" : 1430330601,
        "bytessent" : 6029,
        "bytesrecv" : 13757,
        "blocksrequested" : 20,
        "conntime" : 1430330448,
        "version" : 70002,
        "subver" : "/Satoshi:0.8.6.3/",
        "inbound" : false,
        "startingheight" : 576182,
        "banscore" : 0
    },
    {
        "addr" : "188.165.82.226:16050",
        "services" : "00000003",
        "lastsend" : 1430330601,
        "lastrecv" : 1430330601,
        "bytessent" : 4579,
        "bytesrecv" : 13602,
        "blocksrequested" : 15,
        "conntime" : 1430330476,
        "version" : 70002,
        "subver" : "/Satoshi:0.8.6.3/",
        "inbound" : false,
        "startingheight" : 576187,
        "banscore" : 0
    }
]

http://aikapool.com - pool for a good mining!
ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
April 30, 2015, 01:39:04 PM
 #572

After Birdcoin staff meeting i've to send you this proposal

We can collect Birdcoin untill 2nd of May GMT 16.00

at that address
Kw36sQ7BnTT2GXPJgwNQziHavcksbeobaf

some donation are already made.
You che check the address
here:
http://www.multifaucet.tk/index.php?blockexplorer=BRD&address=Kw36sQ7BnTT2GXPJgwNQziHavcksbeobaf

After 1 hour we'll convert BirdCoin into Bitcoin and donate at https://bitpay.com/615074/donate

We'll send the printscreen of the donation and the transaction code
104.000 Bird received so far,
help us to help this population!

ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
May 06, 2015, 08:34:11 AM
 #573

Following the CryptoDatabase suggestion i've uploaded an easy tool to calculate the Bird Profitabiity Knowing the Hourly Total Mined Amount.

BirdCoin Profitability

I will work to add the estimated value considering the MH/s and the difficulty.

Suggestion and help are appreciated

DidiMidi
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250



View Profile
May 06, 2015, 09:08:42 AM
 #574

Just dropped to say hi. I'm currently pointing some hashes at the network (2 gridseeds to be exact) since when i discovered this, as far as i could tell there was only a Fury mantaining the network - and perhaps a CPU miner. Network hashrate was around 1.3MH/s. Now it's above 2, but nonetheless i think that it's "on life support". I've mantained coins in such a state before, such as NYC or DON which had NO miners whatsoever, and luckily enough for them the network survived long enough not to get delisted and get a chance at getting a new dev. Not that they got very far but still. DonationCoin ended up dying anyway.

On the other hand this coin is active, and shows more potential than NYC or more than 90% of coins out there for that matter - most of them already dead.

That being said, the incentive to mine this coin is almost zero - other than keeping the network alive. Profitability is an order of magnitude less than any other scrypt shitcoin so the only scenario i could see this being somewhat profitable to mine it would be if only ONE person mantained the network, and used a RasPi for hashing or one of those 1st gen 70kH/s USB dual miners at 1w scrypt. As soon as more miners join the incentive is gone - and they still dump!  Huh

Anywho, i can keep some hashes pointed at the network if you think it's needed (please let me know); i'd have to do it if the other only miner quits anyway. But unless there is real progress and price goes up the 80-100 liteoshi range the network is a complete hit and miss and could be completely down anytime without prior notice - which would be a bit of a shame after all the struggle BRD has endured (yes i've read all the threads  Undecided).

Rock on!


                   ▄▀▀███▄
                  █▄█▀▀▀███
                  ▌▐ ▐█▌ ██

  ▄██████▀▄    ▄▄████▄▄▄██▀
▄███▀ ▄▀██▄▀▄
██▀▀   ▀▀▀▀▀
███ █▀█  ██ █
███   █  ██▀█
▄▄
▀███▄▄▄▄███▄▀▀▀██▄▄    ▄▀█████▄
  ▀███████▀      ▀▀██▄▀▄█▀ ▄ ▀██▄
                     █ █  ▀▄▀▄ ██
                     █▀█ ▀▄▄▀  ██
                     ▀▄██▄   ▄██▀
                       ▀██████▀
TRUEGAME
BLOCKCHAIN BASED GAMES OF CHANCE │
▄  ▄▄  ▄▄▄  ▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄  ▄▄▄  ▄▄  ▄
████████████████      WHITEPAPER      ████████████████
▀  ▀▀  ▀▀▀  ▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀  ▀▀▀  ▀▀  ▀
5 th  ──────────
March
TELEGRAM

TWITTER
YOUTUBE

GITHUB
ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
May 06, 2015, 09:27:02 AM
 #575

Just dropped to say hi. I'm currently pointing some hashes at the network (2 gridseeds to be exact) since when i discovered this, as far as i could tell there was only a Fury mantaining the network - and perhaps a CPU miner. Network hashrate was around 1.3MH/s. Now it's above 2, but nonetheless i think that it's "on life support". I've mantained coins in such a state before, such as NYC or DON which had NO miners whatsoever, and luckily enough for them the network survived long enough not to get delisted and get a chance at getting a new dev. Not that they got very far but still. DonationCoin ended up dying anyway.

On the other hand this coin is active, and shows more potential than NYC or more than 90% of coins out there for that matter - most of them already dead.

That being said, the incentive to mine this coin is almost zero - other than keeping the network alive. Profitability is an order of magnitude less than any other scrypt shitcoin so the only scenario i could see this being somewhat profitable to mine it would be if only ONE person mantained the network, and used a RasPi for hashing or one of those 1st gen 70kH/s USB dual miners at 1w scrypt. As soon as more miners join the incentive is gone - and they still dump!  Huh

Anywho, i can keep some hashes pointed at the network if you think it's needed (please let me know); i'd have to do it if the other only miner quits anyway. But unless there is real progress and price goes up the 80-100 liteoshi range the network is a complete hit and miss and could be completely down anytime without prior notice - which would be a bit of a shame after all the struggle BRD has endured (yes i've read all the threads  Undecided).

Rock on!



Thank you Didimidi for your Hashrate support.
I'm trying to do the best for the coin, any suggestion or help is appreciated

DidiMidi
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250



View Profile
May 06, 2015, 11:23:28 AM
 #576

Not a problem. Also sent a working node to Europex.eu... delisting was coming soon because they could not sync the daemon due to lack of working nodes.

I could also spend a few doges and pump the price a bit, but i'm afraid that i'd get dumped on instantly. Will think about it anyway.  Cheesy

                   ▄▀▀███▄
                  █▄█▀▀▀███
                  ▌▐ ▐█▌ ██

  ▄██████▀▄    ▄▄████▄▄▄██▀
▄███▀ ▄▀██▄▀▄
██▀▀   ▀▀▀▀▀
███ █▀█  ██ █
███   █  ██▀█
▄▄
▀███▄▄▄▄███▄▀▀▀██▄▄    ▄▀█████▄
  ▀███████▀      ▀▀██▄▀▄█▀ ▄ ▀██▄
                     █ █  ▀▄▀▄ ██
                     █▀█ ▀▄▄▀  ██
                     ▀▄██▄   ▄██▀
                       ▀██████▀
TRUEGAME
BLOCKCHAIN BASED GAMES OF CHANCE │
▄  ▄▄  ▄▄▄  ▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄  ▄▄▄  ▄▄  ▄
████████████████      WHITEPAPER      ████████████████
▀  ▀▀  ▀▀▀  ▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀  ▀▀▀  ▀▀  ▀
5 th  ──────────
March
TELEGRAM

TWITTER
YOUTUBE

GITHUB
ciocgun
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
May 06, 2015, 12:33:19 PM
Last edit: May 06, 2015, 01:12:05 PM by ciocgun
 #577

Not a problem. Also sent a working node to Europex.eu... delisting was coming soon because they could not sync the daemon due to lack of working nodes.

I could also spend a few doges and pump the price a bit, but i'm afraid that i'd get dumped on instantly. Will think about it anyway.  Cheesy

i sent a tweet to them with 4 nodes, but they don't refresh their config...we'll wait.

for the pump i've also tryed in the past, we could do a cooperation, but you need to focus also on comkort, you cannot pump the proce only in 1 exchange

EDIT: i've set some buy orders...
please help me to set up a wall, we've to decide a buy wall limit..
i think that 0.00170 it's a good high price considering that DOGE now is at 37 satoshi

BirdCoinV2 (OP)
Full Member
***
Offline Offline

Activity: 185
Merit: 100

★YoBit.Net★ 100+ Coins Exchange & Dice


View Profile
May 06, 2015, 03:04:27 PM
 #578

On Comkork Homepage:

Market NameCoin Name   Last PriceLowHighVolumeBTC Vol.
BRD/LTCBirdCoin   0.00000011LTC0.00000008LTC 0.00000011LTC21889646 BRD0.01283539BTC

Thank you ciocgun for your support and the tool,
i'll add it in the first thread when it will be finished

DidiMidi
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250



View Profile
May 06, 2015, 03:09:23 PM
 #579

Quote

i sent a tweet to them with 4 nodes, but they don't refresh their config...we'll wait.

for the pump i've also tryed in the past, we could do a cooperation, but you need to focus also on comkort, you cannot pump the proce only in 1 exchange


EDIT: i've set some buy orders...
please help me to set up a wall, we've to decide a buy wall limit..
i think that 0.00170 it's a good high price considering that DOGE now is at 37 satoshi



You're right, let's wait for them. Arbitrage usually means volume, which translates into liquidity and velocity. And you need 2 exchanges for that, or 2 pairings at least. which brings up the LTC question. A bump in "dogeoshis" should be followed with the same in "liteoshis"... so if we bump BRD to 0.0017 chances are that we'll also need to bump it to 9 liteoshi or people will just buy at the LTC market to sell at the Ð one for free monies.

I've sent 1200-odd Ð i had at craptsy and put a buy "wall" at 0.00165... i don't have the 25k Ð needed to break 0.017 ATM and i've seen people has been dumpìng... i may need to buy some doge and/or LTC for this.

PS: I'm focusing on Komcort ATM since i'm guessing that BRD deposits are stuck at Europex, at least until they get their wallet working.

                   ▄▀▀███▄
                  █▄█▀▀▀███
                  ▌▐ ▐█▌ ██

  ▄██████▀▄    ▄▄████▄▄▄██▀
▄███▀ ▄▀██▄▀▄
██▀▀   ▀▀▀▀▀
███ █▀█  ██ █
███   █  ██▀█
▄▄
▀███▄▄▄▄███▄▀▀▀██▄▄    ▄▀█████▄
  ▀███████▀      ▀▀██▄▀▄█▀ ▄ ▀██▄
                     █ █  ▀▄▀▄ ██
                     █▀█ ▀▄▄▀  ██
                     ▀▄██▄   ▄██▀
                       ▀██████▀
TRUEGAME
BLOCKCHAIN BASED GAMES OF CHANCE │
▄  ▄▄  ▄▄▄  ▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄  ▄▄▄  ▄▄  ▄
████████████████      WHITEPAPER      ████████████████
▀  ▀▀  ▀▀▀  ▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀  ▀▀▀  ▀▀  ▀
5 th  ──────────
March
TELEGRAM

TWITTER
YOUTUBE

GITHUB
DidiMidi
Sr. Member
****
Offline Offline

Activity: 463
Merit: 250



View Profile
May 06, 2015, 03:10:42 PM
 #580

On Comkork Homepage:

Market NameCoin Name   Last PriceLowHighVolumeBTC Vol.
BRD/LTCBirdCoin   0.00000011LTC0.00000008LTC 0.00000011LTC21889646 BRD0.01283539BTC

Thank you ciocgun for your support and the tool,
i'll add it in the first thread when it will be finished

Wow! That's quite a bit of a pump!  Smiley

                   ▄▀▀███▄
                  █▄█▀▀▀███
                  ▌▐ ▐█▌ ██

  ▄██████▀▄    ▄▄████▄▄▄██▀
▄███▀ ▄▀██▄▀▄
██▀▀   ▀▀▀▀▀
███ █▀█  ██ █
███   █  ██▀█
▄▄
▀███▄▄▄▄███▄▀▀▀██▄▄    ▄▀█████▄
  ▀███████▀      ▀▀██▄▀▄█▀ ▄ ▀██▄
                     █ █  ▀▄▀▄ ██
                     █▀█ ▀▄▄▀  ██
                     ▀▄██▄   ▄██▀
                       ▀██████▀
TRUEGAME
BLOCKCHAIN BASED GAMES OF CHANCE │
▄  ▄▄  ▄▄▄  ▄▄▄▄  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ▄▄▄▄  ▄▄▄  ▄▄  ▄
████████████████      WHITEPAPER      ████████████████
▀  ▀▀  ▀▀▀  ▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀  ▀▀▀  ▀▀  ▀
5 th  ──────────
March
TELEGRAM

TWITTER
YOUTUBE

GITHUB
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 »
  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!