Bitcoin Forum
June 17, 2024, 12:17:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 [144] 145 146 »
2861  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: May 28, 2011, 01:16:22 PM
What is a FOOS project?
FOSS -> Free Open Source Software

I'm not sure if I can offer the bounty in Ruby on Rails, my front end coders only know PHP - I'll have to talk to them about RoR and post back later.
The BTC part of the bounty will be enough for me.

Those features look good though.
I think it'd make an awesome reference platform for anyone to build upon Smiley

I once tried to deploy a RoR app. I spent most of that weekend tearing out my hair. Finally had to give up.
My deployments are avg. 15 seconds Smiley One command to type, asks you for the server password, boom! deployed
Rails being complicated to deploy was true a few years ago, now it's just a myth. You just need apache + mod_passenger (just like mod_php, just apt-get it) and a database.

Anyway, still waiting for the people who have advertised a BTC bounty to show up.

I propose that the first project who manages to fully complete the feature list I posted gets the bounty.

The person who escrows the bounty would be the judge.

I'll resume working once the bounty is secured, I trust Rails so I'll let all the PHP guys get a head start Cheesy

I semi-disagree with the proposal.
 You have quite the list there such has French translations, and the ability for internationalisation for others to input there translations, again IMO I think that someone must know another language to effectively implement this. Everything else I agree with as it looks like the standard Pool admin page should look like Smiley
2862  Bitcoin / Bitcoin Technical Support / Pushpool - Tech Support on: May 28, 2011, 10:34:37 AM

This install guide will assist you with installing Pushpool 5.1 please give me a break and help me out as I'll be typeing as I'm working through it so I'll deffinatly forget somthings Thanks for the help mates!

Also pushpool is just a back-end if you would like to operate a pool like deepbit.net you need frontend software which would require a Virtual Hosting Service(VPS) or a Dedicated Server. A front-end does all the pay-outs, user/worker management, and stats if you don't feel like developing your own software you can build off of already made front-ends such as
Mining Farm which can get you up and running with in a couple of minutes provided that you have full root access to your server with Apache2 and PHP installed along with basic knowledge of setup Cronjobs or Crontabs.


