Pages:
Author

Topic: [ANN] [NFDv2] - NFD Coin - Thread locked - page 8. (Read 209469 times)

legendary
Activity: 924
Merit: 1000

And could place a purchase order for NFDMMNXT?

You want me to buy it out? I was planning to issue an MMNXT Asset on the HZ Asset Exchange and then do a one-for-one swap. But if you want NFD, I can see to it.
hero member
Activity: 575
Merit: 502
2015-03-03 23:38:11 UTC INFO: In total 15,023 NFD NSC assets transferred to 19 different accounts.

Code:
NFD-2U27-U3XW-NFL9-ABNR3        4968
NFD-CBLT-8TCH-WDWJ-AWWBQ        1901
NFD-2HYQ-N57J-T4JD-9J34Z        1800
NFD-HJGQ-W4PY-YM3P-682XB        1465
NFD-KFKX-DP6F-8E4M-28T9Q        1359
NFD-HUTS-XUPH-93T5-FAAWU        1211
NFD-HRSU-3ENZ-9UMM-4FH3V        634
NFD-T4MX-HYMV-2J6M-AR9KM        425
NFD-EGFA-CFYM-BYKS-76REY        316
NFD-9MWR-P9DU-P2HQ-G3F7B        263
NFD-MXSL-RCHX-JZ5M-6AUZ2        262
NFD-LNE5-PXJK-U99X-5MW4Y        206
NFD-WZ6A-MJRT-F7FU-9X6N8        153
NFD-83UM-MYKZ-JGNC-7PBXM        35
NFD-A9TK-Y7J6-KHZL-CQ43C        14
NFD-G94C-SP3P-3UYA-8WN36        4
NFD-23FD-PJ3N-PC7L-9JW8K        4
NFD-UN3M-ZHVG-JGCN-AK5Z9        2
NFD-GMLN-MW9Z-PBN7-ECVMT        1
hero member
Activity: 575
Merit: 502
So NFD will be disabled now?
Could send the last NSCs please?
And could place a purchase order for NFDMMNXT?

NFD can not be disabled. It is a p2p crypto coin and the source code is open source.
HZ offers a buy out.  Anyone is free to decide whether he/she wants to merge with HZ or not.

The NFD NSC asset will not be transferred to NHZ, but assets will be transferred to any forging NFD account until 5th of July.
I will not remove the current NFD NSC buy wall. You should be able to sell all your NFD NSC assets.

I think NFDMMNXT will be transferred to NHZ, but you have to get in contact with Nxtblg.

I do not like their wallet has a very ugly look, hopefully in a way NFDteam it.

It's not difficult to create a third party HZ GUI or an unofficial HZ release.
The HZ source code is available at https://git.nhzcrypto.org/java-devs/hz-release
NXT 1.2.9 GUI is also available https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23?at=1.2.9

You only need to change genesisIds:
https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23/html/ui/js/nrs.js?at=1.2.9#cl-30
https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23/html/ui/js/nrs.server.js?at=1.2.9#cl-442
https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23/html/ui/js/nrs.server.js?at=1.2.9#cl-455

all epoch dates:
Code:
nrs/recentBlocks.html:215:                return (new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000)).toLocaleString();
nrs/myTransactions.html:179:                            return (new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000)).toLocaleString();
nrs/orphanedBlocks.html:185:                            return (new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000)).toLocaleString();
nrs/unconfirmedTransactions.html:123:                           return (new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000)).toLocaleString();
ui/js/nrs.util.js:595:                  var date = new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000);
ui/js/nrs.util.js:648:          var date = new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0) + timestamp * 1000);
ui/js/nrs.messages.js:432:                      var date = new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0)).getTime();
ui/js/nrs.polls.js:133:                 var date = new Date(Date.UTC(2013, 10, 24, 12, 0, 0, 0)).getTime();
ui/js/nrs.dgs.js:31:                    var currentTime = (new Date() - Date.UTC(2013, 10, 24, 12, 0, 0, 0)) / 1000;
ui/js/nrs.dgs.js:419:           data.deliveryDeadlineTimestamp = String(Math.floor((new Date() - Date.UTC(2013, 10, 24, 12, 0, 0, 0)) / 1000) + (60 * 60 * data.deliveryDeadlineTimestamp));
ui/js/nrs.dgs.js:725:                                                                   var currentTime = (new Date() - Date.UTC(2013, 10, 24, 12, 0, 0, 0)) / 1000;

