Bitcoin Forum
July 01, 2024, 11:47:46 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 24 25 26 27 28 29 30 »
241  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 09, 2015, 10:20:21 PM
Not sure what point you are trying to prove, but I have NEVER seen VirusTotal give this many supposed "false positives" on a wallet......this is INSANE compared to anything I have ever seen.  There is NO way this can be trusted with those numbers, false or not.......one way or the other cannot be proven and anyone that installs a wallet that ANY antivirus is showing it to be that dirty is CRAZY man.  The original wallet was NOTHING like this, yes it did have a few false positives but it was also VERY easy to tell they were FALSE positives!

Now I have no working wallet and cannot move any coins around and I will NOT be the only one, many people will check this wallet and MOST will use VirusTotal.......no way most will install this wallet like this and this WILL keep new people from coming in, this is a PROBLEM!

It's a fair point Jim, and we're working one getting the right balance.

If you look at our Github, upgrade advice is dedicating a lot of time end expertise to move this project forward from the technical perspective, and in a short time has already done some fantastic work, and I for one am very grateful for having such an asset as part of the project Smiley

Have a look at this (without the mining software), only 1/56 on virus total
https://www.virustotal.com/en/file/4bb81af5a18f44b02d177fe2c0bc065fe660e2d54a5849a1940b1f0fabbb2185/analysis/

download link
https://mega.co.nz/#!TFUz1BZD!kt4Y61HBYCsFIHEmFNebvIRBiXuhWCPPDbHsdqAg0yA

edit: This is the latest official release (but without the mining software), not the pre-release
242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 09, 2015, 08:41:16 AM
For those who are cpu mining, I recommend the uncle-bob fork of quarkminer. He optimized a few things in asm which doubles hashrate vs Neisklar's original quark miner.

For linux/mingw:

Install libcurl development package or build from source

Debian/Ubuntu: use aptitude to install libcurl4-openssl-dev or libcurl4-gnutls-dev

Code:
git clone https://github.com/uncle-bob/quarkcoin-cpuminer
cd quarkcoin-cpuminer
./autogen
CFLAGS="-march=native -O3" ./configure
make

Run with a script or try:
Code:
./minerd --algo quark --scantime 40 --url stratum+tcp://178.62.67.113:3032 --userpass <MUE address>:anything --threads 2

I like to base the threads setting on the actual number of cores per processor.

Neisklar's:
~100 khash/s on a sandybridge celeron with 2 threads
~200 khash/s on a sandybridge i7 with 4 threads

uncle-bob's
~200 khash/s on a sandybridge celeron with 2 threads
~400 khash/s on a sandybridge i7 with 4 threads
Thanks for this Smiley
I'll test and feedback results.
100% hash rate improvement would be very nice!
243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 08, 2015, 08:26:48 PM
Why not spend $5 per month running a cloud based MonetaryUnit wallet miner using DigitalOcean.
Help support and protect the Mue network, and earn Mue while you're doing it Smiley
Thanks to drakoin for the walk through

Just copy and paste each red line into the console, ONE line at a time

SET UP THE SERVER & WALLET

# Sign up at digital ocean http://tiny.cc/digocean NL USA Singapur
# You probably get 10$ welcome bonus if you go through my link before signing up.

# Create droplet: Choose 512MB; Region close to you; Ubuntu.
# Wait for the email with the root password.
# To connect use ssh / putty.exe

# become superuser
sudo -i

# update all software (all the installed packages)
apt-get update; apt-get upgrade

# prep the system to be able to git & compile & build
apt-get install git make automake build-essential libboost-all-dev

# might be necessary for other tools & distros:
apt-get install yasm binutils libcurl4-openssl-dev openssl libssl-dev

# compiling needs a large SWAP file:
sudo dd if=/dev/zero of=/swapfile bs=80M count=16
sudo mkswap /swapfile; sudo swapon /swapfile

# For some reason, bitcoind is stuck in an old database version db4.8,
# which is not supported by newest ubuntu / debian anymore, so we get it manually:

# Get db4.8 source, compile and install (takes 5 minutes)
cd ~
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar zxf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix; ../dist/configure – – enable-cxx
make; sudo make install
rm -R ~/db-4.8.30.NC*
   # delete the sources

# Link the libraries
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

#
# (SERVER IS PREPARED. FROM HERE ON YOU CAN INSTALL OTHER WALLETS)
#

# where to find db4.8 tell your system  (needs to be redone after reboot)
export BDB_INCLUDE_PATH=”/usr/local/BerkeleyDB.4.8/include”
export BDB_LIB_PATH=”/usr/local/BerkeleyDB.4.8/lib”

# Wallet sources from github, and
# build the headless server daemon “monetaryunitd” (takes 7 minutes)

cd ~; git clone https://github.com/MonetaryUnit/MUE-src
cd ~/MUE-src/src
mkdir obj; chmod a+x leveldb/build_detect_platform # fix 2 problems with these sources
make -f makefile.unix USE_UPNP=-
cp ~/MUE-src/src/monetaryunitd /usr/local/bin


# create config file – copy-paste all in one go. Make sure to change your password.

cd ~
mkdir ~/.monetaryunit
cat << “CONFIG” >> ~/.monetaryunit/monetaryunit.conf
listen=1
server=1
daemon=1
testnet=0
rpcuser=LOCALUSER
rpcpassword=VERYSECURESUPERLONGSUPERSAFEPASSWORD
rpcport=29947
CONFIG
chmod 700 ~/.monetaryunit/monetaryunit.conf
chmod 700 ~/.monetaryunit
ls -la ~/.monetaryunit


# start server
# Should result in: “Monetaryunit server starting”:

monetaryunitd

# Most important RPC commands:

# see if the blockchain is syncing (right now “blocks” : 142874)
monetaryunitd getinfo

# most important RPC commands (try them one by one, no danger)
monetaryunitd getbalance
monetaryunitd getnewaddress forDonations

monetaryunitd listtransactions forDonations
monetaryunitd listreceivedbyaddress 0 true

monetaryunitd listaccounts
monetaryunitd getaddressesbyaccount forDonations
monetaryunitd getaddressesbyaccount “”

# for more RPC commands (explanations in the API calls list)
monetaryunitd help

# if this tutorial was useful, tip me some MUE ( OR write on a PostIt(tm): “Tip drakoin some coins” Smiley )
# to my MUE address 7QzuXv5p2Ys181CsLiYR9PFvqwzCW1aPmK by using this command:
monetaryunitd sendtoaddress 7QzuXv5p2Ys181CsLiYR9PFvqwzCW1aPmK 111 ThanksToDrakoin ThanksForTutorial

# or please tip me now in other currencies at www.tiny.cc/drakointip,
# or pass on profitable hints to me (read www.tiny.cc/drakoinhints)

NOW SET UP THE MINER
wget https://raw.githubusercontent.com/drakoin/LinuxWallet/master/install-quarkminer-Neisklar.sh
chmod a+x install-quarkminer-Neisklar.sh; ./install-quarkminer-Neisklar.sh
wget https://raw.githubusercontent.com/drakoin/LinuxWallet/master/mueminerstart.sh
chmod a+x mueminerstart.sh; ./mueminerstart.sh

Of course, you want to change the POOLUSERNAME= to your own MUE address
Code:
nano mueminerstart.sh
Ctrl-X Y to save & exit nano
244  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: We're hiring! Come join the MonetaryUnit project and help shape it's future on: February 07, 2015, 10:32:52 PM
The Miners Lottery vacancy has been filled Smiley
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 07, 2015, 05:31:45 PM
madbot4525 has agreed to take on the www.MinersLottery.com project Smiley

