Bitcoin Forum
June 29, 2024, 07:28:33 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 6 7 »
21  Economy / Auctions / Re: [Domain] MasterCoin.BIZ for SALE on: October 29, 2013, 10:19:40 AM
bump
22  Economy / Auctions / Re: [Domain] MasterCoin.BIZ for SALE on: October 28, 2013, 03:25:47 PM
bump
23  Alternate cryptocurrencies / Altcoin Discussion / Re: MasterCoin: New Protocol Layer Starting From “The Exodus Address” on: October 27, 2013, 05:08:19 PM
We're a nonprofit so I don't know how relevant the .biz TLD is to us Smiley

.biz = business

Also a non profit business is a business Smiley
24  Economy / Auctions / Re: [Domain] MasterCoin.BIZ for SALE on: October 27, 2013, 05:04:50 PM
lol, useless like http://bitcoin.biz/

Why should it be useless?
Just because they don't use the domain doesn't mean that the domain is useless? It's an awesome domain name.
25  Bitcoin / Project Development / Re: NEW Giveaway for "MasterCoins" - the new protocol layer built on bitcoin on: October 27, 2013, 02:56:33 PM




Owner of: Mastercoin.biz (which is for sale: CLICK)

Bitcoin Address: 1HxjxegvGqL3SxQem6D5cJgHcaBZn1xoyA
26  Bitcoin / Project Development / Re: [ANN]Cryptopay - UK bitcoin payment processing on: October 27, 2013, 02:49:56 PM
I have found some bugs and I also have some improvements for your website.
Could you please provide my your e-mail?


edit //
Sent already to your mail
27  Alternate cryptocurrencies / Altcoin Discussion / Re: MasterCoin: New Protocol Layer Starting From “The Exodus Address” on: October 27, 2013, 12:34:03 PM




If someone is interested:
The domain MasterCoin.BIZ is for SALE
Checkout the auction topic: [Domain] MasterCoin.BIZ for SALE
28  Economy / Auctions / Re: [Domain] MasterCoin.BIZ for SALE on: October 27, 2013, 11:46:57 AM
Bump
29  Economy / Auctions / [Domain] MasterCoin.BIZ for SALE on: October 25, 2013, 09:58:50 PM




Hello!

Description: The domain MasterCoin.BIZ is for sale!

Starting bid: 0.05 BTC

Bid increment: 0.01 BTC

Buy it now: 1 BTC

End date and time:  Sunday 2013-11-03 22:00:00 CEST

Payment methods accepted: BTC, MSC

END: 2013-11-03 22:00:00 CEST

Additional notes:
 + Reputable escrow service accepted
 + Domain expires: 2014-10-24

Timer removed. End time: 2013-11-03+22:00:00CEST
30  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 24, 2013, 04:32:53 PM
Heute gab es kleine Probleme mit der Internetverbindung einer unserer Server.
Aufgrund diesem technischen Gebrechen wurden keine E-Mail Bestellbestätigungen versendet.
Alle Bestellungen wurden jedoch ohne Probleme abgeschlossen.

Mit freundlichen Grüßen,
CryptCard
31  Bitcoin / Electrum / Re: Electrum - Auto Forward on: October 22, 2013, 10:09:52 PM
Would be awesome if someone could fix this Smiley (In connection with the latest electrum version - which is still under development on git - 1.9)

Does a json interface exist already in the latest version?
32  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 22, 2013, 02:46:44 PM
@dewdeded: PMed
33  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 22, 2013, 02:36:00 PM
Habt Ihr Vorschläge/Anregungen CryptCard noch besser/sicherer/sonst was zu machen?
Bitte (nur) per Mail an office@cryptcard.org

Bei Umsetzung dieser gibt es eine Belohnung an denjenigen.
34  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 20, 2013, 03:06:42 PM
Ich muss mich jetzt hier mal äußern. Das ist ein super service den ich sehr gerne wieder in Anspruch nehmen werde. Gibt es Pläne für Karten mit höheren beträgen? Smiley

Danke! Leider wird in den nächsten Monaten damit nicht zu rechnen sein. Sobald Karten mit höheren Beträgen zu Verfügung stehen, werden sie natürlich auf CryptCard.org angeboten.
35  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 20, 2013, 02:18:45 PM
does it work with card to card online transfers?

English Thread: CryptCard.org • SHOP • Prepaid Credit Card

Yes it should work without any problems. You can try it with a €25 CryptCard to make sure.
36  Bitcoin / Electrum / Re: [Bounty] Electrum - Auto Forward on: October 18, 2013, 12:38:20 PM
Start
Code:
sudo python  /root/.electrum/forwarder.py --config /root/.electrum/forwarder.conf

./forwarder.conf
Code:
[electrum]
wallet_path = /root/.electrum/electrum.dat
password =
address = 1DCKtUCFZZCr1wCxwsYkzemQvxrUq8byps
minimum_transaction = 0.11
fee = 0.001

./forwarder.py
Code:
forwarder.py#!/usr/bin/env python

import time, thread, sys, os
import getopt
import Queue
from electrum import Wallet, Interface, WalletVerifier, SimpleConfig, WalletSynchronizer, Commands

try:
    opts, args = getopt.getopt(sys.argv[1:], 'fc:', ["foreground", "config="])
except getopt.GetoptError:
    print 'forwarder.py [-f|--foreground] [-c filename|--config filename]'
    sys.exit(2)

foreground_scanning = False
config_file_path = "forwarder.conf"

for opt, arg in opts:
    if opt in ('-f', '--foreground'):
        foreground_scanning = True
    elif opt in ('-c', '--config'):
        config_file_path = arg