disable/delete digital good store tabs:
https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23/html/ui/index.html?at=1.2.9#cl-255

rename all NXT to NHZ
Code:
cd html/
grep -r -l 'Nxt' | xargs sed -i  's/Nxt/Nhz/g'
grep -r -l 'NXT' * | xargs sed -i  's/NXT/NHZ/g'
grep -r -l 'nxt' * | xargs sed -i  's/nxt/nhz/g'

Remove NXT website links
https://bitbucket.org/JeanLucPicard/nxt/src/9066d63eb281b766e684fbdea15b80884f5c5e23/html/ui/index.html?at=1.2.9#cl-196

modify or disable news section/tab
change logo
sr. member
Activity: 423
Merit: 250
Encrypted or not doesn't matter.

Not sure about the NFD client version, you can use https://nfdcoin.com/wallet though
legendary
Activity: 3752
Merit: 1864
Not sure why the 9th made it into all the announcements, the script is running already.
Here's how it works:

* get a HZ account
  * download the HZ client at
    https://horizonplatform.io/wallets
  * use the web wallet at https://account.horizonplatform.io
* use https://faucet.horizonplatform.io to fund that account
* send NFD to NFD-YMUS-QDPE-BG5C-9PH3M
  include your HZ account (and nothing else) in the message field
  the rate is 25:1, the transaction fee of 0.1% (at least 1) is substracted from the payout
* wait for a message regarding your deposit (sent every full hour)
* wait until it's your turn
  the funds for the swap will be released in parity with other bounties paid out to the HZ community
  smaller deposits will be processed first, if you want to get some HZ sooner, send a lower amount of NFD


The message shall be "Encrypt Message " ?
sr. member
Activity: 459
Merit: 250
I do not like their wallet has a very ugly look, hopefully in a way NFDteam it.



That's one of the things on the list.  The new client which was forced upon everyone is buggy, bad appearance, bad fonts (I can't read the text on my client so I don't know if someone sent me 1.456 HZ or 1456 HZ), etc.
legendary
Activity: 1181
Merit: 1018

indeed - NFD Logo is coolest logo ever! Gonna miss it!
legendary
Activity: 1697
Merit: 1074
You are invited to join my NHZ pool: http://mountains.no-ip.biz:8810/ Grin
Will have 1M soon.
legendary
Activity: 1697
Merit: 1074
So NFD will be disabled now?
Could send the last NSCs please?
And could place a purchase order for NFDMMNXT?

This is bad news.  I've not had a positive experience with HZ (NHZ) and was looking to move away from HZ to NFD.  Sad

Is anyone picking this up?  NFDv3 anyone?
I do not like their wallet has a very ugly look, hopefully in a way NFDteam it.

sr. member
Activity: 459
Merit: 250
This is bad news.  I've not had a positive experience with HZ (NHZ) and was looking to move away from HZ to NFD.  Sad

Is anyone picking this up?  NFDv3 anyone?
hero member
Activity: 577
Merit: 500
Not sure why the 9th made it into all the announcements, the script is running already.
Here's how it works:

* get a HZ account
  * download the HZ client at
    https://horizonplatform.io/wallets
  * use the web wallet at https://account.horizonplatform.io
* use https://faucet.horizonplatform.io to fund that account
* send NFD to NFD-YMUS-QDPE-BG5C-9PH3M
  include your HZ account (and nothing else) in the message field
  the rate is 25:1, the transaction fee of 0.1% (at least 1) is substracted from the payout
* wait for a message regarding your deposit (sent every full hour)
* wait until it's your turn
  the funds for the swap will be released in parity with other bounties paid out to the HZ community
  smaller deposits will be processed first, if you want to get some HZ sooner, send a lower amount of NFD


Thanks pharesim.

Out of an excess of caution, I thought I should check to make sure there's no need to update the client from NFD 1.2.9 to NFD 1.3.6 before sending to NFD-YMUS-QDPE-BG5C-9PH3M. Is that, in fact, the case. Thanks  Smiley

