Bitcoin Forum
June 22, 2024, 05:08:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Local / Трейдеры / Re: Конкурс: Угадай курс выиграй 1BTC или 1000$! on: December 19, 2016, 01:35:46 PM
847
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] [KTK] Krypt Koin | 100% PoS | 100% FREE | 500 STAKES on: May 21, 2014, 09:16:54 PM
Wallet does not start in Windows XP 32bit. On Win7 64 is OK.
Registered.
3  Economy / Reputation / Re: Thomza trust thread on: February 28, 2014, 03:56:09 PM
I rented the rig for 48 hours. Rig was not available about 4 hour, the owner extended the rent time for 5 hours.
Good service. Thanks.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: January 23, 2014, 02:28:02 AM
is there a byte limit for an alias?

Alias - (0, 100]
URI - [0, 1000]

NRS
Code:
if(aliasValue.length() != 0 && aliasValue.length() <= 100) {
   alias = aliasValue.toLowerCase();

   for(i = 0; i < alias.length() && "0123456789abcdefghijklmnopqrstuvwxyz".indexOf(alias.charAt(i)) >= 0; ++i) {;}

   if(i != alias.length()) {
      responses.put("errorCode", Integer.valueOf(4));
      responses.put("errorDescription", "Incorrect \"alias\" (must contain only digits and latin letters)");
   } else {
      uri = uri.trim();
      if(uri.length() > 1000) {
         responses.put("errorCode", Integer.valueOf(4));
         responses.put("errorDescription", "Incorrect \"uri\" (length must be not longer than 1000 characters)");
      } else {
...
} else {
   responses.put("errorCode", Integer.valueOf(4));
   responses.put("errorDescription", "Incorrect \"alias\" (length must be in [1..100] range)");
}
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: January 22, 2014, 05:41:49 PM
1. I could add asset filter.
2. Total number of tokens.
3. U can't, u r supposed to emulate matching algo and reconstructs trades according to order placement. I can add extra API calls if necessary.
Strange as for me. Maybe I do not understand how it should work and what does it. I figured it was something like an auction.
Ok, I'll look for a more detailed description.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: January 22, 2014, 05:17:03 PM
Come-from-Beyond

1. How i can get all orders for specific asset in the one query?
I get all orders and do filter it by assetId now.
Is there a better way?

2. What is quantity in issue asset request (174 in first row upper table)?

3. I bought a few items. How can I see what I bought and for how much?



7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: January 22, 2014, 01:43:10 PM
How i can get all orders for specific asset in the one query?

I can use:
Code:
getAskOrderIds
do filter ids and run
Code:
getAskOrder&order=
but it is very complicated way.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: NXT :: descendant of Bitcoin - Updated Information on: January 20, 2014, 03:59:23 AM
Torrent files are around 9kb.
I mitigated the limit by...

It is the wrong way to store .torrent to the blockchain using aliases or AM.
I have some .torrent files with size 500KB-1MB. Do you should use one thousand messages for one file?
The better way in current stage is using the Magnet-URI.
9  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt source code flaw reports on: January 16, 2014, 04:19:16 AM
Whether there is any sense in the generation of an empty (without transactions) block?
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 15, 2014, 12:02:52 PM
I counted the number of transactions (83556) and did a little more.
Number of accounts is 14600.

Full version: charts for transactions, amounts, fees, aliases, accounts.
Some charts has logarithmic x scale.

All charts:
http://imgur.com/Uajg1U4

Transactions only:



11  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt source code flaw reports on: January 15, 2014, 03:44:36 AM
Come-from-Beyond

I have questions about the code sometimes. Which topic is better suited to these questions?

Why the "getBaseTarget" is recalculated each time for the same (last) block?  For simplicity?

How can I determine that I am in the wrong chain?

Why peers that send a lot of wrong transactions are not stored in the blacklist automatically?
I can send many not verified transactions to each peer and every time they process their (through POST and GET for public which brodcast them to some other peers).

12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 14, 2014, 06:54:25 AM
Can anyone explain this in more detail? Or maybe it has already been discussed somewhere.

Was discussed several times, think starting point was here https://bitcointalk.org/index.php?topic=366105.0
or maybe here https://nextcoin.org/index.php/topic,471.0.html (but this ends with a link to the above link)
Thanks! I found this place:

Each time a node sees a transaction it checks if it's the first time a public key used.
If yes, then soft remembers this key, so next user with the same account id will get all transactions rejected.

Code:
//Transaction.verify()
else if (account.publicKey == null) {
account.publicKey = senderPublicKey;
} else if (!Arrays.equals(senderPublicKey, account.publicKey)) {

13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 14, 2014, 03:13:24 AM
64-bit encryption is only used for accounts that have no public key and haven't done any transactions. It is recommended to make public key and do at least one transaction. Send someone some NXT, buy an alias, basically I think any proactive usage of the account gives 256 bit protection
Can anyone explain this in more detail? Or maybe it has already been discussed somewhere.
How the presence of a transaction affect the strength of encription? And encription for what?
Account ID is hash of public key which is function of private key (secret phrase).

Code:
Curve25519.keygen(publicKey, null, MessageDigest.getInstance("SHA-256").digest(secretPhrase.getBytes("UTF-8")));
//publicKey - output
byte[] publicKeyHash = MessageDigest.getInstance("SHA-256").digest(publicKey);
BigInteger bigInteger = new BigInteger(1, new byte[]{publicKeyHash[7], publicKeyHash[6], publicKeyHash[5],
                                          publicKeyHash[4], publicKeyHash[3], publicKeyHash[2], publicKeyHash[1], publicKeyHash[0]});
//bigInteger - is account id

If you don't have Transaction you don't have stored Account ID in NRS "database".
But how does it affect the existence of the account (as pair the private key-public id)?
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 13, 2014, 06:19:49 PM
Come-from-Beyond
I understand correctly that the public key can not be used to encrypt messages, and private - to decrypt?
And i must use another channel for deliver key(s) for message encryption/decryption?



First (?) client with arbitrary messaging support. Just for test.
QR code generating & scanning for alias, account, payment request included.

15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Nxt Bounty for working JavaScript code that signs and verifies signatures on: January 08, 2014, 10:17:01 AM
Jaguar0625
I ran js.core & java.core for a same hash key - the result is different.
You can use java ScriptEngine for mix java & javascript code for testing.

16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 05, 2014, 11:30:39 PM
The first one created the alias, the second one replaced destination.
James
Thanks! I did not know that the replacement works, I thought this feature is not yet implemented.

Petition the maker of your NXT client to add a time check to prevent this from happening in the future.
It's Firefox fault. Not mine or my app Grin.
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 05, 2014, 11:11:56 PM
Normal. You can replace an alias URI with a new URI, even if it is the same URI. I consider it a bug, but CfB says it is a feature

James
Maybe i can't understand you properly, but i talk about two same aliases.
First is "lr127" (URI is "id:11017826896") and second is "lr127" (same URI "id:11017826896").
I wanted to buy one alias and spend 1 NXT, not 2.

But when i query: http://node1.nxtbase.com:7874/nxt?requestType=listAccountAliases&account=11017826896
I see only one alias "lr127". As expected.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 05, 2014, 10:29:22 PM
I created two equals aliases by url query. I press the Enter once, i don't press reload button.
And paid double fee.

First transaction:
http://node1.nxtbase.com:7874/nxt?requestType=getTransaction&transaction=18025872161896266439
Second:
http://node1.nxtbase.com:7874/nxt?requestType=getTransaction&transaction=13777821866514257534

I have two of the same aliases now.

Is it normal?

My local time is 5 am, maybe it's time to go to sleep?  Grin

19  Alternate cryptocurrencies / Altcoin Discussion / Re: Nxt source code flaw reports on: January 03, 2014, 04:51:24 PM
Come-from-Beyond
Where is aliases? In getTransaction as example.
In version NRS 0.4.7 they exists.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Nxt :: descendant of Bitcoin - Updated Information on: January 03, 2014, 10:24:47 AM
But if it's impossible at the protocol level, then maybe we can look at safeguards at the client level. Maybe clients can (at least have the option of) enforcing check digits for entering naked addresses.
NRS API can be changed without breaking backward compatibility.
Inside can be stored without check digit - as before. And take / give out only with check digit.
NRS & clients must check this, not client only.
First time to use the old and new version of account number together, developers need time to change their apps.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!