First off your going to want to download the latest pushpool version (offical updated download page: http://forum.bitcoin.org/index.php?topic=8707.0;topicseen)
http://yyz.us/bitcoin/pushpool-0.5.1.tar.gz
and click "Downloads" then make sure you get the one that says Download .tar.gz

Before we start we are going to do a update for the system packages right now
Code:
sudo apt-get install update;
sudo apt-get install build-essential;

Once you extract the downloaded pushpool.tar.gz file on to your server your going to first want to run ./autogen.sh

Code:
./autogen.sh

On my fresh Ububntu server install right off the bat I had an Aclocal type error in which my case I had to install Automake to get past it
Code:
sudo apt-get install automake

Okay if you got the aclocal/automake error you should now run ./autogen.sh once more and it should spit out some files such as ./configure file
Next were going to attempt to run the configure file
Code:
./configure --prefix=/home/pushpool_install_directory

I was then presented with another problem that looks like this
Quote
configure:2039: checking for a BSD-compatible install
configure:2107: result: /usr/bin/install -c
configure:2118: checking whether build environment is sane
configure:2168: result: yes
configure:2309: checking for a thread-safe mkdir -p
configure:2348: result: /bin/mkdir -p
configure:2361: checking for gawk
configure:2377: found /usr/bin/gawk
configure:2388: result: gawk
configure:2399: checking whether make sets $(MAKE)
configure:2421: result: yes
configure:2505: checking whether to enable maintainer-specific portions of Makefiles
configure:2514: result: no
configure:2532: checking build system type
configure:2546: result: x86_64-unknown-linux-gnu
configure:2566: checking host system type
configure:2579: result: x86_64-unknown-linux-gnu
configure:2648: checking for gcc
configure:2678: result: no
configure:2741: checking for cc
configure:2788: result: no
configure:2844: checking for cl.exe
configure:2874: result: no
configure:2898: error: in `/home/pushpoolInstaller':
configure:2900: error: no acceptable C compiler found in $PATH
See `config.log' for more details
Which meant no compiler was installed so i went with this command to get a compatible compiler installed
Code:
sudo apt-get install gcc

Now lets run configure again
Code:
./configure

My system stopped the configure after finding out there is no libevent which the error looked like this
Quote
configure: error: Missing required libevent

If your receiving the same error do the following

Libevent install instructions
Get libevent source code
Code:
wget http://monkey.org/~provos/libevent-2.0.12-stable.tar.gz

Next extract the source code where you would like, for simplicity I extracted inside of the pushpool source code files
Code:
tar xzvf libevent-2.0.12-stable.tar.gz

now we change into the libevent directory so we can install libevent
Code:
cd libevent-2.0.12-table.tar.gz

now we are going to ./configure libevent
Code:
./configure

if you got no errors do the following
Code:
make;
make install;

Those command should output something like this
Quote
le'
make[3]: Entering directory `/home/pushpoolInstaller/libevent-2.0.12-stable/sample'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable/sample'
make[2]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable/sample'
Making install in test
make[2]: Entering directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make  install-am
make[3]: Entering directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make[4]: Entering directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make[3]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make[2]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable/test'
make[1]: Leaving directory `/home/pushpoolInstaller/libevent-2.0.12-stable'

now we have libevent installed(if you received no errors that is)!

Now lets change back into the pushpoold install directory were we first started off in this tutorials case
we are going to do cd ..
Code:
cd ..


Now we should be in the pushpool installer, lets try to configure again!
Code:
./configure --prefix=/home/pushpool_install_directory

So it looks like in a fresh Ubuntu server we need to install Zlib which should be an easy package get so lets retrieve the latest source code by getting doing this
Code:
wget http://zlib.net/zlib-1.2.5.tar.gz

Then were going to extract the file
Code:
tar xvf http://zlib.net/zlib-1.2.5.tar.gz


Now were going to cd into zlib
Code:
cd http://zlib.net/zlib-1.2.5


BREAK TIME!


Now lets compile this baby!
Code:
./configure;
make;
make install;

 You should have gotton no errors lets continue on to our pushpool installation

Move to your pushpool install file directory in this tutorials case it is just simply
Code:
cd ..


Lets try another configure on pushpool again
Code:
./configure --prefix=/home/pushpool_install_directory

I'm now getting a Jansson error when configuring that looks like this
Quote
checking for json_loads in -ljansson... no
configure: error: Missing required jansson library

So now lets get the jansson source code (Offical website: http://www.digip.org/jansson/);

Code:
wget http://www.digip.org/jansson/releases/jansson-2.1.tar.gz

Do extraction like usual
Code:
tar xvf jansson-2.1.tar.gz

Move into directory like normal
Code:
cd jansson-2.1.tar.gz

Now lets do some compiling!
Code:
./configure
this should output a bunch of lines and should finish with the following messages
Quote
configure: creating ./config.status
config.status: creating jansson.pc
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating src/Makefile
config.status: creating src/jansson_config.h
config.status: creating test/Makefile
config.status: creating test/bin/Makefile
config.status: creating test/suites/Makefile
config.status: creating test/suites/api/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

If so we are on the right track and almost finished with installing *Wipes sweat*

Now lets do the installing part for jansson
Code:
make;
make install;

Which should out put something like this
Quote
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/pushpoolInstaller/jansson-2.1/test'
make[2]: Leaving directory `/home/pushpoolInstaller/jansson-2.1/test'
make[1]: Leaving directory `/home/pushpoolInstaller/jansson-2.1/test'
make[1]: Entering directory `/home/pushpoolInstaller/jansson-2.1'
make[2]: Entering directory `/home/pushpoolInstaller/jansson-2.1'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/lib/pkgconfig" || /bin/mkdir -p "/usr/local/lib/pkgconfig"
 /usr/bin/install -c -m 644 jansson.pc '/usr/local/lib/pkgconfig'
make[2]: Leaving directory `/home/pushpoolInstaller/jansson-2.1'
make[1]: Leaving directory `/home/pushpoolInstaller/jansson-2.1'

If yours looks similar we are straight planking at this point... lol jk nobody planks any more that was so 2010, moving on....


Anyways we now have Jansson installed so lets move back to our pushpool installing directory in our case we just do a simple
Code:
cd ..

Now lets see if pushpool has anything to say this time
Code:
./configure --prefix=/home/pushpool_install_directory

Yep it looks like for me OpenSSL wasn't installed
lets install it by running
Code:
sudo apt-get install libssl-dev


Now we got OpenSSL installed for sure we should try doing ./configure again
Code:
./configure --prefix=/home/pushpool_install_directory

So pushpool is still pissed and it needs the support of libmemcached library (offical website: https://launchpad.net/libmemcached/+download)
so lets install it

first we need to install memcached which is what libmemcached relies on
so lets do a quick
Code:
sudo apt-get install memcached;
and we need libtool aparently
Code:
sudo apt-get install libtool;

next we get the source
Code:
wget http://launchpad.net/libmemcached/1.0/0.50/+download/libmemcached-0.50.tar.gz

extract the source into folders
Code:
tar xvf libmemcached-0.50.tar.gz

move into the new directory
Code:
cd libmemcached-0.50.tar.gz

configure
Code:
./configure;
Which should look like this if done correctly
Quote
Configuration summary for libmemcached version 0.50

   * Installation prefix:       /usr/local
   * System type:               unknown-linux-gnu
   * Host CPU:                  x86_64
   * C Compiler:                gcc (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5
   * Assertions enabled:        yes
   * Debug enabled:             no
   * Warnings as failure:       no

---

Now make install
Code:
make;
make install;

which should look like this at the end of the output if done correctly
Quote
/usr/bin/install -c -m 644 support/libmemcached.pc '/usr/local/lib/pkgconfig'
make[2]: Leaving directory `/home/pushpoolInstaller/libmemcached-0.50'
make[1]: Leaving directory `/home/pushpoolInstaller/libmemcached-0.50'

So now lets go back to pushpool and see what it wants to b*tch about this time...
Code:
cd ..


Oh great... another error

so it looks like i don't have any database development files installed becuase i got the end output that looks like this
Quote
checking for SQLite3 library >= 3.0.0... not found
checking for mysql_config... no
checking for mysql_config5... no
checking for pg_config... no

so I'm going to pick mysql databse as our choice for install you can install any database you want here, it just must be compatible with pushpoold and you must install the required dev files for that database system such as SQLite or postql but i picked MySql becuase I like it.
Code:
sudo apt-get install libmysql++-dev







And back to pushpool installer... so now we should definably be able to run ./configure
Code:
./configure

it should out put something like this
Quote
configure: creating ./config.status
config.status: creating Makefile
config.status: creating autotools-config.h
config.status: executing depfiles commands

Which means we can go ahead and do a
Code:
make;
make install;

which the last lines of the output will look like this
Quote
test -z "/usr/local/sbin" || /bin/mkdir -p "/usr/local/sbin"
  /usr/bin/install -c pushpoold '/usr/local/sbin'
test -z "/usr/local/sbin" || /bin/mkdir -p "/usr/local/sbin"
 /usr/bin/install -c blkmond '/usr/local/sbin'
make[1]: Nothing to be done for `install-data-am'.
make[1]: Leaving directory `/home/pushpool-0.5.1'

This means that it worked!!! but theres still more to be done..... OH Linux! I <3 U!


Okay first thing we want to do is move into the directory that we set the --prefix= variable to which in our case was "/home/pushpoolInstaller/"
Code:
cd /home/pushpoolInstaller

So there should be a pushpool file that we could run like this
Code:
./pushpool -E -F

Which should have returned the following error message..
Quote
[2011-07-06 14:08:36.131550] config file(server.json): No such file or directory

So lets create that server.json file which by the way if your having issues with the server.json file configuration or setup please go to the following thread for json support: http://forum.bitcoin.org/index.php?topic=26504.0

server.json configuration file
Code:
{
# network ports
"listen" : [
# binary protocol (default), port 8342
{ "port" : 8342 },

# HTTP JSON-RPC protocol, port 8341
{ "port" : 8341, "protocol" : "http-json" },

# HTTP JSON-RPC protocol, port 8344,
# with trusted proxy appserver.example.com forwarding
# requests to us
{ "port" : 8332, "protocol" : "http-json",
 "proxy" : "127.0.0.1" },

# binary protocol, localhost-only port 8338
{ "host" : "127.0.0.1", "port" : 8338, "protocol" : "binary" }
],

# database settings
"database" : {
"engine" : "mysql",
"host" : "localhost",
"port" : 3306,
"name" : "mysql_database_name",
"username" : "mysql_username",
"password" : "mysql_password",
"sharelog" : true,
"stmt.pwdb":"SELECT `password` FROM `pool_worker` WHERE `username` = ?",
"stmt.sharelog":"INSERT INTO shares (rem_host, username, our_result, upstream_result, reason, solution) VALUES (?, ?, ?, ?, ?, ?)"

},

# cache settings
"memcached" : {
"servers" : [
{ "host" : "127.0.0.1", "port" : 11211 }
]
},

"pid" : "/tmp/pushpoold.pid",

# overrides local hostname detection
"forcehost" : "localhost.localdomain",

"log.requests" : "/tmp/request.log",
"log.shares" : "/tmp/shares.log",

# the server assumes longpolling (w/ SIGUSR1 called for each blk)
"longpoll.disable" : false,

# length of time to cache username/password credentials, in seconds
"auth.cred_cache.expire" : 75,

# RPC settings | Notice how this ISN'T port number 8332 this is becuase the same port number should not becuase inconjunction with the JSON RPC port other wise you'll get 500 errors
"rpc.url" : "http://127.0.0.1:8333/",
"rpc.user" : "bitcoinRPC_wallet_username",
"rpc.pass" : "bitcoinRPC_wallet_password",

# rewrite returned 'target' to difficulty-1?
"rpc.target.rewrite" : true
}


Okay so now that we saved our server.json file in the same folder as puspoold we can now run pushpoold again in Debug mode and see what it says this time
Code:
./pushpoold -E -F

It should output somthing like this
Quote
[2011-07-06 14:35:9.866836] Listening on host :: port 8352
[2011-07-06 14:35:9.867064] Listening on host :: port 8351
[2011-07-06 14:35:9.867160] Listening on host :: port 8332
[2011-07-06 14:35:9.867242] Listening on host 127.0.0.1 port 8338
[2011-07-06 14:35:9.869570] initialized

If it ends with initialized 99% of the time your golden and that its is fully operational in the sense that "It connected to bitcoind, It connected to a database set in the json file, and that its got all the permissions it needs"
So go ahead and point your miner to the port number you specified in the server.json file where the line that says this
Code:
		# HTTP JSON-RPC protocol, port 8344,
# with trusted proxy appserver.example.com forwarding
# requests to us
{ "port" : 8332, "protocol" : "http-json",
 "proxy" : "127.0.0.1" },

Now all you need is a front-end which will manage all your miners stats, work load, efficiency, overview look of the entire pool, how many and which blocks were found and confirmed as well as invalid blocks, if you said yes to one or all of those, you can download commerical software that usually goes for $100-$300 a license OR you can get for free working and safe condition over at the official Mining Farm thread
http://forum.bitcoin.org/index.php?topic=10617.0

Brought to you by Cheaper In Bitcoins.com


2863  Bitcoin / Bitcoin Technical Support / What happens to the .01 Bitcent after using bitcoin-php with sendtoaddress(); on: May 28, 2011, 05:12:55 AM
I realise that sendtoaddress() rounds to the nearest 0.01 but I'm doing some quick messing around and Im sending low amounts to myself using bitcoin-php no matter the transaction after I send the funds to my self it will be 0.01 Bitcent total. What happens to that bitcent? Bitcoin transaction fee is set to 0.00 even tho I'm actually running bitcoind when testing the software.
Suggestions are helpful Smiley
2864  Bitcoin / Project Development / Re: Bitcoin Desktop Wallpaper Designs And Other Graphics on: May 28, 2011, 01:33:29 AM
Can I use this in my front-end for pushpool?
2865  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: May 27, 2011, 11:42:58 PM
No, but I don't think thats what he was asking.  You would use the sharelog for that.
Well, I might be missing something here, but ultimately the point is to track generated blocks, along with their shares in order to calculate payouts.

So monitoring solved blocks is pretty easy, it hardens a bit when you actually need to pay people based on their work.

Tell me boot it, I think I might have to ditch using a scoring method until the next version. Shares are so much less stressful way of calculating payout.
Thanks for the blkmond link too!

Just a preview. Please show your screen shots of your progress, for inspirational purposes Smiley
It's not written in OOP. I'll release version 2 with OOProgramming so people can create Modules easier to their liking.
2866  Bitcoin / Project Development / Re: [BOUNTY] Open Source pooled mining platform with web interface on: May 27, 2011, 05:38:10 PM
What I'm offering to create : A web interface to the stock pushpool implementation with the following

Features :
 * User account management e-mail confirmation, password reset etc., strong password encryption (bcrypt)
 * Worker management,
 * Admin user profile with access to a full fledged admin interface,
 * Optional automated payouts with payment threshold,
 * Optional fee,
 * Web app sitting on the same MySQL DB as pushpool,
 * Share or score based calculation (I'd vote for score)
 * Graphing (to be digged a bit more : what charts exactly? I'll include in the bounty anything that's easily pullable from the DB)
 * Out of the box internationalization (abillity to easily translate the app in another language),
 * Full localization in french and english,
 * API methods (public and private) if it's useful
 * Easily replacable stylesheet -> easily skinnable,
 * Open source MIT license
 * Strong automated test suite
 * 3 months bugfixing (shouldn't be necessary Cheesy)

Extra :
 * Hosting on a strong dedicated server for testing and continuous feedback

My experience :
 * https://bitcoin-central.net
 * 10 years web developement

My conditions :
 * Bounty is to be pre-paid (or escrowed through clearcoin or some reputable bitcoiner)
 * If someone completes the feature list before I do he/she gets the bounty (I send it to the person, or clearcoin/reputable bitcoiner does)
 * First usable version in a week

If you feel I forgot features, feel free to comment. Work will start as soon as the bounty is sent/escrowed

I like the idea of someone holding the bitcoins in escrow is a reputable bitcoiner. Wink

You sound like you know what your doing may be we can collaborate as I'm having troubles finishing my PHP front-end to Pushpool such as,
* How can you alert the system that a block has been found? (So the balance can be distributed).
* Every block solved needs 120 confirms before they can be sent out, how do you go about tracking how many confirmations there is for the reward.
-My front end is programmed in PHP-MySql-Apache2
I'm using bitcoin-php. Any ideas?
2867  Bitcoin / Mining / Re: pushpool - open source pool software on: May 26, 2011, 04:02:31 PM
After 18hours of attempting to get pushpool working ive ran into just about everyproblem. Ill be writing an install guide right after i finish the front end interface for pushpool.

Any one know why when i enable sharelog:true, that it would send the shares as questions marks.

Heres mysql query: "stmt.sharelog":"INSERT INTO shares (rem_host, username, our_result, upstream_result, reason, solution) VALUES (?, ?, ?, ?, ?, ?)"
2868  Bitcoin / Mining / Re: pushpool - open source pool software on: May 26, 2011, 04:08:43 AM
That isn't an error.

Thanks, I got it running. The only problem is when anyone try's to connect it comes up as Wrong Username & Password so I started trollin the IRC chat all day trying to convince anyone that i am typing in the wrong username and password. So it obviously isn't the wrong username and password if i copy and paste. It was a simple username and password like --user=a --pass=b that was it, theres no way you can type that in wrong.

 Any suggestions as to why my miner is having trouble connecting even tho pushpool will report "[382983464] Initialized"?
2869  Bitcoin / Mining / Re: pushpool - open source pool software on: May 25, 2011, 08:05:48 PM
Quote

I manually installed jannson-2.0.1

Any suggestions?


I did as well without problems...were you able to './configure;make;make install' without any problems (assuming linux)?

Yes Jannson ./configure;make;make check; make install flawlessly

So I guess i was using the git file and not the tarball so i got the tarball and now im experiencing this error after executing "make install"

Quote
make[1]: Entering directory `/home/shane/Downloads/pushpool-0.4.1'
test -z "/usr/local/sbin" || /bin/mkdir -p "/usr/local/sbin"
  /usr/bin/install -c pushpoold '/usr/local/sbin'
test -z "/usr/local/sbin" || /bin/mkdir -p "/usr/local/sbin"
 /usr/bin/install -c blkmond '/usr/local/sbin'
make[1]: Nothing to be done for `install-data-am'.
make[1]: Leaving directory `/home/shane/Downloads/pushpool-0.4.1'
[/quote]
2870  Bitcoin / Mining / Re: pushpool - open source pool software on: May 25, 2011, 07:45:29 PM
Quote

I manually installed jannson-2.0.1

Any suggestions?


I did as well without problems...were you able to './configure;make;make install' without any problems (assuming linux)?

Yes Jannson ./configure;make;make check; make install flawlessly
2871  Bitcoin / Mining / Re: pushpool - open source pool software on: May 25, 2011, 07:35:08 PM
This is the error i got when i ran "Make" after downloading the Master pool.
Quote
gcc -DHAVE_CONFIG_H -I. -fno-strict-aliasing -pthread     -g -O2 -MT config.o -MD -MP -MF .deps/config.Tpo -c -o config.o config.c
config.c: In function ‘read_config’:
config.c:305:2: warning: passing argument 2 of ‘json_loads’ makes integer from pointer without a cast
/usr/local/include/jansson.h:219:9: note: expected ‘size_t’ but argument is of type ‘struct json_error_t *’
config.c:305:2: error: too few arguments to function ‘json_loads’
/usr/local/include/jansson.h:219:9: note: declared here
make[1]: *** [config.o] Error 1
make[1]: Leaving directory `/home/xenland/Downloads/bitcoin-pushpool'
make: *** [all] Error 2

I manually installed jannson-2.0.1

Any suggestions?
2872  Other / Obsolete (selling) / Re: BTC T-Shirts! - 4 BTC EACH Sizes S, M, L, XL, XXL on: May 23, 2011, 04:50:33 PM
You look like the same size as me, what size are you wearing? This is an awsome T-Shirt BTW, How do you know what address your sending "from"?
2873  Other / Obsolete (selling) / Buy shares for Mining Rig Pool on: May 23, 2011, 10:06:24 AM
(Still editing... Calculating Hash rates, and over all BTC calculation)

What your investing in
Your money will purchase everything necessary to purchase low-power consumption computer parts such as Motherboard, Ram, FlashDrive(as HDD) for graphics cards and Power Supply which every computer that is able to be purchased will be constructed and begin to mine and the contract will last for 3.5 months after that which point you will be asked to invest in the parts needed to upgrade to a reliable hashing level if you choose to not participate with the rest of the investors in upgrading the hardware your contract will be terminated and you will no longer have Bitcoins deposited to your account.

What you can expect after the 3.5Month
I've figured out after 3.5 months the initial mining rig will become unprofitable below is some data that is to be considered more like a guide then actual results due to the fact that the difficulty rate change fluctuates but this is just an estimate you can except, I averaged out both the worst case and the best case scenario to get a guided estimate of the expected results.

Cost of Electricity: $0.15 Kw/h (Its really .10 but just for the sake of worst case scenario)
------------------------------------------
current difficulty = amount of time in mining = $USD

Worst Case Senario(Increments of 400,000 difficulty)
-------------------------------
244139   = 2 weeks = $676.76
644139 = 4 weeks = $256
1044139 = 6 weeks = $158
1444139 = 8 weeks = $114.4
1844139 = 10 weeks = $89.6
2244139 = 12 weeks = $72.36
2644139 = 14 weeks = $31.24

Overal of 3.5 Months;
Total Output: $1,398.36
Total output w\ electricity cost: $1,398.36 - $378 = $1020.36;





Best Case Senario(Increments of 100,000 difficulty)
---------------------------------
244139   = 2 weeks = $676.76
344139 = 4 weeks = $477.48
444139 = 6 weeks = $369.96
544139 = 8 weeks = $301.64
644139 = 10 weeks = $256.5
744139 = 12 weeks = $222.04
844139 = 14 weeks = $195.74

Overall of 3.5 months:
Total Output: $2,496
Total output w\ electricity cost: $2496 - $378 = $2118

Expected total profit to be divided among the share holders after 3.5month contract

After electricity: $2079.36
After cost of initial hardware: $1579 (net profit)

Total Net Profit to be divided: $1579


What it will be like if you invest after the 3.5 month contract

After the 3.5 months I will look online for new VideoCard hardware to propose to investors that we can all agree on to get higher hashrates. At which point it will be cheaper to invest in a video card since the basic essential of computer hardware is already there.
2874  Bitcoin / Bitcoin Discussion / Re: This would be a nice addition to the US Constitution on: May 23, 2011, 03:25:50 AM
That law would be soo vague that any drug,rape,violent anonymous network would be allowed by law just because its anonymous. I leave you with this youtube reference as an odd way to prove my point: http://www.youtube.com/watch?v=TXLkQVcpjmY
2875  Bitcoin / Bitcoin Technical Support / Re: (Solved)Mt. Gox claims they didn't recieve my BitCoin on: May 23, 2011, 01:19:31 AM
It was a mistake on my part according to MtGox, they never issued that address which is why I came here in the first place. I don't know why everyone assumes "Claims" means "I haven't received an answer from MtGox support yet". I still believe that it was the correct address and some glitch in their system, I copy and pasted that hash and compared them next to each other in both the browser window and the BitCoin window. Any who, I'm actively trading BTC for money and vice-verse with no problem after that mishap
2876  Bitcoin / Project Development / Re: Human Bitcoin Video Competition (Bounty: 100BTC) on: May 21, 2011, 05:16:20 AM
Bump, Did this thread die? Wheres all the Bitcoin Patrons att?
2877  Bitcoin / Bitcoin Technical Support / Re: Mt. Gox claims they didn't recieve my BitCoin on: May 19, 2011, 11:26:36 PM
Don't mean to double post but i recorded another transaction we'll see how this one plays out; Stay Tuned

*Update: well It's rare that I make a fuss about something and be wrong about it but my 2nd transaction went through, who ever got my 5BTC have fun with it because it was a weeks worth of mining and it was supposed to go to an upgrade GPU so I can pay off some fines I owe. Sorry MtGox.
2878  Bitcoin / Bitcoin Technical Support / Re: Mt. Gox claims they didn't recieve my BitCoin on: May 19, 2011, 11:08:48 PM
there should be some history in the blockexplorer.

do you still have the address?
you can search in here http://blockexplorer.com/ to see the history

Yes i still have the address and I took your advice to check the block explorer with the hash and it came up with this page: http://blockexplorer.com/address/14CkVyqL89K8um1ht7ARjtndpYF1B8B9xx what does it all mean tho?

Do you have any confirmations on the transfer out of the account you were sending from?  Did you compare the To: address in your bitcoin wallet to the address that the bitcoins were supposed to arrive at at MtGox?
How do I check what address has been setup to me in the MtGox website? It's all one click your there I didn't think there was such a section. If you ment did i check to make sure the address supplied was indeed the address supplied, the answer is yes i always double check to make sure they match as i don't like getting a whole weeks worth of bit coins wasted.


*On a side note what I noticed the instant i sent it i was charged with a 1.01BTC charge after the 5.01BTC was charged, odd huh?

2879  Bitcoin / Bitcoin Technical Support / (Solved)Mt. Gox claims they didn't recieve my BitCoin on: May 19, 2011, 10:07:27 PM
Does this seem likely that its was MtGox fault at issuing BitCoin Addresses, or maybe I just accidently copy and pasted the wrong address or the like?
2880  Other / Obsolete (selling) / 20 Inch Monitor Acer H203H; 7BTC or 14BTC "Buy it now" on: May 19, 2011, 02:05:29 PM
You can find all the details over at this page http://www.biddingpond.com/item.php?id=646
and can purchase it from me for 14BTC

Thanks Mates!
Pages: « 1 ... 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 [144] 145 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!