Just wanted to welcome them officially to "Team Mue"  Grin
246  Alternate cryptocurrencies / Marketplace (Altcoins) / We're hiring! Come join the MonetaryUnit project and help shape it's future on: February 07, 2015, 09:32:03 AM
Hi all, 2015 is make or break for this project.

I will be announcing the launch of MonetaryUnit scratch cards in partnership with www.Prypto.com in the coming days, which is exciting, it's been in progress for quite a while. Smiley

The MonetaryUnit project has reached a metaphorical hard fork.
Where it goes is not really down to me any longer, it is down to those of you who would like to see where we can take this project, and what we can achieve with it.

I can't do this on my own any more.

So, do you want to help shape the future of MonetaryUnit?
Read on & please do feedback, comment, suggest, give your opinion etc Smiley

Volunteer vacancies available in the MonetaryUnit project.

Social media lead

Twitter account manager
Facebook account manager
Development of other opportunities

Social media is a very important part of the success of any internet based project.
Within the cryptocurrency market place, even more so.  The whole success of so many pump and dump crypto scams has relied entirely on the power of social media.  That highlights just how influential it is.  We are of course, looking to use it for the power of good, not evil Smiley
Ideally we are looking for someone to manage our social media assets as a whole.
You may have a lot of experience in this sector, and be a big fan of crypto, and you’re looking to combine those interests?  This would be ideal for you.
You may want to start your career as a social media expert, to build your resume and skill set for later employment.  You may just be a huge fan of MonetaryUnit, and want to help how you can.
We all know “real life” comes first, and the amount of time that you will be able to commit may change from day to day.
If you think you have what it takes, or you are willing to be self taught, and want to help develop our footprint on the social media landscape, then please speak up.
You may have zero experience, and a belly full of drive, or you may be experienced to the eyeballs.  We don’t mind, as long as you want to help this project and the community as a whole.
We will consider splitting the role to specialities, or if time commitments restrict what you can do.
So, if you would like to add something quite unique and very attractive to a potential employer on your resume, get in touch.

Proof of action campaign manager

We have secured the domain www.GetCoinReward.com
We are looking for someone to manage this website, it’s promotion and exposure of MonetaryUnit through a new marketing channel.
Proof of action campaigns promote a specific interest by monitoring and tracking a users “actions” from within a pre-defined list of actions.  This may be re-tweeting, liking a page, posting a comment, downloading a file, watching a video, etc etc.
If the user does a set number of actions, they are then allowed to receive a “reward”.  In this case it would likely be a MonetaryUnit reward.  Or perhaps you have other plans?
If you have experience of using the www.Gleam.io platform, or if you would like to learn to add a very unique and attractive addition to your resume, please get in touch.
You may be experienced, or you may be a complete novice, either way, if you want to help the MonetaryUnit project we would be interested to hear from you.

BlockOLottO.com project

Currently managed by theboccet

The Miners Lottery project

Currently managed by Mue.
www.TheMinersLottery.com is a promotional website to give exposure to mining MonetaryUnit on mining pools.
It promotes the philosophy of MUE that “size DOESN’T matter” when it comes to people mining MonetaryUnit.  Everybody, regardless of hashrate, has an equal opportunity to win a reward for helping to contribute to the MonetaryUnit project.
Would you like to manage this project?  Can you see what else we can do with it, or where else we can take it?
Would you like the opportunity to add something quite unique to your resume that shows you have a lot of transferable skills?
If this is something that interests you, that you can maintain or improve upon, or you just want to help the MonetaryUnit project, please get in touch.

Bitcoin Prize draw

Currently managed by The_Prof and Mue

Technical lead

upgradeadvice

Business manager

