Bitcoin Forum
May 25, 2024, 07:34:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 284 »
1121  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 05, 2017, 01:08:42 PM
Pump on Bittrex blocked!  Wink
So why is a pump bad?
Pump is not bad but dump is. Most times after a pump there will be a dump. I like stable raise more
1122  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 05, 2017, 12:26:26 PM
Pump on Bittrex blocked!  Wink
Looks like Magi reached a market cap of $1,000,000 today for a few seconds - lets see if we will reach it again =)
Thats nice. Next second we need a screenshot! Smiley
Nice mean Awesome!!! Grin
1123  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 05, 2017, 12:08:41 PM
Pump on Bittrex blocked!  Wink
1124  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 05, 2017, 07:55:54 AM
m-wallet version 1.3.1 released

Qt-Wallet and Daemon:

http://coinmagi.org/bin/m-wallet-1.3.1/
Source code: https://github.com/magi-project/magi/

Windows Installer (x32/x64): http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-win-setup.exe
Windows (x32): http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-win32.zip
Windows (x64): http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-win64.zip

Linux: http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-linux.tar.gz
Mac OS X: http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-osx.dmg
FreeBSD: http://coinmagi.org/bin/m-wallet-1.3.1/m-wallet-1.3.1-freebsd.tar.gz

Block chain: http://coinmagi.org/bin/block-chain/
Release notes: http://coinmagi.org/bin/release-notes.md

Multiple Platforms:

* Starting from v1.3.1, we provide official support of building packages for FreeBSD; both Qt wallet and daemon are available. Supports to other platforms may also occur in future release;
* Struggled with a working Qt wallet for Windows XP (daemon works); this effort is yet to be done. Since Windows XP is no longer supported by Microsoft, I'm considering to drop off the compilation; please let me if one does need a Qt wallet for Windows XP.

Changelog:

v1.3.1
=============
This is a major release designed to improve the overall performance of the wallet. Upgrading to this version is strongly recommended. All parties upgrading from versions prior to v1.3.0 should resynchronize the complete block chain from the beginning.

A copy of block chain available: http://coinmagi.org/bin/block-chain/

- Support of building Qt wallet and daemon on FreeBSD;
- Added "Mint" menu on the Qt wallet;
- Added "About" menu on the Qt wallet;
- Fixed price update for all of OS including Windows;
- Corrected the total amount on the transaction page;
- Overall improvement of the Qt wallet appearance;
- Removed pre-release message from the status bar;
- Redesigned the icon set; new logo available here: http://coinmagi.org/files/logo/v1; previous version: http://coinmagi.org/files/logo/v2;

(January 29, 2017)

This release also contains the prior changes associated with v1.3.0rc1 which wasn't made publicly.

v1.3.0rc1
=============
- Changed database for storing transaction and block indices from Berkeley DB to LevelDB;
- Enabled block hash storing in storage and loaded directly from disk;
- Fixed "Checkpoint is too old" warning;
- PoS stake splitting and combining features, which can be set by stakesplitthreshold=VALUE and stakecombinethreshold VALUE in magi.conf, or by RPC commands: setstakesplitthreshold and setstakecombinethreshold; RPC commands getstakesplitthreshold and getstakecombinethreshold to show their current values;
- Added price information on Qt overviewpage;
- Qt wallet logo change and GUI improvements;
- Merge pull request of adding total balance in "Transactions" page by lightsplasher;
- Merge pull request of version check updates by feldenthorne; fixed automatic version check including test/rc versions.

(June 22, 2016)

Notes:

* Since v1.3.1 migrates to leveldb for block index storing, for upgrading from a version before v1.3 should reset the local block-chain;
* For users on Windows, we provide a convenient way to use an installer for upgrading wallet and migrating to the latest block chain; this is strongly recommended;
* Additional note to the stake splitting & combing for information; https://github.com/magi-project/magi/blob/1.3.0rc/src/wallet.cpp#L1595

