Bitcoin Forum
June 16, 2024, 06:52:28 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 [984] 985 986 987 988 »
19661  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DRK] DarkCoin | First Anonymous Coin | First X11 | First DGW | ASIC Resistant on: May 22, 2014, 02:01:22 AM
Hello

What is the average Mhash/BTC/Day with darkcoin?

The reward and difficulty keep changing so its hard to get an accurate amount.
19662  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LIBERTYCOIN][XLB] X11 | POS/POW | Anonymous | 30 Gh/s on: May 12, 2014, 09:50:24 AM
New Pool:

https://xlb.maxminers.net

0% Fee - Latest MPOS with ocminer's fixes for this coin (thank you!)

We also opened our pool for use as addnode !
If your wallet won't sync use:

addnode=xlb.maxminers.net


Have fun mining !

im mining there now. need more hash rate. no blocks found yet
19663  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]SummerCoin|POS|10% per day in 5 days|New wallet on: May 06, 2014, 08:53:32 AM
I think the dev purposely made the stake 10% daily so everybody would leave their wallets open while their personal files are uploaded to their web server.

19664  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]SummerCoin|POS|10% per day in 5 days|New wallet on: May 05, 2014, 09:22:54 PM
BE CAREFUL WITH THIS WALLET. AFTER 2 DAYS, IT HAS SENT OVER 7GB OF OUTGOING TRAFFIC, A COMPUTER I NEVER USE.

CHANGE ALL YOUR PASSWORDS AND CHANGE YOUR WALLET IDS. ITS A VIRUS!
19665  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [AC] AsiaCoin Reverse-Scam | Hard Fork and Patch on: May 05, 2014, 02:54:24 AM
Can somebody sum up in a few points of EXACTLY what happened in the last couple of days?

All I got out of reading a few pages is that the dev "asiacoin" made a block-explorer public and then he discovered that there were too many coins, so he quit.

Now I am reading that he had the hidden pre-mine however wouldn't this been easily to detect earlier? And if he had billions of these coins, why didn't he sell when asiacoin was at an all time high of around ~0.00002500 or so.

19666  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]SummerCoin|POS|Trade on poloniex and bittrex on: May 01, 2014, 02:25:35 AM
So do you have to leave SummerCoin wallet open to get the 10%? Normally I wouldn't botter because most POS are like 1% a year but 10% a daily is crazy gains.

I had some in my wallet for over 24 hours and it says I don't have any mature/staked coins
19667  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] Bittrex.com (US-based, exchange) now open to the public on: April 30, 2014, 11:08:41 PM
Anyway to modify the one that was used by Cryptsy/Poloniex to use with Bittrex?



Same code below

Quote
import urllib
import urllib2
import json
import time
import hmac,hashlib

def createTimeStamp(datestr, format="%Y-%m-%d %H:%M:%S"):
    return time.mktime(time.strptime(datestr, format))