newbie
Activity: 23
Merit: 0
Lol time no see buddy, we are nearly get into 100 hundreds page, congratulations
sr. member
Activity: 423
Merit: 250
Not sure why the 9th made it into all the announcements, the script is running already.
Here's how it works:

* get a HZ account
  * download the HZ client at
    https://horizonplatform.io/wallets
  * use the web wallet at https://account.horizonplatform.io
* use https://faucet.horizonplatform.io to fund that account
* send NFD to NFD-YMUS-QDPE-BG5C-9PH3M
  include your HZ account (and nothing else) in the message field
  the rate is 25:1, the transaction fee of 0.1% (at least 1) is substracted from the payout
* wait for a message regarding your deposit (sent every full hour)
* wait until it's your turn
  the funds for the swap will be released in parity with other bounties paid out to the HZ community
  smaller deposits will be processed first, if you want to get some HZ sooner, send a lower amount of NFD
full member
Activity: 189
Merit: 100
The future will be Digital
Congratulations to the new team
hero member
Activity: 575
Merit: 502
Horizon/NFD Merger Announcement

After extensive negotiations, the development team of NFD has agreed to merge with HZ.

Why do we think a merge is good for both coins?

HZ is another Nxt clone with a vibrant community and a larger dev team. HZ has a very good crypto currency infrastructure with many public nodes and has a still ongoing good distribution. They also have good relations to the industry and good marketing. Most of this is missing for NFD but we have a good core development team, which HZ is missing. NFD and HZ ‘s teams share the same ideas and the same vision. This all led to the idea to work together on one coin. Together we are stronger, faster, better!

HZ is actively traded on Poloniex and Bittrex. The recent Bter disaster has not affected HZ.

HZ is offering a buy out for NFD coins. This is an option for the NFD community to move with the NFD development team and also benefit from the team merge.

The HZ dev team has already set up an automated script to make exchanging your NFD easy and convenient. As a welcome to us, the HZ team settled on a fair exchange rate of 1 HZ to 25 NFD.

The exchange itself is scheduled to start on March 9th.The HZ team doesn’t want to release a lot of HZ all at once, which would prompt concern about flooding the market. So, the HZ will be sent on the same schedule as its bounty distribution. In a tip of the hat to “Nxt Fair Distribution,” the accounts with the least NFD will be served first if there’s a line-up. If you’re an NFD minnow, you’ll get your HZ quickly. The whole exchange will take place over four to five months after the 9th, so the big whales will likely have to wait until summer. The minnows will get theirs sooner.

In order to make sure that everyone gets the news, the exchange script will operate for 120 days after the March 9th start. So, the last day to send your NFD to the exchangebot will be July 5th of this year. After that, it will cut off the buyout line and distribute HZ to any sent NFD that’s left.  

Further details and instructions on the exchange mechanics are coming soon. The NFD that the HZ team gets for the exchange will be burned.

NFD Assets, including the ones run by Nxtblg, will be recreated on the HZ system. If you hold any Assets, please contact the Issuer or look on the NFD threads for details on how to redeem your NFD Assets for the HZ equivalents. If your Asset is backed by another cryptocurrency, you also have the option of redeeming your Asset for the underlying crypto. Once the HZ versions are set up, they will be run in the same manner as they were when they were NFD Assets. The terms will be the same, except for terms that depend on market ratios: those will be adjusted to replace HZ’s market value for NFD’s. If you have any questions about the specific mechanics of an Asset transfer, please contact your Issuer.


please see also HZ announcement: https://horizonplatform.io/horizon-acquires-nfd/
legendary
Activity: 1181
Merit: 1018

quite some development! Congratulations!
legendary
Activity: 942
Merit: 1026
Do _not_ sell you NFD now. Really. Don't!
you're right.
we have to hold our nfd.
Big things coming. Cool
https://horizonplatform.io/horizon-acquires-nfd/
sr. member
Activity: 423
Merit: 250
Do _not_ sell your NFD now. Really. Don't!
legendary
Activity: 1181
Merit: 1018
Where can i buy some NFD ? Any sellers?

try asking on the nxtforum - many Nxters also have some NFD


nxtforum.org
hero member
Activity: 561
Merit: 500
Where can i buy some NFD ? Any sellers?
Pages:
Jump to: