Bitcoin Forum
April 25, 2024, 03:08:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 [475] 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 ... 2557 »
  Print  
Author Topic: NXT :: descendant of Bitcoin - Updated Information  (Read 2761527 times)
Framewood
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
December 27, 2013, 07:20:06 PM
 #9481


This morning when I looked it was not their, the address I sent to was wrong and now it is sitting in some random account I cannot get to 13643712185318669838.


Complete NIGHTMARE... will have my fingers crossed the devs are able to help you.   Sad

Yeah, I nearly blacked out Smiley  I't one of those curve balls life likes to throw at you when you are on a high just to bring you back to earth.
1714057690
Hero Member
*
Offline Offline

Posts: 1714057690

View Profile Personal Message (Offline)

Ignore
1714057690
Reply with quote  #2

1714057690
Report to moderator
1714057690
Hero Member
*
Offline Offline

Posts: 1714057690

View Profile Personal Message (Offline)

Ignore
1714057690
Reply with quote  #2

1714057690
Report to moderator
The block chain is the main innovation of Bitcoin. It is the first distributed timestamping system.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714057690
Hero Member
*
Offline Offline

Posts: 1714057690

View Profile Personal Message (Offline)

Ignore
1714057690
Reply with quote  #2

1714057690
Report to moderator
1714057690
Hero Member
*
Offline Offline

Posts: 1714057690

View Profile Personal Message (Offline)

Ignore
1714057690
Reply with quote  #2

1714057690
Report to moderator
1714057690
Hero Member
*
Offline Offline

Posts: 1714057690

View Profile Personal Message (Offline)

Ignore
1714057690
Reply with quote  #2

1714057690
Report to moderator
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
December 27, 2013, 07:20:37 PM
 #9482

But how does this help with the problem when the address copied to the clipboard gets changed by a hacker and you end up sending to the wrong place?

Users should be able to setup a whole wallet to be "reversible" by default. Or always use escrow as default...

I recall BCNext was looking for developers for Java smart-cards. I think we'll get hardware wallets soon.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
December 27, 2013, 07:22:08 PM
 #9483

3) Mixing Service

So many ppl ask for Mixing... kLee, we really need ur help.
Kmonk
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
December 27, 2013, 07:22:25 PM
 #9484

Been running 0.4.7e with updated easyCopyString from early this morning with no prob, just updated again from post #9742 with:

162.243.214.68; 95.85.46.164; 162.243.216.55; 162.243.143.15; 95.85.46.249; 93.190.92.74; 37.209.120.192; 93.190.92.75; 85.25.134.59; 93.190.92.76; vps1.nxtcrypto.org;  vps2.nxtcrypto.org;  vps3.nxtcrypto.org;  vps4.nxtcrypto.org;  vps5.nxtcrypto.org; nxtwallet.com; 31.220.50.208; nxt.ddos.me; 203.174.12.25; 88.198.142.92; 66.197.138.90; 64.120.180.106; 109.230.224.65; 80.86.92.50; node1.nextcoin.it; node2.nextcoin.it; node3.nextcoin.it; node4.nextcoin.it; node5.nextcoin.it; nxt.homer.ru; 31.204.130.123; 209.222.0.194; 209.222.16.10; node1.nxtbase.com; node11.nxtbase.com; node21.nxtbase.com; node31.nxtbase.com; node41.nxtbase.com; node51.nxtbase.com; node61.nxtbase.com; node71.nxtbase.com; node81.nxtbase.com; node91.nxtbase.com; 85.214.222.82;

Now NRS wont connect, restarted everything but still wont connect!

Extracted original 0.4.7e to new folder without updating web.xml and ran start.jar, now I'm connecting OK but showing "Recent blocks [1568]" ?
abuelau
Hero Member
*****
Offline Offline

Activity: 750
Merit: 500


www.coinschedule.com


View Profile
December 27, 2013, 07:22:54 PM
 #9485

But how does this help with the problem when the address copied to the clipboard gets changed by a hacker and you end up sending to the wrong place?

Users should be able to setup a whole wallet to be "reversible" by default. Or always use escrow as default...

I recall BCNext was looking for developers for Java smart-cards. I think we'll get hardware wallets soon.

That's even better!  Smiley

Know what's happening in cryptoworld: www.coinschedule.com
Jean-Luc
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile WWW
December 27, 2013, 07:23:42 PM
 #9486

Account Balances page

I wanted to share a small piece of html/javascript that I wrote today to be able to keep track of multiple account balances at once. Save this under webapps/root/accountBalances.html :

Code:
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8"/>
    <title>Nxt Account Balances</title>
    <style type="text/css">
        table {border-collapse: collapse;}
        td {padding: 5px;}
        .result {white-space: pre; font-family: monospace;}
    </style>
    <script type="text/javascript">
        function getAccountBalances(form) {
            var accounts = form.elements["accounts"].value.split('\n');
            var balance = 0;
            var result = '<table><tr><th>account</th><th>balance</th></tr>';
            for (i = 0; i < accounts.length; i++) {
                account = accounts[i].trim();
                if (account != '') {
                    var accountBalance = getBalance(accounts[i]) / 100;
                    result += '<tr><td>';
                    result += account;
                    result += ':</td><td>';
                    result += formatAmount(accountBalance);
                    result += '</td></tr>';
                    balance += accountBalance;
                }
            }
            result += '<tr><td>total:</td><td>';
            result += formatAmount(balance);
            result += '</td></tr></table>';
            form.getElementsByClassName("result")[0].innerHTML = result;
            return false;
        }
        function getBalance(account) {
            var request = new XMLHttpRequest();
            request.open("GET", '/nxt?requestType=getBalance&account=' + account, false);
            request.send();
            return JSON.parse(request.responseText).balance;
        }
        function formatAmount(amount) {
            var digits=[], formattedAmount = "", i;
            do {
                digits[digits.length] = amount % 10;
                amount = Math.floor(amount / 10);
            } while (amount > 0);
            for (i = 0; i < digits.length; i++) {
                if (i > 0 && i % 3 == 0) {
                    formattedAmount = "'" + formattedAmount;
                }
                formattedAmount = digits[i] + formattedAmount;
            }
            return formattedAmount;
        }
    </script>
</head>
<body>
<b>Get Account Balances:</b><br/>
<form action="/nxt" method="GET" onsubmit="return getAccountBalances(this);">
    <table>
        <tr>
            <td>Accounts:</td>
            <td><textarea name="accounts" style="width: 100%; height: auto;" rows="6"></textarea></td>
        </tr>
        <tr>
            <td colspan="2"><input type="submit" value="submit"/></td>
        </tr>
    </table>
    <div class="result"></div>
</form>
</body>
</html>
Then go to https://localhost:7875/accountBalances.html . Enter your account numbers, one per line, and click submit. If you created several accounts in order to purchase aliases, hallmark servers, mine, etc, I find it useful to be able to check all your balances on one page.

lead Nxt developer, gpg key id: 0x811D6940E1E4240C
Nxt blockchain platform | Ardor blockchain platform | Ignis ICO
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
December 27, 2013, 07:24:01 PM
 #9487

Yeah, I nearly blacked out Smiley  I't one of those curve balls life likes to throw at you when you are on a high just to bring you back to earth.

Where did u get that NRS version from? U should show it to a Java developer, binaries can be easily decompiled and HTML-files r very easy to read. Maybe some kind of trojan?
grimrog
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
December 27, 2013, 07:24:49 PM
 #9488

hi all,

just a quick question:

i bought my first 80 nxt yesterday at noon(36 hours ago) from the exchange and transferred them to my id. I even payed the feed to have it transferred within 3-12 hours. But until now nothing has changed in my balance, it still says 0.00.

The next thing is: how do i update this client, i figured i ran 0.4.0 until a hour ago. i downloaded the 0.4.7e zip and pasted the files into my next-client-folder. Nothing changed and the title of my client still says 0.4.0. Do i need to restart my pc or something?

kind regards,

grim
wakasaki808
Sr. Member
****
Offline Offline

Activity: 476
Merit: 500



View Profile
December 27, 2013, 07:25:19 PM
 #9489

Does NXT have some way to lock people out of an account if they aren't on the correct IP? Or like a verification process with key's to log into an account, like Google does with their gmail.

Or like a way to add an authenticator (think Authy, Google Authenticator, etc.) in the current client where can set up in settings the need for one to prevent people from hacking the account?

Been here since the beginning'ish but haven't kept up with all the new features in updates...although I have been updating  Tongue
Framewood
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
December 27, 2013, 07:26:10 PM
 #9490

that could be a good idea to prevent people losing nxt.
like the sender can put in a timelimit for the buyer to accept and if he doens't the transaction is not executed.

Kinda like in any online game that requires a group. You have to get verification for groups and such, Someone sends an invite -> other person accepts the invite. If the other person doesn't accept then the invite is cancelled.

Would definitely help with accounts of no owners. Add that to the two step verification. Click to "Send" -> (Gives you a review your order page) Click "Confirm to Send". So at least they can get verification of who/how much being sent to whom.

This morning when I looked it was not their, the address I sent to was wrong and now it is sitting in some random account I cannot get to 13643712185318669838.

I still don't understand how/when the hacker was able to input a different receiving account.   Huh

This is trivial if u know the passphrase.


I thought the owner said he sent a transaction to a certain account, but the NXT went to a different one.

...sorry if this is smacking me in the face and I still don't see it...

Yes correct. I was sending it to my second account, had the right account number etc. and it went to this random account.
wakasaki808
Sr. Member
****
Offline Offline

Activity: 476
Merit: 500



View Profile
December 27, 2013, 07:30:24 PM
 #9491

Hello everybody,

I am new to NXT. I have been on the Quark bandwagon but decided to convert all my Quarks to NXTs since I saw amazing growth and potential of this community.

I couldn't really read all the 400+ pages of this forum.
Can please somebody tell me, is DGEX the only place to buy NXTs at? I have been trying to log in all day and to buy NXTs but with no success. What is going on with this exchange?

I have also tried to setup my wallet, but here I got confused because it is completely different than other altcoin wallets?
Is this my address, in the left upper corner? 3280310991161501989. And as I understood, the passphrase is very, very important, right?
What happens if I loose it?

If somebody is willing to forward me couple of NXTs just to set up my wallet until I don' figure out how to buy some on DGEX.
Thanks a lot guys and keep up a good work.

being moved to a new server or something (in regards to DGEX).

Your Address you send to is indeed 3280310991161501989 your passphrase(password) is the most important thing. If you live in the US its like your SS number, your Credit Card Information, etc. Lose it and you lose everything in your wallet. Just like any encrypted altcoin wallet. If your passphrase is easy enough to bruteforce it, create a new account and think of the longest passphrase you can think of, include numbers, capital letters, symbols, everything.

morningtime
Full Member
***
Offline Offline

Activity: 160
Merit: 100


View Profile
December 27, 2013, 07:31:15 PM
 #9492

Hello everybody,

I am new to NXT. I have been on the Quark bandwagon but decided to convert all my Quarks to NXTs since I saw amazing growth and potential of this community.

I couldn't really read all the 400+ pages of this forum.
Can please somebody tell me, is DGEX the only place to buy NXTs at? I have been trying to log in all day and to buy NXTs but with no success. What is going on with this exchange?

I have also tried to setup my wallet, but here I got confused because it is completely different than other altcoin wallets?
Is this my address, in the left upper corner? 3280310991161501989. And as I understood, the passphrase is very, very important, right?
What happens if I loose it?

If somebody is willing to forward me couple of NXTs just to set up my wallet until I don' figure out how to buy some on DGEX.
Thanks a lot guys and keep up a good work.

Welcome, I sent you some. Peercover also trades NXT via Ripple. Bit of a hassle, but seems to work: https://peercover.com/#/simpleGateway
Don't lose your PW.
greyw00lf
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
December 27, 2013, 07:38:40 PM
 #9493

Maybe you could use this kind of password generators, but generate 3-5 passwords and mix them together in a random way and/or change some characters... that would be more secure. You never know if the website host does not save all generated passwords in a database for some kind of bruteforce dictionary attack later.
FIFY

Bruteforce is trying all possible combinations.
Dictionary attack is using a database of common passwords.
correct Smiley thank you

morningtime
Full Member
***
Offline Offline

Activity: 160
Merit: 100


View Profile
December 27, 2013, 07:40:42 PM
 #9494

Feature suggestion for Nxt:

  • Destroy 0.00000001 NXT for every transaction.

This makes NXT a deflationary currency. Ripple does this to protect the network against flooding. In case a flood of transactions is noticed, the self-destruct value increase to, for example, 0.01. This basically makes it very expensive to flood the network.

I think NXT needs this too.

yuriygeorge
Sr. Member
****
Offline Offline

Activity: 262
Merit: 250


I hate my family


View Profile
December 27, 2013, 07:41:15 PM
 #9495

Just a friendly reminder for those that are just looking to buy NxT coins. I recommend waiting for the price to stabilize! See for yourself:

1,000,000,000 (1 billion) initial coins
73 initial adopters
so roughly 13.7 Million each (assume equal distribution)
at 21 BTC Total
0.000000021 BTC per coin

current market rate is about 0.0001 (4700x)

To those who are buying these coins now... most of the coins are being hoarded, so you can only buy them on the market for 4700x or 470,000% of what all of the 1 billion coins were paid for at genesis. And people are buying, sadly, without looking at these figures. Remember - all BILLION coins are already out in circulation, and no more will be generated. All BILLION coins were bought originally for 21 BTC in total, or about $4,000 worth.

To give you an idea, someone is selling 1.8M coins (.18% of all coins circulated, that were bought for 21 BTC) for 180 BTC. If this is an early adopter (may not be), then he would have bought the same 1.8M coins for less than .04 BTC, but now is asking 180 BTC in just 1-2 months. Also, BTC is worth 6-7 more now in USD than at genesis.

I LIKE this coin, and its potential, but I don't like the price it's at, and the greed that the price is showing. So PLEASE, stop and check the math out yourself, and ask what this coin is worth.

I recommend new NxTers to stop buying these coins so high, and bringing the price even higher. Wait for some original investors to sell and distribute, and buy them at the dip. Thank you.