class poloniex:
    def __init__(self, APIKey, Secret):
        self.APIKey = APIKey
        self.Secret = Secret

    def post_process(self, before):
        after = before

        # Add timestamps if there isnt one but is a datetime
        if('return' in after):
            if(isinstance(after['return'], list)):
                for x in xrange(0, len(after['return'])):
                    if(isinstance(after['return']
  • , dict)):
                        if('datetime' in after['return']
  • and 'timestamp' not in after['return']
  • ):
                            after['return']
  • ['timestamp'] = float(createTimeStamp(after['return']
  • ['datetime']))
                           
        return after

    def api_query(self, command, req={}):

        if(command == "returnTicker" or command == "return24Volume"):
            ret = urllib2.urlopen(urllib2.Request('https://poloniex.com/public?command=' + command))
            return json.loads(ret.read())
        elif(command == "returnOrderBook"):
            ret = urllib2.urlopen(urllib2.Request('http://poloniex.com/public?command=' + command + '&currencyPair=' + str(req['currencyPair'])))
            return json.loads(ret.read())
        elif(command == "returnMarketTradeHistory"):
            ret = urllib2.urlopen(urllib2.Request('http://poloniex.com/public?command=' + "returnTradeHistory" + '&currencyPair=' + str(req['currencyPair'])))
            return json.loads(ret.read())
        else:
            req['command'] = command
            req['nonce'] = int(time.time()*1000)
            post_data = urllib.urlencode(req)

            sign = hmac.new(self.Secret, post_data, hashlib.sha512).hexdigest()
            headers = {
                'Sign': sign,
                'Key': self.APIKey
            }

            ret = urllib2.urlopen(urllib2.Request('https://poloniex.com/tradingApi', post_data, headers))
            jsonRet = json.loads(ret.read())
            return self.post_process(jsonRet)


    def returnTicker(self):
        return self.api_query("returnTicker")

    def return24Volume(self):
        return self.api_query("return24Volume")

    def returnOrderBook (self, currencyPair):
        return self.api_query("returnOrderBook", {'currencyPair': currencyPair})

    def returnMarketTradeHistory (self, currencyPair):
        return self.api_query("returnMarketTradeHistory", {'currencyPair': currencyPair})


    # Returns all of your balances.
    # Outputs:
    # {"BTC":"0.59098578","LTC":"3.31117268", ... }
    def returnBalances(self):
        return self.api_query('returnBalances')

    # Returns your open orders for a given market, specified by the "currencyPair" POST parameter, e.g. "BTC_XCP"
    # Inputs:
    # currencyPair  The currency pair e.g. "BTC_XCP"
    # Outputs:
    # orderNumber   The order number
    # type          sell or buy
    # rate          Price the order is selling or buying at
    # Amount        Quantity of order
    # total         Total value of order (price * quantity)
    def returnOpenOrders(self,currencyPair):
        return self.api_query('returnOpenOrders',{"currencyPair":currencyPair})


    # Returns your trade history for a given market, specified by the "currencyPair" POST parameter
    # Inputs:
    # currencyPair  The currency pair e.g. "BTC_XCP"
    # Outputs:
    # date          Date in the form: "2014-02-19 03:44:59"
    # rate          Price the order is selling or buying at
    # amount        Quantity of order
    # total         Total value of order (price * quantity)
    # type          sell or buy
    def returnTradeHistory(self,currencyPair):
        return self.api_query('returnTradeHistory',{"currencyPair":currencyPair})

    # Places a buy order in a given market. Required POST parameters are "currencyPair", "rate", and "amount". If successful, the method will return the order number.
    # Inputs:
    # currencyPair  The curreny pair
    # rate          price the order is buying at
    # amount        Amount of coins to buy
    # Outputs:
    # orderNumber   The order number
    def buy(self,currencyPair,rate,amount):
        return self.api_query('buy',{"currencyPair":currencyPair,"rate":rate,"amount":amount})

    # Places a sell order in a given market. Required POST parameters are "currencyPair", "rate", and "amount". If successful, the method will return the order number.
    # Inputs:
    # currencyPair  The curreny pair
    # rate          price the order is selling at
    # amount        Amount of coins to sell
    # Outputs:
    # orderNumber   The order number
    def sell(self,currencyPair,rate,amount):
        return self.api_query('sell',{"currencyPair":currencyPair,"rate":rate,"amount":amount})

    # Cancels an order you have placed in a given market. Required POST parameters are "currencyPair" and "orderNumber".
    # Inputs:
    # currencyPair  The curreny pair
    # orderNumber   The order number to cancel
    # Outputs:
    # succes        1 or 0
    def sell(self,currencyPair,orderNumber):
        return self.api_query('cancelOrder',{"currencyPair":currencyPair,"orderNumber":orderNumber})

    # Immediately places a withdrawal for a given currency, with no email confirmation. In order to use this method, the withdrawal privilege must be enabled for your API key. Required POST parameters are "currency", "amount", and "address". Sample output: {"response":"Withdrew 2398 NXT."}
    # Inputs:
    # currency      The currency to withdraw
    # amount        The amount of this coin to withdraw
    # address       The withdrawal address
    # Outputs:
    # response      Text containing message about the withdrawal
    def sell(self, currency, amount, address):
        return self.api_query('withdraw',{"currency":currency, "amount":amount, "address":address})
