Bitcoin Forum
May 09, 2024, 07:55:59 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 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 »
361  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] WorldCoin WDC | Official Developer Thread | on: May 29, 2013, 12:50:36 PM
I've tried this can you maybe tell me how to fix it please,this is my error
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....
net.cpp: In function 'void ThreadDNSAddressSeed2(void*)':
net.cpp:1190:52: warning: comparison is always false due to limited range of data type [-Wtype-limits]

It sounds like you don't have all the boost libraries installed. I had to install libboost1.48-all-dev instead of libboost-all-dev to pick up the boost_random library. Another option might be to see if there's a separate package for the random library (it might be called something like libboost-random-dev) and install that.
362  Bitcoin / Pools / Re: [1.5 TH/s] Bitparking Pool, DGM 1.5%,pays orphans,vardiff,stratum,Merge Mining on: May 28, 2013, 03:25:34 PM
EDIT: It occurs to me that other pools give me lower difficulty shares, so I submit shares a lot more frequently. What's a good difficulty for 775MH/s?
You are using default difficulty 16? Set password to d=1... I think it might be router doping the connection since it is inactive too long... ADSL?

I think that was the problem, thanks! I set d=2 as per matt4054's suggestion, and have been mining without a disconnect for almost 30 minutes now.

EDIT: Sent you a tip, thanks again!
363  Bitcoin / Pools / Re: [1.5 TH/s] Bitparking Pool, DGM 1.5%,pays orphans,vardiff,stratum,Merge Mining on: May 28, 2013, 02:35:09 PM
im am or was getting many "stratum connection to pool 0 interrupted"

But it might be on my side.