Do you have what it takes to bring MonetaryUnit to merchants?
Can you plan how MUE can have increased exposure, more trade on the exchanges, a higher value?
We have a target price for MonetaryUnit of between $0.004 - $0.008.  This price range means we would be in around the top 20 of global cryptocurrencies in the next few years, and would continue to grow, organically, and stably year on year due to our modest inflation.
This price range means that MUE is still very accessible to all, makes it a usable value for retail, trade, tipping and micro-payments.
Have you done it before, and you’re looking for a new challenge?  We want to hear from you.
Are you a complete novice who has just never had the opportunity, but you have a head full of ideas and boundless energy?  We want to hear from you.
We will always accept quality over quantity, so if you can only spare a few but high quality valuable hours every week/month that can really make a difference, we would gladly accept that.

Our main ANN thread is;
https://bitcointalk.org/index.php?topic=778322
247  Alternate cryptocurrencies / Altcoin Discussion / Re: (LINUX) (MANUAL) compile altcoin wallet in linux / cloud on: February 06, 2015, 10:33:13 PM
Hey drakoin, small update on this please as we have changed the source path.
It is now https://github.com/MonetaryUnit/MUE-Src
Thanks! Smiley

# monetaryunitd - your wallet in the cloud - new manual
# manual v5.2
...
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 06, 2015, 04:14:38 PM
Just a sneak preview of our new Prypto scratch cards Smiley

249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 06, 2015, 12:01:23 PM
Hi all, 2015 is make or break for this project.
I am just one person, with a real life and all those responsibilities and commitments (like the rest of us).

I will be announcing the launch of MonetaryUnit scratch cards in partnership with www.Prypto.com in the coming days, which is exciting, it's been in progress for quite a while. Smiley

The MonetaryUnit project has reached a metaphorical hard fork.
Where it goes is not really down to me any longer, it is down to those of you who would like to see where we can take this project, and what we can achieve with it.

I can't do this on my own any more.

So, do you want to help shape the future of MonetaryUnit?
Read on & please do feedback, comment, suggest, give your opinion etc Smiley

Volunteer vacancies available in the MonetaryUnit project.

Social media lead

Twitter account manager
Facebook account manager
Development of other opportunities

Social media is a very important part of the success of any internet based project.
Within the cryptocurrency market place, even more so.  The whole success of so many pump and dump crypto scams has relied entirely on the power of social media.  That highlights just how influential it is.  We are of course, looking to use it for the power of good, not evil Smiley
Ideally we are looking for someone to manage our social media assets as a whole.
You may have a lot of experience in this sector, and be a big fan of crypto, and you’re looking to combine those interests?  This would be ideal for you.
You may want to start your career as a social media expert, to build your resume and skill set for later employment.  You may just be a huge fan of MonetaryUnit, and want to help how you can.
We all know “real life” comes first, and the amount of time that you will be able to commit may change from day to day.
If you think you have what it takes, or you are willing to be self taught, and want to help develop our footprint on the social media landscape, then please speak up.
You may have zero experience, and a belly full of drive, or you may be experienced to the eyeballs.  We don’t mind, as long as you want to help this project and the community as a whole.
We will consider splitting the role to specialities, or if time commitments restrict what you can do.
So, if you would like to add something quite unique and very attractive to a potential employer on your resume, get in touch.

Proof of action campaign manager

We have secured the domain www.GetCoinReward.com
We are looking for someone to manage this website, it’s promotion and exposure of MonetaryUnit through a new marketing channel.
Proof of action campaigns promote a specific interest by monitoring and tracking a users “actions” from within a pre-defined list of actions.  This may be re-tweeting, liking a page, posting a comment, downloading a file, watching a video, etc etc.
If the user does a set number of actions, they are then allowed to receive a “reward”.  In this case it would likely be a MonetaryUnit reward.  Or perhaps you have other plans?
If you have experience of using the www.Gleam.io platform, or if you would like to learn to add a very unique and attractive addition to your resume, please get in touch.
You may be experienced, or you may be a complete novice, either way, if you want to help the MonetaryUnit project we would be interested to hear from you.

BlockOLottO.com project

Currently managed by theboccet