NXT: 6933627427271736687

             ▄▄▄▄██████████▄▄▄▄
         ▄▄██▀▀▀               ▀▀▄▄
      ▄▄█▀                         ▀▀▄
    ▄█▀                        ▄▄▀▀▀▀▀█
  ▄██                     ▄▄█▀▀     ▄▀
 ██▀                 ▄▄██████▄    ▄▀
███               ▄▄██████████▄  ▀
██             ▄▄█████████████▀
██          ▄▄█████████████▀
██        ▄ ▀██████████████
██▄    ▄██▀▀  ▀▀████████▀
 ██   ██▀        ▀▀████▀
  ██ █▀
   ▀█
  █▄ ▀▄
 ▄▀    ▀▄
 
SatoshiGames.io
██████

█████

████

████

█████

██████
               ▄▀▀▀▀▀▄▄▄▄
           ▄▄▄▄█  ▄█     ▀▀▀▀▄▄▄▄
▄▄▀▀▀▀▀▀▀▀▀   █  ▀ █            ▀▀▀▀▄
█  █▄        ▄▀                    ▄▀
▀▄ █ ▀       █         ▄           █
 █          █        ▄██▄         ▄▀
 █         ▄▀     ▄██████▄       ▄▀
 ▀▄        █    ▄█████████▄      █
  █       █      ██████████▄    ▄▀
  █      ▄▀        ▀████████   ▄▀
  ▀▄     █        ▄████▀▀▀▀    █
   █    █          ▀▀▀█       ▄▀
   █   ▄▀                    ▄▀
   ▀▄  █                     █
    █  ▀▄▄              █ ▄ ▄▀
    █     ▀▀▀▀▄▄▄       █▀ ▄▀
    ▀▄▄▄▄▄▄▄▄▀▀▀▀▀▀▀▀▀▀▄▄▄▄█


▄▄▄▄██████▄▄█▄▄██████▄▄▄▄
███████████████████████████████
▄▀▄           █           ▄▀▄
█   █         ▄█▄         █   █
█     █        ███        █     █
█       █       ███       █       █
█         █     █████     █         █
█           █    █████    █           █
█             █   █████   █             █
█▄▄▄▄▄▄▄▄▄▄▄▄▄█   █████   █▄▄▄▄▄▄▄▄▄▄▄▄▄█
▀███████████▀    █████    ▀███████████▀
▀▀▀▀▀▀▀▀▀       ███       ▀▀▀▀▀▀▀▀▀

▄███▄
▄▄▄█████████████▄▄▄
BTC
██████

█████

████

████

█████

██████
laowai80
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 27, 2013, 07:43:59 PM
 #9496

Hello yuriygeorge,

it's been boring without you Smiley
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
December 27, 2013, 07:46:07 PM
 #9497

Feature suggestion for Nxt:

  • Destroy 0.00000001 NXT for every transaction.

This makes NXT a deflationary currency. Ripple does this to protect the network against flooding. In case a flood of transactions is noticed, the self-destruct value increase to, for example, 0.01. This basically makes it very expensive to flood the network.

I think NXT needs this too.

How do u destroy a non-confirmed transaction coins?
wakasaki808
Sr. Member
****
Offline Offline

Activity: 476
Merit: 500



View Profile
December 27, 2013, 07:47:11 PM
 #9498

Feature suggestion for Nxt:

  • Destroy 0.00000001 NXT for every transaction.

This makes NXT a deflationary currency. Ripple does this to protect the network against flooding. In case a flood of transactions is noticed, the self-destruct value increase to, for example, 0.01. This basically makes it very expensive to flood the network.

I think NXT needs this too.



don't believe NXT has such a low value, at least not yet. So far it looks like .01 NXT will be the lowest value until the demand increases where it may end up being .0001 NXT. Don't think we will see .00000001 NXT though.
canuck
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
December 27, 2013, 07:50:05 PM
 #9499

Reversible transactions might be a good idea if it can be made into a short term contract agreed to by both parties.

So for instance, I order something online and the seller offers terms of reversal for a 2% premium.  I pay the 2% premium to be able to demand that the transaction be reversed within 2 days if no tracking numbers is forwarded to me or whatever else.  I dunno...short term terms of reverse might be a workable idea if users can define the terms for each transaction.
PeercoinEnthusiast
Full Member
***
Offline Offline

Activity: 126
Merit: 100

JustabitofTime - Co-Founder of CoinTropolis


View Profile
December 27, 2013, 07:50:25 PM
 #9500

So PLEASE, stop and check the math out yourself, and ask what this coin is worth.


A coin is worth what the market is willing to pay, not a penny more, not a penny less.

NXT....

JustaBitofTime - Co-Founder of CoinTropolis - Currently assisting Nxt
Pages: « 1 ... 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 [475] 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 ... 2557 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!