19668  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] Bittrex.com (US-based, exchange) now open to the public on: April 30, 2014, 11:07:00 PM
A Python wrapper for your API would be lovely.

Take poloniex as an inspiration:
http://pastebin.com/SB5c4Yr1

Another option would be to fork this
BTCE https://github.com/alanmcintyre/btce-api

because there are already versions for
BTER https://github.com/hsharrison/bter-api  and
CRYPTSY https://github.com/hsharrison/python-cryptsy



Just wondering if anybody have a wrapper for Bittrex?

Trying to copy and paste the Crytpsy and Poloniex ones and don't know what I am doing not being a programmer.

What language?  I'm sure I can whip something up for ya....

For Python would be best since the other exchanges use the same language.
19669  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]SummerCoin|X11/POS coin|Summer coin|3 mining days left on: April 30, 2014, 07:18:22 AM
Jesus Christ! Why cant there be any decent pools actually working
19670  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: April 30, 2014, 04:54:52 AM
You guys really should add X11 coins.

I started mining SUMMERCOIN and average 0.02/Mhash/Day. Yes its not a typo.

Surprised it had such as high value when it hit Poloniex.
19671  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DRK] DarkCoin | First Anonymous Coin | First X11 | First DGW | ASIC Resistant on: April 30, 2014, 04:08:45 AM
Anyone know why it takes sgminer 45 minutes to start mining Darkcoin.

I am using XUBUNTO


Each and every time takes 45 mins to start.
19672  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] Bittrex.com (US-based, exchange) now open to the public on: April 28, 2014, 04:36:11 AM
A Python wrapper for your API would be lovely.

Take poloniex as an inspiration:
http://pastebin.com/SB5c4Yr1

Another option would be to fork this
BTCE https://github.com/alanmcintyre/btce-api

because there are already versions for
BTER https://github.com/hsharrison/bter-api  and
CRYPTSY https://github.com/hsharrison/python-cryptsy



Just wondering if anybody have a wrapper for Bittrex?

Trying to copy and paste the Crytpsy and Poloniex ones and don't know what I am doing not being a programmer.
19673  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: April 22, 2014, 10:57:37 PM
ipominers,

Are you guys going to be adding that UAE Coin coming out at the end of the month. Seems the only decent upcoming coin. Only issue is that its X11
19674  Bitcoin / Bitcoin Technical Support / Re: Sent BTC without fees by mistake on: April 21, 2014, 04:03:44 AM
Sent another payment without a fee again by mistake and this one is unconfirmed for 5 hours.

Any idea how to get it confirmed?
19675  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: April 17, 2014, 03:28:23 AM
What will be the block confirmation for AC?
19676  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - rent your rig, get more! on: April 17, 2014, 03:24:44 AM

tekno
Sunitamp06
Coiner


ban all these users. They keep renting all my rigs and never pay up. and I waste 30 mins waiting for the next buyer.
19677  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - rent your rig, get more! on: April 16, 2014, 10:52:33 PM
tekno
Sunitamp06


are 2 of his nicks.
19678  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - rent your rig, get more! on: April 16, 2014, 10:49:21 PM
The guy probably is an rig owner and does that so renters pay inflated prices for his rigs.

19679  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - rent your rig, get more! on: April 16, 2014, 10:10:45 PM
Some dude has been renting out like 100s of rigs and not paying for them. using a different nick everytime

There really needs to be a fix for this.
19680  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: April 16, 2014, 08:40:15 PM
I sold all of my WC too early also. Didn't want what happened to ISR to happen to WC.

Any idea if Asia Coin will be a big hit? Alot of hype but these country coins all seem to eventually fail.
Pages: « 1 ... 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 [984] 985 986 987 988 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!