The Miners Lottery project

edit:Now managed by madbot4525.
Welcome to the team Smiley

www.TheMinersLottery.com is a promotional website to give exposure to mining MonetaryUnit on mining pools.
It promotes the philosophy of MUE that “size DOESN’T matter” when it comes to people mining MonetaryUnit.  Everybody, regardless of hashrate, has an equal opportunity to win a reward for helping to contribute to the MonetaryUnit project.
Would you like to manage this project?  Can you see what else we can do with it, or where else we can take it?
Would you like the opportunity to add something quite unique to your resume that shows you have a lot of transferable skills?
If this is something that interests you, that you can maintain or improve upon, or you just want to help the MonetaryUnit project, please get in touch.

Bitcoin Prize draw

Currently managed by The_Prof and Mue

Technical lead

upgradeadvice

Business manager

Do you have what it takes to bring MonetaryUnit to merchants?
Can you plan how MUE can have increased exposure, more trade on the exchanges, a higher value?
We have a target price for MonetaryUnit of between $0.004 - $0.008.  This price range means we would be in around the top 20 of global cryptocurrencies in the next few years, and would continue to grow, organically, and stably year on year due to our modest inflation.
This price range means that MUE is still very accessible to all, makes it a usable value for retail, trade, tipping and micro-payments.
Have you done it before, and you’re looking for a new challenge?  We want to hear from you.
Are you a complete novice who has just never had the opportunity, but you have a head full of ideas and boundless energy?  We want to hear from you.
We will always accept quality over quantity, so if you can only spare a few but high quality valuable hours every week/month that can really make a difference, we would gladly accept that.
250  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 06, 2015, 01:04:55 AM
Just added a new linux x86_64 build:
https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/monetaryunit-qt-linux64-pro-020515.tar.bz2

This includes an optimized minerd giving me 400KH/s with 4 threads on an older i7 laptop.. not to shabby ;-)
Impressive !  I want one Smiley

I'm building a new win64 toolchain now. I should have a new 64bit windows wallet with the new miner uploaded later.
Just take my money already! Cheesy
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 10:50:19 PM

Hello MUE community!!!

We are back with the amazing Draw.
please check our blockolotto.com for details
good luck miners!!

thank you for supporting us.
Thanks theboccet, great to have you back Smiley
252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 10:13:44 PM
Just added a new linux x86_64 build:
https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/monetaryunit-qt-linux64-pro-020515.tar.bz2

This includes an optimized minerd giving me 400KH/s with 4 threads on an older i7 laptop.. not to shabby ;-)
Impressive !  I want one Smiley
253  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: AskCoin.Net - Fast Exchange - New released coins added immediately on: February 05, 2015, 03:33:44 PM
Hi, can you please update the MUE wallet.
We had a mandatory wallet update

Source code (for Linux): https://github.com/MonetaryUnit/MUE-Src
Windows wallet .ZIP - https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/monetaryunit-qt-win-pro-020415-1.zip
MAC wallet - https://mega.co.nz/#!jMVXiYCI!Nz1OplP-hyZTZ-1DqmowqfPIETnJ2tKxoUCiWCWwk2g
Linux 32bit wallet - https://mega.co.nz/#!eYdWwbrR!4CJtJMxK33JDdglqimHOwgJT4nWSEkWYbWI5nI9jvDk
Linux 64bit wallet - https://mega.co.nz/#!TF8SkB5I!6Y8lfRwzQDwy8pZA5k4gu4qGG3J8fatLlNe7DRGF2K0

Many thanks
254  Economy / Exchanges / Re: C-CEX.com - Fast and Easy to Use CryptoCurrency EXchange (BTC / USD). 90+ coins on: February 05, 2015, 03:32:15 PM
Hi, can you please update the MUE wallet.
We had a mandatory wallet update