Code:
                // The original design prevents stakes having the same parent transaction from combining
                // which somehow reads as encouraging splitting (improve security);
                // This mechanism is to be disabled in Magi since combining won't cause security concern

                /* Splitting is only enforced at wallet, not by PoS protocol as well as consensus over network.
                 * Original PPCoin design encourages splitting as per "Lower coinstake combine threshold to
                 * improve security", which can be understood by the fact that in general PoS, with a large
                 * number of coins in stake comes greater chance of (PoS) mining blocks. This is not going to
                 * happen in Magi. Also, hardening nStakeCombineThreshold is impractical since an advanced user
                 * can easilly make a change to that and rebuild a wallet. The change to nStakeCombineThreshold
                 * should be available externally, e.g., RPC command, magi.conf configuration file.
                 ** Magi, for optimum staking, nStakeCombineThreshold should be used in combination with nStakeSplitThreshold.*/
nStakeCombineThreshold along with nStakeSplitThreshold should be utilized for best results. The optimum threshold is neither a random number nor as large as possible; it's in accordance with the magi's PoS (mPoS) protocol.  

Upgrading procedure:

- In general:
1) Backup wallet.dat;
2) Delete everything under the Magi or .magi folder except wallet.dat;
3) Download block chain from here http://coinmagi.org/bin/block-chain/ and unzip the file;
4) Put all of the contents under the folder m-blockchain into Magi or .magi;
5) Launch the new wallet.

- Windows:  
1) Backup wallet.dat;
2) Launch the installer;
3) Choose the option you want to migrate the block-chain; the installer will always move the original Magi folder to something like Magi-BACKUP-*;
4) Follow on-screen prompts to install.

(One can also use the installer to update/switch block-chain data. We will update the block-chain from time to time)

If you run into issues with the binaries / installer, let me know ASAP. I'll try to solve the issues in a timely manner.

Finally, please help to spread the words. We need have all of the services, mining pools and exchanges to switch to v1.3.1. Also, I recommend updating logo to v2 (http://coinmagi.org/files/logo/v2).



For people looking for this one Wink
1125  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 05, 2017, 07:18:33 AM
We are now at 971 likes  Grin , so go to https://www.facebook.com/CoinMagi/ place your walletadress at the 1000 like post and maby you are the 1000 xmg winner  Wink .


973 likes only 27 needed!! Smiley
1126  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 05, 2017, 07:15:13 AM
Nice buy on Bittrex

06/05/2017 09:14:07 AM   
BUY
0.00004500   5541.79116647   0.24938060
06/05/2017 09:13:45 AM   
BUY
0.00004500   1108.33333333   0.04987500
06/05/2017 09:12:55 AM   
BUY
0.00004500   13271.38083833   0.59721214

 Smiley

Will Magi (XMG) achieve the $1.000.000,- marketcap???
1127  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 04, 2017, 09:34:58 PM
Hey guys, like I said in previous post I lost track of crypto and Magi.
Can you pls tell me if the sweetspot is still going on? (is it updating to current block situation)
What is the latest wallet version? (I downloaded v1.3.1.0 version and syncing...it gon take forever but hey... Wink

Hi z0n0,
Check this:
https://bitcointalk.org/index.php?topic=735170.msg15314290#msg15314290
Update procedure:
1) Backup wallet.dat to a safe place;
2) Delete everything under the Magi or .magi folder except wallet.dat;
3) Download block chain from here http://coinmagi.org/bin/block-chain/ and unzip the fille;
4) Unzip all of the stuffs under the folder m-blockchain into Magi or .magi;
5) Start up the new wallet

I think when you do step 3 it wont take forever to sync.