# Load the configuration file with details
import ConfigParser
forwarder_config = ConfigParser.ConfigParser()
forwarder_config.read(config_file_path)

# Load the wallet from the configured location
config_data = {'wallet_path': forwarder_config.get('electrum', 'wallet_path')}
config = SimpleConfig(config_data)
wallet = Wallet(config)

# Retrieve details about transaction sending
target_address = forwarder_config.get('electrum', 'address')
minimum_transaction = float(forwarder_config.get('electrum', 'minimum_transaction'))
fee = float(forwarder_config.get('electrum', 'fee'))

# Construct the remote Electrum interface
interface = Interface(config)
interface.start(wait = True)
interface.send([('server.peers.subscribe', [])])

# Prepare the 'commands' utility object to make operating easy
commands = Commands(wallet, interface)

# Load in the password used to decrypt the signing keys
if forwarder_config.get('electrum', 'password'):
commands.password = forwarder_config.get('electrum', 'password')

# Prepare a queue as a simple synchronization primitive to decouple update from send
queue = Queue.Queue()

# Global boolean to prevent recursive update/send events and too-early handling
global allow_put
allow_put = False

# Global number indicating the last height transactions were sent from
global last_send_height
last_send_height = 0

def on_wallet_update():
    global allow_put
    global last_send_height
    if not allow_put:
        return
    if verifier.local_height == last_send_height:
        #print "Last send height == local height: " + str(last_send_height)
        return
    queue.put(True)

# Setup the wallet's interface and hookup the wallet update callback
wallet.interface = interface
interface.register_callback('updated', on_wallet_update)

# Load in the transaction / tree verifier
verifier = WalletVerifier(interface, config)
wallet.set_verifier(verifier)
verifier.start()

# Load in the wallet synchronizer to load in new data
synchronizer = WalletSynchronizer(wallet, config)
synchronizer.start()

def try_send():
    global allow_put
    global last_send_height

    # Collect balance information to determine if we should continue
    balance = commands.getbalance()
    print "Collected updated balance: " + str(balance)
    confirmed = balance.get('confirmed')
    if not confirmed:
        confirmed = 0
    else:
        confirmed = float(confirmed)
    unconfirmed = balance.get('unconfirmed')
    if not unconfirmed:
        unconfirmed = 0
    else:
        unconfirmed = float(unconfirmed)
    print "Total Balance: " + str(confirmed + unconfirmed)
    # Make sure that we have enough to cover the fee.
    # Also make sure that prior unconfirmed items are enough to cover the fee
    # to avoid pending withdrawals being re-spent and causing unnecessary server errors.
    if (confirmed + unconfirmed) >= (minimum_transaction + fee):
        # Store the last_send_height to avoid re-sending while we are waiting for it to get in the queue
        print "Sending %s to %s w/ fee %s" % (confirmed + unconfirmed - fee, target_address, fee)
        last_send_height = verifier.local_height
        #print "New height " + str(last_send_height)

        try:
   print target_address
   print confirmed + unconfirmed - fee
   print fee
            h = commands.payto(target_address, confirmed + unconfirmed - fee - 0.001, fee)
            print "Transaction sent - " + str(h)
        except BaseException as e:
            print "Failed to send transaction: " + str(e)
        except:
            print "Unknown exception occurred"


# Force a full wallet update up front - then enable wallet updates
wallet.update()
allow_put = True

# Perform an initial send try to bootstrap the process
try_send()

# If foreground scanning - use loop w/ Ctrl+C break method
if foreground_scanning:
    try:
        while True:
            ready = queue.get(True, 1000000)
            if not ready:
                continue
            allow_put = False
            try_send()
            allow_put = True
    except KeyboardInterrupt as e:
        print "Ending server"

# Shutdown server objects
verifier.stop()
synchronizer.stop()
interface.stop()

# Due to daemon threads - follow electrum GUI rules for waiting
time.sleep(0.1)
print "terminated"

The script shows sometimes some errors but it does what it should.
All the incoming payments will be forwarded to the address provided in the forwarder.conf.

-> BIG THANKS to harningt

PS: It doesn't work with the latest development version (git 1.9 electrum) as their are some errors with the WalletVerifier function.
Perhaps someone can fix this.
37  Economy / Services / Re: I Need a Middle Man on: October 16, 2013, 11:16:00 PM
If you need a credit card...buy one Tongue
https://cryptcard.org/shop/

Edit: hmm well it's € not $

Off-Topic: The CreditCard is loaded with euros, but you can pay also goods that are priced in dollars.
38  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 15, 2013, 10:15:24 AM
Ein Kunde kaufte soeben CryptCards im Wert von €500 aber hat leider eine falsche E-Mail Adresse angegeben.
Bitte melde dich per E-Mail (nicht im Forum) und anschließend ist eine Verifizierung der bitcoin Adresse notwendig.

Mail: office@cryptcard.org


edit // Käufer wurde gefunden
39  Local / Biete / Re: CryptCard.org • SHOP • Prepaid Kreditkarte on: October 10, 2013, 04:16:07 PM
Karten wurde soeben versendet. Bitte Rücksicht darauf nehmen, dass ich das ganze nicht hauptberuflich mache.
Neues Smartphone im Anflug und somit werden die Bestellungen bald auch unterwegs bearbeiten Smiley



edit // 48h sollte es eigentlich nur im Notfall dauern (Wochenende + keine Karten mehr)
Nutzt PGP damit außer euch keiner an die Daten kommt. (z.B. e-Mail Betreiber)
40  Economy / Auctions / Re: WALLETTRADING.COM Domain for sale, starting at 0.001 !!! BTC on: October 07, 2013, 12:15:58 PM
0.003
Pages: « 1 [2] 3 4 5 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!