Source code (for Linux): https://github.com/MonetaryUnit/MUE-Src
Windows wallet .ZIP - https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/monetaryunit-qt-win-pro-020415-1.zip
MAC wallet - https://mega.co.nz/#!jMVXiYCI!Nz1OplP-hyZTZ-1DqmowqfPIETnJ2tKxoUCiWCWwk2g
Linux 32bit wallet - https://mega.co.nz/#!eYdWwbrR!4CJtJMxK33JDdglqimHOwgJT4nWSEkWYbWI5nI9jvDk
Linux 64bit wallet - https://mega.co.nz/#!TF8SkB5I!6Y8lfRwzQDwy8pZA5k4gu4qGG3J8fatLlNe7DRGF2K0

Many thanks
255  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 03:04:17 PM
Happy to announce our new Windows wallet


upgradeadvice has stepped up to move things forward with this, and is now our lead collaborator on Github, so a big thank you for that help Smiley

Right, lets get things moving forward with MUE for 2015



Thanks dev!  Smiley

Just installed the new wallet, running great.

Yes indeed, hope this will spark some interest for MUE again.

Keep it up  Wink

Thanks, I hope so too Smiley
256  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 03:02:56 PM


Right, lets get things moving forward with MUE for 2015



Thanks dev!  Smiley

Just installed the new wallet, running great.
Ah cool, no problem.
Did you use the bootstrap file?
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 02:28:17 PM
Miners lottery results are in Smiley
http://www.minerslottery.com/2015/02/draw-9-results/
258  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: www.TheMinersLottery.com - The "Size DOESN'T matter" miners lottery, BTC prizes! on: February 05, 2015, 02:27:27 PM
…and the results are in !

1st place – 0.04BTC AND 30,000MUE
2nd place – 0.02BTC AND 15,000MUE
3rd place – 0.01BTC AND 5,000MUE

1st place – 77AatMPcyZTEKqmtPK2ubkRDmV7sobnRUb - 8.76 MH

2nd place – 7L2tA5oEyKGvYkQb2G1cZNpW2nKTWRTH6f - 16.16 MH

3rd place – 76tRaDqC2ajhNGL64grGhgVjP5L5Kju6wF - 7.67 MH

Contact us to arrange your BTC payment, MUE rewards sent Smiley
http://www.minerslottery.com/2015/02/draw-9-results/
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 12:02:28 PM
Happy to announce our new Windows wallet
https://github.com/MonetaryUnit/MUE-Src/releases

The direct link to the ZIP (13.5mb) is:
https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/monetaryunit-qt-win-pro-020415-1.zip

Please do take advantage of the boot strap file that is also on offer (109mb) :
https://github.com/MonetaryUnit/MUE-Src/releases/download/1.0.0.0-020415/bootstrap.tar.bz2
An overview of how to do this is available at https://litecoin.info/Bootstrap.dat
Please proceed at your own risk (but if you know what you are doing it will save you 4 hours of sync time!)

upgradeadvice has stepped up to move things forward with this, and is now our lead collaborator on Github, so a big thank you for that help Smiley

Right, lets get things moving forward with MUE for 2015
260  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: February 05, 2015, 09:14:59 AM
A big thank you, and a bounty of 0.2BTC + 200,000 MUE are now due to upgradeadvice
for completing the Windows wallet compile.

I can't wait to download and test myself later today, and will make the download link available through all the usual channels.

cinnamon_carter kindly completed a compile to for us, but as it was a dynamic file, it required dlls - but a big thank you none the less, and seems only fair the bounty is also available to you too.
Could I send 100,000 MUE each time with the new wallet ?
well....yes, at least...hopefully Smiley

upgradeadvice (whos help has been invaluable btw) is just tweaking the compile, as during testing with the Windows wallet there were still some transaction issues (though mining etc were fine).

So, once we release the wallet, and the network is predominantly on the 70002 protocol ( https://chainz.cryptoid.info/mue/#!network ) it will be all good. Smiley
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!