EDIT: i checked miners on 3 different locations tho, and i have it on the 3 of them (much more often on the 2 that share the same ISP, which has issues from 19:00 to 2:00
I am not seeing this myself. Is anyone else seeing this? What cgminer version are you using?

I get this periodically, too, every 10 minutes or so. It's alarming because cgminer spins down the fans on my cards but continues hashing until the connection is restored. I'm on cgminer 3.1.1. I see this occasionally with other pools but much less frequently.
This sounds like a problem on your side. I have trigger happy monitoring system(made in last days with Slush just to be sure it was the pool not me) and with exception when I posted I had no problems. And that were not problems by the pool but upgrades...

EDIT: But I do use a older version of cgminer since I did have some problems with 3.x versions... I'm still on 2.11.4. I say don't fix it if it is not broken... Unless 3.1.1 brings something like more speed. If this is the case please let me know.

It may be a problem on my side, but the weird part is that it doesn't happen very often with other pools (or at all with some pools). Any ideas what on my side might cause that to happen? Maybe stratum is timing out, or the TCP connection is being dropped? I do have a fairly low hash rate (775MH/s), and I usually submit 0.5-0.7 shares/minute on average, so maybe the pool and/or cgminer thinks I've dropped out.

I just started mining a little while ago, so 3.x was the latest and greatest. But this only started happening recently, so I'm not sure the cgminer version is to blame.

EDIT: It occurs to me that other pools give me lower difficulty shares, so I submit shares a lot more frequently. What's a good difficulty for 775MH/s?
364  Bitcoin / Pools / Re: [1.5 TH/s] Bitparking Pool, DGM 1.5%,pays orphans,vardiff,stratum,Merge Mining on: May 28, 2013, 12:28:27 PM
im am or was getting many "stratum connection to pool 0 interrupted"

But it might be on my side.

EDIT: i checked miners on 3 different locations tho, and i have it on the 3 of them (much more often on the 2 that share the same ISP, which has issues from 19:00 to 2:00
I am not seeing this myself. Is anyone else seeing this? What cgminer version are you using?

I get this periodically, too, every 10 minutes or so. It's alarming because cgminer spins down the fans on my cards but continues hashing until the connection is restored. I'm on cgminer 3.1.1. I see this occasionally with other pools but much less frequently.
365  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] 'foo' and 'bar' coins--a "how-to" guide for cut+paste cryptocurrency on: May 27, 2013, 09:49:56 PM
shakezula, this is great stuff. Congrats.
366  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 09:28:24 PM
Ok, i'll give it another go tomorrow, too busy with work atm.

How did you get it to use your libssl/libcrypto 1.0.0 ? mine keeps compiling with libssl/libcrypto 0.9.8 even though i have libssl/libcrypto 1.0.0

openssl was another homebrew keg that I had to force link. If you don't, I think Qt picks up the system openssl.
367  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Definitive List of Mac Altcoin Wallets on: May 27, 2013, 07:28:30 PM
UPDATE: I built the BitBar wallet for Mac and added it to the list above.
368  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 03:18:23 PM
Hmm, how did you go about obtaining your copy of berkeley db-4.8?
I used a custom homebrew keg from github...

just saw this now:
http://bitcoin.stackexchange.com/questions/3672/trouble-compiling-bitcoind-on-osx-with-homebrew

might try that one next.

I just use the stock berkeley-db4 keg, and force-link it to get the libraries in the right place. The hard part is tracking down all the dylib dependencies of the wallet, since some dylibs have funky paths to their dependencies. This is the current version of the script I use to fix them up (which may be overkill for some wallets):

Code:
#!/bin/bash
mkdir $1.app/Contents/Frameworks
cp -R /Library/Frameworks/QtCore.framework $1.app/Contents/Frameworks
cp -R /Library/Frameworks/QtGui.framework $1.app/Contents/Frameworks
cp -R /Library/Frameworks/QtNetwork.framework $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libminiupnpc.9.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/opt/openssl/lib/libssl.1.0.0.dylib $1.app/Contents/Frameworks
#cp -RL /usr/local/lib/libz.1.dylib $1.app/Contents/Frameworks
#cp -RL /usr/local/lib/libz.1.2.7.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/opt/berkeley-db4/lib/libdb_cxx-4.8.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_system-mt.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_filesystem-mt.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_program_options-mt.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_thread-mt.dylib $1.app/Contents/Frameworks
cp -RL /usr/local/lib/libboost_chrono-mt.dylib $1.app/Contents/Frameworks
chmod -R +w $1.app/Contents/Frameworks
install_name_tool -id @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore $1.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
install_name_tool -id @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui $1.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
install_name_tool -id @executable_path/../Frameworks/QtNetwork.framework/Versions/4/QtGui $1.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork
install_name_tool -id @executable_path/../Frameworks/libminiupnpc.9.dylib $1.app/Contents/Frameworks/libminiupnpc.9.dylib
install_name_tool -id @executable_path/../Frameworks/libssl.1.0.0.dylib $1.app/Contents/Frameworks/libssl.1.0.0.dylib
#install_name_tool -id @executable_path/../Frameworks/libz.1.dylib $1.app/Contents/Frameworks/libz.1.dylib
install_name_tool -id @executable_path/../Frameworks/libcrypto.1.0.0.dylib $1.app/Contents/Frameworks/libcrypto.1.0.0.dylib
install_name_tool -id @executable_path/../Frameworks/libdb_cxx-4.8.dylib $1.app/Contents/Frameworks/libdb_cxx-4.8.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_system-mt.dylib $1.app/Contents/Frameworks/libboost_system-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_filesystem-mt.dylib $1.app/Contents/Frameworks/libboost_filesystem-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_program_options-mt.dylib $1.app/Contents/Frameworks/libboost_program_options-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_thread-mt.dylib $1.app/Contents/Frameworks/libboost_thread-mt.dylib
install_name_tool -id @executable_path/../Frameworks/libboost_chrono-mt.dylib $1.app/Contents/Frameworks/libboost_chrono-mt.dylib
install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore $1.app/Contents/MacOs/$1
install_name_tool -change QtGui.framework/Versions/4/QtGui @executable_path/../Frameworks/QtGui.framework/Versions/4/QtGui $1.app/Contents/MacOs/$1
install_name_tool -change QtNetwork.framework/Versions/4/QtNetwork @executable_path/../Frameworks/QtNetwork.framework/Versions/4/QtNetwork $1.app/Contents/MacOs/$1
install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore $1.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui
install_name_tool -change QtCore.framework/Versions/4/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4/QtCore $1.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork
install_name_tool -change /usr/local/lib/libminiupnpc.9.dylib @executable_path/../Frameworks/libminiupnpc.9.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/opt/openssl/lib/libssl.1.0.0.dylib @executable_path/../Frameworks/libssl.1.0.0.dylib $1.app/Contents/MacOs/$1
#install_name_tool -change /usr/local/lib/libz.1.dylib @executable_path/../Frameworks/libz.1.dylib $1.app/Contents/Frameworks/libcrypto.1.0.0.dylib
#install_name_tool -change /usr/local/lib/libz.1.dylib @executable_path/../Frameworks/libz.1.dylib $1.app/Contents/Frameworks/libssl.1.0.0.dylib
install_name_tool -change /usr/local/Cellar/openssl/1.0.1e/lib/libcrypto.1.0.0.dylib @executable_path/../Frameworks/libcrypto.1.0.0.dylib $1.app/Contents/Frameworks/libcrypto.1.0.0.dylib
install_name_tool -change /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib @executable_path/../Frameworks/libcrypto.1.0.0.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/Cellar/openssl/1.0.1e/lib/libcrypto.1.0.0.dylib @executable_path/../Frameworks/libcrypto.1.0.0.dylib $1.app/Contents/Frameworks/libssl.1.0.0.dylib
install_name_tool -change /usr/local/opt/berkeley-db4/lib/libdb_cxx-4.8.dylib @executable_path/../Frameworks/libdb_cxx-4.8.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib $1.app/Contents/Frameworks/libboost_filesystem-mt.dylib
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib $1.app/Contents/Frameworks/libboost_thread-mt.dylib
install_name_tool -change /usr/local/lib/libboost_system-mt.dylib @executable_path/../Frameworks/libboost_system-mt.dylib $1.app/Contents/Frameworks/libboost_chrono-mt.dylib
install_name_tool -change /usr/local/lib/libboost_filesystem-mt.dylib @executable_path/../Frameworks/libboost_filesystem-mt.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/lib/libboost_program_options-mt.dylib @executable_path/../Frameworks/libboost_program_options-mt.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/lib/libboost_thread-mt.dylib @executable_path/../Frameworks/libboost_thread-mt.dylib $1.app/Contents/MacOs/$1
install_name_tool -change /usr/local/lib/libboost_chrono-mt.dylib @executable_path/../Frameworks/libboost_chrono-mt.dylib $1.app/Contents/MacOs/$1
369  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 02:30:11 PM
Please do digitalcoin.

Done! Download link is in my Mac Wallets thread: https://bitcointalk.org/index.php?topic=216672
370  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 02:29:14 PM
Hey maxpower,

How did you fix the startup crash bug you had with your clients? i got a friend to run the client and they said it crashed right away:
http://pastebin.com/LguBEgxX

Any ideas?

I've never seen that particular crash. My startup crash was in the Qt code, and I ended up fixing it by running macdeployqt on my clients after running my dependency fixing script posted above. Looks like yours is crashing in the berkeleydb code somewhere...maybe the blockchain db is corrupted on your friend's machine?
371  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || ~UPDATED~ on: May 27, 2013, 02:26:12 PM
I just uploaded a Mac version of the Digitalcoin wallet. The download link is in my Mac Wallets thread: https://bitcointalk.org/index.php?topic=216672

Enjoy, and let me know how it works!
372  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Definitive List of Mac Altcoin Wallets on: May 27, 2013, 02:15:42 PM
UPDATE: I compiled a Mac version of the Digitalcoin wallet and added it to the list. Let me know if you have any trouble with it.
373  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 02:10:13 PM
See this post:
https://bitcointalk.org/index.php?topic=206577.msg2279387#msg2279387

There was some other stuff i did to get to that point as well though, i edited the: yacoin-qt.pro file.
adding this line: QMAKE_CXXFLAGS += -fpermissive

Also, see my reply further down in the same thread linked above, i had to modify his suggestion slightly.

I made a DMG and i'm uploading it now (my internet sucks here, but when it's done uploading i'll post the link for people to test).

Edit: i forgot, i also unraveled the macros in that ASM file, with poolers perl file: nomacros.pl
sudo perl nomacro.pl scrypt-x86_64.S

But i think in the end this step wasn't necessary, because i think that that ASM file is circumvented completely with the method described in the thread linked above.  I guess this means that the OSX QT might be a bit slower, so i wouldn't recomend mining with it, but there are other ways to mine YaCoin, and the Qt can just be for wallet management.

EDIT2: this is neat: http://qt-project.org/doc/qt-4.8/deployment-mac.html
specifically
Code:
Create a disk image file (.dmg) with the application
In order to create a compressed disk image with your application, issue the following commands in a shell:

cd /path/to/the/dir/with-your-app
hdiutil create -format UDBZ -quiet -srcfolder YourApp.app YourAppArchive.dmg

Cheers,
Crendore

Very cool! Kudos for getting it working. Okay if I add your client to my master list of Mac wallets (https://bitcointalk.org/index.php?topic=216672) when you upload it?

Making dmgs would be nice! I'll check that out, thanks.
374  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 01:27:20 PM
Shoooooooop da Woooop got the yacoin QT built, it's running and syncing with the network right now.

I need to go through and bundle in all the deps, and then i can release it.

Thanks for your help maxpower & others in this thread.

Very nice! How did you get the assembly working?
375  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 02:27:00 AM
any chance making a DGC mac wallet?

Definitely on my list! I'll post if/when I can get it working.
376  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 27, 2013, 02:26:13 AM
Hey guys,

I've been trying to get YACoin compiled for OSX but i'm stuck.  maxpower do you know ASM at all?

Check this out:
https://bitcointalk.org/index.php?topic=206577.msg2279287#msg2279287

Nope, I'm kind of stuck on YACoin too. I know that pooler's cpuminer has a script that fixes up the project's assembly for OS X. Maybe that script is applicable here, too.
377  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Definitive List of Mac Altcoin Wallets on: May 26, 2013, 01:46:26 PM
A Quick Guide to Backing Up Mac Wallets

Backing up a Mac wallet is very similar to backing up a Windows or Linux wallet. In all cases, your goal is to find the "wallet.dat" file created by your wallet app and to copy it somewhere safe. The only difference between Mac, Windows, and Linux is where your wallet.dat file is stored.

Before getting into the mechanics of backing up your wallet, please let me remind you that it is very important to encrypt your wallet, if possible, before backing it up. If you make a backup of an unencrypted wallet, and somebody else gets hold of it, it's no problem for that person to send your coins anywhere they want.

With that in mind, the easiest way to back up a wallet on any system is to use the backup functionality in the wallet app. Most wallets have a "Backup Wallet..." option on the File menu; when you click that, the wallet will save a clean copy of your wallet.dat in the location of your choice. You also have the option to name the backup file something other than "wallet.dat"; that's handy if you want to embed a timestamp or add the name of the coin to the filename.

The only problem with using the Backup Wallet functionality is that, if you have a lot of wallets, it can be a pain to have to open every wallet and back it up. Luckily, you can also back up a wallet by finding its wallet.dat file and copying the file to some other location.

If you'd like to use a GUI to do this, it's possible to do it with Finder. However, you'll have to do a small hack to show hidden files first. To expose hidden files in Finder, open a Terminal window and type:

Code:
defaults write com.apple.Finder AppleShowAllFiles YES

Note that if you want to hide hidden files again later, you can do so by running this command in Terminal:

Code:
defaults write com.apple.Finder AppleShowAllFiles NO

Once you have hidden files exposed, you'll need to navigate to the Application Support folder, which lives under the (previously hidden) Library folder in your home directory. You can do this by opening a Finder window (by clicking on the Finder icon in the dock or double-clicking a drive icon on your desktop), and selecting your home directory (which should be in the left pane of the Finder window--it's the same as your Mac username). In your home directory, double-click Library, and in Library, double-click Application Support.

Now you should see a bunch of folders that contain various preferences and files used by various apps, including wallets. The wallet directories for different wallets are typically named after the corresponding coins, e.g. Bitcoin, Litecoin, etc.

If you open any of those folders, you should see a number of files, including wallet.dat. Before you copy a wallet.dat, make sure the wallet app is closed; then you can copy it the normal way (by using copy and paste, or by dragging and dropping). Just copy the wallet.dat files you want to back up to another location (Dropbox, USB drive, elsewhere on your disk, etc.) and you have backed up your wallet.

Restoring a wallet is just as simple, whether you've backed it up using the wallet app or by hand. Just locate the Application Support folder for the wallet you want to restore, and copy its wallet.dat file into that folder, and you're done.

If you're comfortable with Terminal, you can also copy wallet.dat files into and out of wallet directories using the usual Terminal commands. Your Application Support directory can be referenced at the command line as "~/Library/Application Support" and individual wallet directories can be referenced by name, e.g. "~/Library/Application Support/Bitcoin". Note that when you're using the command line, all directory names are case sensitive.

Questions? Feel free to ask.
378  Alternate cryptocurrencies / Altcoin Discussion / [ANN] The Definitive List of Mac Altcoin Wallets on: May 26, 2013, 01:45:04 PM
Several people have been making an effort recently to get some of the altcoin wallets compiled for Mac OS X. Posts about them have been pretty scattered, so I'm starting this thread as a master list of Mac altcoin wallets, as well as a single place to discuss them.

This thread is meant for end users. We have a good Mac wallet development thread going here: https://bitcointalk.org/index.php?topic=205017.0

Here are the Mac altcoin wallets I know of. Let me know if I missed any. I'll update this list when I find or build more wallets.

DISCLAIMER: I can only vouch for the quality/security of the wallets I've built myself. Be careful and run virus/malware scans on any software you download. There's a good freeware virus scanner for Mac OS X at http://www.clamxav.com/.

Built by maxpower: (Note that my wallets may not work on versions of OS X prior to 10.7 Lion)
AeroCoin: https://www.dropbox.com/s/rhekt71bfw59fa0/AeroCoin-Qt-2.0.0.0-Mac.zip
AndroidTokens: https://www.dropbox.com/s/j371vq8axs8l0n4/androidstoken-qt-1.0.0.0-Mac.zip
Applecoin: https://www.dropbox.com/s/nd8dblpcyt8e4uv/Applecoin-Qt-1.3.0.0-Mac.zip
AsicCoins: https://www.dropbox.com/s/0qarygd6p0fjoqn/asiccoin-Qt-1.0.0.0-Mac.zip
Argentum: https://www.dropbox.com/s/e0uon8xt2xtcohu/Argentum-Qt-1.0.3-Mac.zip
Battlecoin: https://www.dropbox.com/s/janwnxcpwuqooec/Battlecoin-Qt-0.2.2.1-Mac.zip
Betacoin: https://www.dropbox.com/s/omp0y9r61vrorbh/Betacoin-Qt-0.8.99.14-1-Mac.zip
Billioncoin: https://www.dropbox.com/s/j3b0l0ogv3wzl6a/billioncoin-qt-1.1.1-Mac.zip
BitBar: https://www.dropbox.com/s/2nwsdmes08sgmzf/BitBar-Qt-0.4.0-Mac.zip
BitGem: https://www.dropbox.com/s/jrht344eewbau7f/BitGem-Qt-0.4.1.6-Mac.zip
Bitnote: https://www.dropbox.com/s/3dpa2rjpcg3igou/Bitnote-Qt-1.2.0.0-Mac.zip
BottleCaps: https://www.dropbox.com/s/97nuk9didp54wr8/BottleCaps-Qt-1.5.0.0-Mac.zip
Bytecoin: https://www.dropbox.com/s/2ug7chnqmg8vyxb/Bytecoin-Qt-0.8.1-7-Mac.zip
Cashcoin: https://www.dropbox.com/s/xmu2ave4tv14kh3/CASH-Qt-1.1-Mac.zip
ColossusCoin: https://www.dropbox.com/s/2bx48moqowdj67c/ColossusCoin-1.5.2.0-Mac.zip
CryptogenicBullion: https://www.dropbox.com/s/588ycw583z3bq3d/CryptogenicBullion-Qt-1.1.6.7-Mac.zip
DarkToken: https://www.dropbox.com/s/hvi5mef1a6fiixe/darktoken-Qt-1.0.0.0-Mac.zip?dl=0
Digitalcoin: https://www.dropbox.com/s/gjtw08tyicpp9wp/DigitalCoin-Qt-2.0.0.0-Mac.zip
Dogecoin: https://www.dropbox.com/s/1rsceoxv54svtj2/dogecoin-qt-0.6.4.0-Mac.zip
Donationcoin: https://www.dropbox.com/s/5zpdeoh9uzyikeb/Donationcoin-Qt-1.3.0.0-Mac.zip
Doubloons: https://www.dropbox.com/s/l6l8sne9kqi9pwv/Doubloons-0.6.3.0-Mac.zip
ekrona: https://www.dropbox.com/s/5lb8z41uaabtnvw/ekrona-qt-1.2.0.0-Mac.zip
eMark: https://www.dropbox.com/s/jdpcr3gvnwrlh2w/eMark-Qt-1.0.0.0-Mac.zip
Emerald: https://www.dropbox.com/s/llzh0ybxeo2czjh/Emerald-Qt-0.6.3.0-Mac.zip
FireFlyCoin: https://www.dropbox.com/s/sf4dmtun5thc0fd/FireFlyCoin-Qt-0.9.1.0-Mac.zip
Florincoin: https://www.dropbox.com/s/uf45chn9ojytjmv/Florincoin-Qt-0.6.5.14-Mac.zip
Freecoin: https://www.dropbox.com/s/gfwdxoigz1r8i8s/freecoin-Qt-1.0.0.0-Mac.zip
FuelCoin: https://www.dropbox.com/s/fsiqfl2cjj620u2/FuelCoin-Qt-0.8.8.0-Mac.zip
GameCoin: https://www.dropbox.com/s/tgh1lgqwz24wdkf/Gamecoin-Qt-0.8.4.2-Mac.zip
GLDCoin: https://www.dropbox.com/s/vphq2crmkcfbi41/GLDCoin-Qt-0.6.9.3-Mac.zip
Globe: https://www.dropbox.com/s/tmk4xq0uxt535jk/Globe-Qt-0.4-Mac.zip
Gold Pressed Latinum: https://www.dropbox.com/s/ydy3le47bxp8p9i/GoldPressedLatinum-Qt-2.5.0.0-Mac.zip
Grandcoin: https://www.dropbox.com/s/ka2eqheool33ft7/Grandcoin-Qt-0.6.3.0-Mac.zip
HoboNickels: https://www.dropbox.com/s/b4ftnmc95kx3pnq/HoboNickels-Qt-1.3.0.0-Mac.zip
Huntercoin: https://www.dropbox.com/s/u686xtp92uzfon3/HunterCoin-Qt-1.0.11-Mac.zip
HyperCoin: https://www.dropbox.com/s/55n9rvbyqo7un2x/hypercoin-qt-1.0.0.0-Mac.zip
Infinitecoin: https://www.dropbox.com/s/doqwnrvhnrtgt2g/Infinitecoin-Qt-0.6.3.0-Mac.zip
iXcoin: https://www.dropbox.com/s/jzabc3mm8hxhxex/iXcoin-Qt-0.8.6.0-Mac.zip (new QT client, back up your old wallet before using)
Joulecoin: https://www.dropbox.com/s/uqfrzmlwqti3xfo/Joulecoin-Qt-0.8.99.9-Mac.zip
Krugercoin: https://www.dropbox.com/s/56635aw8n17a05l/KrugerCoin-Qt-0.7.0.5-Mac.zip
Lightspeed: https://www.dropbox.com/s/ugbqcgwadsma06s/lightspeed-Qt-1.0.0.0-Mac.zip?dl=0
Luckycoin: https://www.dropbox.com/s/yz1xsnevbgf90p0/Luckycoin-Qt-1.0.0.0-Mac.zip
MediterraneanCoin: https://www.dropbox.com/s/o3i9pk6nmajbx6m/Mediterraneancoin-Qt-0.8.7.2-Mac.zip
Megacoin: https://www.dropbox.com/s/z5qf4c0wm2n3sza/Megacoin-Qt-0.8.996E-Mac.zip
MemoryCoin: https://www.dropbox.com/s/8pw065n25hm1v2h/MemoryCoin-Qt-0.8.5-66-Mac.zip
Molecule: https://www.dropbox.com/s/jrlyd0m51m9rjq0/Molecule-Qt-0.8.10.2-Mac.zip
Mooncoin: https://www.dropbox.com/s/ripfzgpbh6buwkc/Mooncoin-Qt-1.862.1-Mac.zip
Mintcoin: https://www.dropbox.com/s/sll88c9jvh6gwfd/mintcoin-qt-1.11.0.0-Mac.zip
Namecoin: https://www.dropbox.com/s/76xkqillvxf5blb/Namecoin-Qt-0.3.75-Mac.zip (from new Namecoin development at https://github.com/namecoin/namecoin, work still in progress, back up your wallet!)
Nibble: https://www.dropbox.com/s/0eptl596hxnjpl0/nibble-qt-0.6.5.2-Mac.zip
Orangecoin: https://www.dropbox.com/s/ebqf0hmb5iw6rcl/orangecoin-qt-1.0.4.0-Mac.zip
Particle: https://www.dropbox.com/s/n7icslbcjrdx0t5/Particle-Qt-0.8.6.2-Mac.zip
PhenixCoin: https://www.dropbox.com/s/dhhy4nc1tshqtaw/phenixcoin-Qt-0.6.4.9-Mac.zip
PiggyCoin (old scrypt version): https://www.dropbox.com/s/r8wpr3hmy8sxz4c/PiggyBank-1.4-Mac.zip
PiggyCoin (new X11 version): https://www.dropbox.com/s/ro35qa0jnp49noo/newpiggycoin-Qt-1.0.0.0-Mac.zip
PopularCoin: https://www.dropbox.com/s/4kcsnhtl4ll4oa9/PopularCoin-Qt-0.8.7.0-Mac.zip
Powercoin: https://www.dropbox.com/s/4jl5xi543vrzf90/Powercoin-Qt-0.6.3.0-Mac.zip
Quark: https://www.dropbox.com/s/i17lj5ag3jg9vi4/Quarkcoin-Qt-0.8.3.24-Mac.zip
QQcoin: https://www.dropbox.com/s/gcvjj23lbodx10v/QQcoin-Qt-1.0.2.0-Mac.zip
Radioactivecoin: https://www.dropbox.com/s/0qzb4qzpwa0sp3j/Radioactivecoin-Qt-1.3.2.0-Mac.zip
Securecoin: https://www.dropbox.com/s/eff5cxp3zbxgoep/Securecoin-Qt-1.0-Mac.zip
Skeincoin: https://www.dropbox.com/s/g85kkxbcnkugrlp/Skeincoin-Qt-0.8.99.3-Mac.zip
SlimCoin: https://www.dropbox.com/s/b5irhas4xqvh2pb/Slimcoin-Qt-0.3.0.0-Mac.zip
Sterlingcoin: https://www.dropbox.com/s/314ocnwecfq28q4/Sterlingcoin-Qt-1.0.0.0-Mac-3.zip?dl=0
Tagcoin: https://www.dropbox.com/s/gyyra84qm9zcdmu/TagCoin-Qt-1.0.5-Mac.zip
Takeicoin: https://www.dropbox.com/s/dgx9789mgb3xgx1/TakeiCoin-Qt-0.9.1.3-Mac.zip
TEK: https://www.dropbox.com/s/y17rjlji1ruxgsv/tekcoin-Qt-2.0.1.0-Mac.zip?dl=0
Terracoin: https://www.dropbox.com/s/yrsjhhn7syqhgn9/Terracoin-Qt-0.8.0.4-Mac.zip
Teslacoin: https://www.dropbox.com/s/4eczr5l5dqcmf0o/Teslacoin-Qt-3.0.0.0-Mac.zip
Thanks: https://www.dropbox.com/s/u9p3z7mpo235u07/Thanks-Qt-1.1-Mac.zip
Tigercoin: https://www.dropbox.com/s/43xecukdd6k1a3q/Tigercoin-Qt-1.1.0.0-Mac.zip
Trollcoin: https://www.dropbox.com/s/n4x3k24fbxcvuzj/TrollCoin-Qt-1.2.0.0-Mac.zip
Truckcoin: https://www.dropbox.com/s/um63xcwpcpremau/truckcoin-qt-0.9.5.0-Mac.zip?dl=0
Ultracoin: https://www.dropbox.com/s/egoan01alppkqe5/UltraCoin-Qt-1.0.4.1-Mac.zip
UniCoin: https://www.dropbox.com/s/xbdm462cjv2tr5z/UniCoin-Qt-1.0.0.0-Mac.zip
UniversalMolecule: https://www.dropbox.com/s/fqdwqvp1mzpyyr8/UniversalMolecule-Qt-0.8.12.1-Mac.zip
Unobtanium: https://www.dropbox.com/s/iksn2zsnt7jakas/Unobtanium-Qt-0.9.2.9-Mac.zip
USCoin: https://www.dropbox.com/s/vjwhgy99mlfp61k/USCoin-Qt-0.6.3.0-Mac.zip
Velocitycoin: https://www.dropbox.com/s/m1ojdha30xumjm6/Velocitycoin-Qt-1.1.2.0-Mac.zip
Whitecoin: https://www.dropbox.com/s/v5f5au4psjkljsx/whitecoin-qt-1.0.1-Mac.zip
Worldcoin: https://www.dropbox.com/s/6ahqz35jgiicji6/Worldcoin-Qt-0.8.6.2-1-Mac.zip
W2Coin: https://www.dropbox.com/s/zn2hismdxh7qfwk/W2Coin-Qt-1.0.0.0-Mac.zip
YaCoin: https://www.dropbox.com/s/xqvc8nzyndt25d4/yacoin-qt-0.4.3-Mac.zip
Zetacoin: https://www.dropbox.com/s/9opm1muc3bq3ve5/Zetacoin-Qt-0.8.99.13.zip

Built by jrlepage:
HyperCoin: https://dl.dropboxusercontent.com/u/7405118/hypercoin-qt.zip
Mincoin: https://dl.dropboxusercontent.com/u/7405118/MinCoin-Qt_v064.zip

Built by bushstar:
Feathercoin: http://www.feathercoin.com/dl/feathercoin-mac.zip
FRANKO: http://frankos.org/downloads/Franko-0.8.5.1-Mac.zip

Built by twobits:
Devcoin: https://www.box.com/s/ntna8dibxek351s42fxu
Ixcoin: GUI: https://www.box.com/s/d4g2d4lq2jez7jcwj8na | Daemon: https://www.box.com/s/a1y9kcalxxksnxkldysa
Namecoin: GUI: https://www.box.com/s/tf8v3kzrdcawn5yfc1om | Daemon: https://www.box.com/s/ouqsqb5xcw88g0qmaljl
Noirbits: https://app.box.com/s/gjlaldl0u9ft9mjap3qw

Built by coblee:
Litecoin: https://litecoin.org/

Built by Kosmatik:
OneCoin: https://docs.google.com/file/d/0B58-u3zKUlLdSkVGekxBbEZHSW8/edit?usp=sharing

Built by shitscared:
Fastcoin: http://www.fastcoin.ca/downloads.html
GIL: https://www.dropbox.com/s/n04pmfmxb7todck/Gilcoin-Qt.dmg.zip
Alphacoin: https://www.dropbox.com/s/sapifb1iwja2ceu/Alphacoin-Qt.dmg.zip

Built by bitpar:
BBQcoin: http://www.sendspace.com/file/t3nhtz

Built by cobrabyte:
StableCoin: https://bitcointalk.org/index.php?topic=349198.msg4230247#msg4230247

Built by Bale80:
Netcoin: http://forum.netcoinfoundation.org/Netcoin-Qt.dmg
NoodlyAppendageCoin: http://noodlyappendagecoin.com/downloads/noodlyappendagecoin-qt.dmg

Built by JahPowerBit:
XCP: https://github.com/JahPowerBit/counterpartyws/raw/master/dist/counterpartyws.app.zip

Built by pcmerc:
CasinoCoin: http://pcmerc.com/files/CasinoCoin-Qt.dmg
Dopecoin: http://pcmerc.com/files/Dopecoin-Qt.dmg
ECCoin: http://pcmerc.com/files/ECCoin-Qt.dmg
FairCoin: http://pcmerc.com/files/FairCoin-Qt.dmg
GPUCoin: http://pcmerc.com/files/GPUCoin-Qt.dmg
GrumpyCoin: http://pcmerc.com/files/GrumpyCoin-Qt.dmg
KaChingCoin: http://pcmerc.com/files/KaChingCoin-Qt.dmg
LottoCoin: http://pcmerc.com/files/LottoCoin-Qt.dmg
Orobit: http://pcmerc.com/files/Orobit-Qt.dmg
Rubycoin: http://pcmerc.com/files/Rubycoin-Qt.dmg
StarCoin: http://pcmerc.com/files/StarCoin-Qt.dmg
SUNcoin: http://pcmerc.com/files/SUNcoin-Qt.dmg
ThePandacoin: http://pcmerc.com/files/ThePandacoin-Qt.dmg
ZeitCoin: http://pcmerc.com/files/ZeitCoin-Qt.dmg
SiliconValleyCoin: http://pcmerc.com/files/Silicon_Valley-Qt.dmg
GOODCoin: http://pcmerc.com/files/GOODCoin-Qt.dmg

Built by Kergekoin:
Mintcoin: https://www.dropbox.com/s/yz1uqioci1qsn2h/MintCoin-1.6-macosx.dmg

Built by MystPhysX:
FedoraCoin (TiPS): http://chainexplorer.info/files/FedoraCoin-Qt%201.0.dmg
LiteBar: http://chainexplorer.info/files/LiteBar-Qt.dmg
CannaCoin: https://dl.dropboxusercontent.com/u/60507461/Cannacoin-Qt.zip
Blakecoin: http://chainexplorer.info/files/BlakeCoin.dmg
SocialCoin: http://chainexplorer.info/files/SocialCoin.dmg
TheBotCoin: http://chainexplorer.info/files/TheBotCoin-Qt.dmg
SambaCoin: http://chainexplorer.info/files/SambaCoin-Qt.dmg
FairCoin: http://chainexplorer.info/files/FairCoin-Qt.dmg
SourceCoin: http://chainexplorer.info/files/SourceCoin-Qt.dmg
Colossus Coin: https://dl.dropboxusercontent.com/u/60507461/ColossusCoin.zip
CinniCoin: https://dl.dropboxusercontent.com/u/60507461/CinniCoin-Qt.zip
FlutterCoin: https://dl.dropboxusercontent.com/u/60507461/FlutterCoin-Qt.zip
BTCTalkCoin: https://dl.dropboxusercontent.com/u/60507461/BTCtalkcoin-Qt.zip
Colossus Coin: https://dl.dropboxusercontent.com/u/60507461/ColossusCoin.zip
Shibecoin: https://dl.dropboxusercontent.com/u/60507461/shibecoin-qt%200.7.7.zip
Sourcecoin: https://dl.dropboxusercontent.com/u/60507461/SourceCoin-Qt.zip
Sync: https://dl.dropboxusercontent.com/u/60507461/Sync-Qt.zip
XtraCoin: https://dl.dropboxusercontent.com/u/60507461/xtracoin-Qt2.zip
PawnCoin: https://dl.dropboxusercontent.com/u/60507461/pawncoin-qt.zip
FlutterCoin: https://dl.dropboxusercontent.com/u/60507461/FlutterCoin-Qt.zip
BwinCoin: https://dl.dropboxusercontent.com/u/60507461/BwinCoin-Qt.zip
ActiveCoin: https://dl.dropboxusercontent.com/u/60507461/ActiveCoin-qt.zip
GROUPCoin: https://dl.dropboxusercontent.com/u/60507461/GROUPCoin-Qt.zip
MillionaireCoin: https://dl.dropboxusercontent.com/u/60507461/MillionaireCoin-Qt.zip
XCloudCoin: https://dl.dropboxusercontent.com/u/60507461/XCloudcoin-Qt.zip
PURE: https://dl.dropboxusercontent.com/u/60507461/PureCoin-Qt.zip
Socialxbot: https://dl.dropboxusercontent.com/u/60507461/SOCIALBOT-Qt.zip
Solarcoin: https://dl.dropboxusercontent.com/u/60507461/SolarCoin-Qt.zip
Equinox: https://www.dropbox.com/s/mjc2nsyyxbonjge/EquinoxCoin-Qt.zip?dl=0
Solcoin: https://www.dropbox.com/s/z93z3qmhgnzhvtb/Solcoin-Qt.zip?dl=0

Built by schernikau:
BlakeBitcoin: https://mega.co.nz/#!MEkHhaoB!F9UFRKRTeo3EuuiT71ck8_NhSxJSRffi6sOY2owvM0g
BitcoinPlus (XBC): https://mega.co.nz/#!dN8mnLKY!zb0hUN5Wl6F9UAmj2JKxMN7dtEIPdQB1h-liH71rMjA
Electron: https://mega.co.nz/#!gR8mHDxZ!Qn76XottB5oaE3IC9fZaUgbtNWRYqfmiyMRZhXd1dVk
Photon: https://mega.co.nz/#!gBVSmJRQ!-3epMmez1fkn-UaXRx8F4-q6IYr44hiQLxzhAGeMe5Q

Built by jyap, for OS X 10.7+:
Continuumcoin: https://www.dropbox.com/s/hxdql6nwvov68ti/ContinuumCoin-Qt.0.9.0.3.dmg
Dirac: https://www.dropbox.com/s/3s8cafmkqd1v0rf/Dirac-Qt-macports_10.8.dmg
Nautiluscoin: https://www.dropbox.com/s/m8hdnyefbbucxw4/Nautiluscoin-Qt-macports_10.8.dmg
OpenSourcecoin: https://www.dropbox.com/s/niys6hysfeajwqb/Ocoin-Qt-macports_10.8.dmg
Zimstake: https://mega.co.nz/#!ZEpEVBqC!dclNx5q-7JB4hZ_nmbYAtN14Z5-xOJ44Mbkc7elopa8
Nautiluscoin: https://s3.amazonaws.com/nautiluscoin/Nautiluscoin-Qt-signed.dmg (latest)
Pinkcoin: http://crypto.pink/wallet/pinkcoin-Qt-1.0.1.1-signed.dmg
Razorcoin: http://razorco.in/Razor-Qt-signed.dmg
Unobtanium: http://www.mediafire.com/download/d9cbycnnxie5n3a/Unobtanium-Qt-0.9.5.dmg

Built by marine4u:
Marinecoin: http://download.marinecoin.org/download/Marinecoin-qt.zip

Built by crypto_zoidberg:
Boolberry: http://boolberry.com/downloads.html#Mac

Built by unknown builder(s):
AnonCoin: https://anoncoin.net/Downloads.html
DarkCoin: https://www.dropbox.com/s/wtadyzztgrs0ihw/Xcoin-Qt.app.osx10.7.zip
Elacoin: https://github.com/elacoin/elacoin/tree/master/mac-binaries
KittehCoin: https://kittehcoin.info/
Noirbits: https://mega.co.nz/#!v84CDSCY!ZMrvWhmEP4ahVKsRH9dBxEc4G8w76-KbwyB0UEsVyUU
Novacoin: http://sourceforge.net/projects/novacoin/files/
Spots: https://app.box.com/s/gw7hpy7xug18wr3rmo9d
PPCoin: https://mega.co.nz/#!gQwxGTJC!B6D6f1RWbFRBTp-4U0KYYAmAfzEz-myKVzyIPEppHfk
AppleByte: http://AppleByte.me
MemoryCoin: http://shrine.mmc-square.com/Memorycoin-QT(Mavericks).dmg
BitShares-PTS: https://github.com/BitShares/BitShares-PTS/releases
Digit: http://digitpayment.org/digit_downloads/Digit-MacOSx.dmg
HyperStake: https://github.com/presstab/HyperStake/releases/download/v1.0.6/HyperStake-qt-106-OSX.zip
379  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 26, 2013, 01:28:34 PM
Thank you it is working awesome

can you post the one for WDC i cannot seem to find it to redownload it

Thanks

It's here: https://www.dropbox.com/s/958azh5o2lab3rg/Worldcoin-Qt-0.6.3.0-Mac.zip

I'm going to start a new thread to consolidate all the known Mac altcoin wallets.
380  Alternate cryptocurrencies / Altcoin Discussion / Re: Compiling Mac Clients for ANY Alt Coin, Your Choice! on: May 26, 2013, 05:35:12 AM
Can you compile powercoin for us?

Here you go: https://www.dropbox.com/s/4jl5xi543vrzf90/Powercoin-Qt-0.6.3.0-Mac.zip
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!