Welcome back z0n0. No worries you are always welcome in our friendly Magi community.
1128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 04, 2017, 10:58:29 AM
Magi is doing very well today - the price is now $0.11 =) Market cap is up to $900k
Wow be awesome if Magi could pass the marketcap of $1000.000,-
That would be a new record!
1129  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 04, 2017, 07:09:27 AM
Just as reminder: you can buy/sell Magi (XMG) on Bittrex (verified market) Cryptopia and Novaexchange.
Magi is also looking for more exchanges.

On the roadmap you can see that our awesome developer & team are working on different improvements and developments. Keep your eyes on @coin_magi_xmg on Twitter, here or on other forums like Bitcoingarden.

1130  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 03, 2017, 06:50:31 AM
U guys have slack.
I've searched and found the following link setup by lionheart78 

https://coinmagi.slack.com/

Not sure how to join - is it invite only?



not only invite and you will have to  fully participate in this game and for joining you can consult DEV.  Undecided
I will try to change that. Still i'am not very good with Slack.
Need to find out how things work there.  Smiley
1131  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 02, 2017, 10:27:14 PM
Big drop for btc???

Its just you, i see only a small drop,
Grin
Always love your pictures Goldlabel!
1132  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 02, 2017, 12:23:11 PM
I have been mining XMG with only 150 khash rig on a pool . Is it better to mine solo or on a pool?
I don't really know whats better. I would use a pool for mining. But thats a personal choice.
1133  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 02, 2017, 11:45:34 AM
http://www.cnbc.com/2017/06/01/bitcoin-may-hit-4000-by-the-end-of-the-year-analyst.html

Whatever is good for BTC it will also be good for XMG  Wink
1134  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: June 01, 2017, 07:50:49 PM
Hmm was there an update in the last month for xmg; that could potentially cause a fork?

Reason I'm asking is because posw just got xmg back online; after a little over a month so I withdrew for obvious reasons.  Got met with this tx
https://poswallet.com/blockChain/xmg/844e16365cc2f838ad73709d04a28174ca8813648d6c43517d7b6f3c2061e19e/


This is my wallet on posw saying unsent:
https://chainz.cryptoid.info/xmg/address.dws?9PYMGXGGJrZjoMqzdY6u7uu6R8P52GEqqd.htm
It could be because they needed to update the new wallet.
But its good to know thats back online on: https://poswallet.com/blockChain/ac/

Thanks for the info Mrbates
Somebody working with the poswallet? Works good?
1135  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 30, 2017, 07:31:23 PM
Some updates:

Looks Awesome Joe. I like the relaunch of the Magi Standalone Payment Gateway a lot!!
Good stuff.

Thanks for the update - new code base sounds exciting - will that involve a new version of qt? there are a lot of cool new wallet features in newer versions of qt =)
What features are nice in newer versions of qt?
1136  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 30, 2017, 05:24:54 AM
Some updates:

Looks Awesome Joe. I like the relaunch of the Magi Standalone Payment Gateway a lot!!
Good stuff.
1137  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 29, 2017, 11:21:35 AM
Hmm was there an update in the last month for xmg; that could potentially cause a fork?

Reason I'm asking is because posw just got xmg back online; after a little over a month so I withdrew for obvious reasons.  Got met with this tx
https://poswallet.com/blockChain/xmg/844e16365cc2f838ad73709d04a28174ca8813648d6c43517d7b6f3c2061e19e/


This is my wallet on posw saying unsent:
https://chainz.cryptoid.info/xmg/address.dws?9PYMGXGGJrZjoMqzdY6u7uu6R8P52GEqqd.htm
It could be because they needed to update the new wallet.
But its good to know thats back online on: https://poswallet.com/blockChain/ac/

Thanks for the info Mrbates
1138  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 28, 2017, 09:39:59 PM
Easy Sunday for Magi.  Smiley
1139  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 27, 2017, 05:36:34 PM
Big drop for btc???

Its just you, i see only a small drop,
Grin
Haha nice one Goldlabel Grin
1140  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 27, 2017, 09:29:42 AM
Big drop for btc???
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 284 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!