Pages:
Author

Topic: [ANN] Nxt :: descendant of Bitcoin - page 55. (Read 383930 times)

newbie
Activity: 12
Merit: 0
September 04, 2014, 11:12:26 AM
How to take NXT deposits in a site?

Scenario:

Client A has 30 NXT, Client B has 30 NXT.

How to pay 40 NXT to Client C?

How it is solved in btc/ltc:
==============================
"sendtoaddress" commands which accumulates balances and creates a total output and then pays.

How it is solved in stellar/btsx
===================================================
By taking deposits in a single account and identifying different clients with MEMO:


How to implement the same in NXT.??

Any help will be appreciated Smiley
  


short answer as I understand it: Option B- By taking deposits in a single account and identifying different clients with MEMO.

strong advice: do the accounting yourself. the bitcoin wallet accounts feature is a QUAGMIRE!

SO you have to decide yourself how many NXT are supposed to be going from A to C, and how many from B to C to add to a total of 40NXT.

You can also make one big pool and make note for yourself how many belong to A, B and C.


A bit longer:

the "sendtoaddress" feature of the bitcoin wallet does the MEMO for you, but it is glued togther so tightly with the real bitcoinaddresses that this fact is easily missed.
 ---------------
from https://en.bitcoin.it/wiki/Accounts_explained
The Default Account
The default account is named with the empty string ("" in JSON). Generated coins are always credited to the default account, and the sendtoaddress method always debits the default account.
 - 'sendtoaddress' always succeeds if there are sufficient funds in the
   server's wallet.  For example, if your wallet account balances were 100 BTC in account
   'foo' and 0 BTC in the default account, then the balances after sendtoaddress
   1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN 10.00 would be 100 in account 'foo' and -10.00 in
   the default account (and the overall server balance would go from 100 to 90 BTC).  On
   the other hand, using 'sendfrom' to send from the default account with a zero balance
   will fail with message "Account has insufficient funds".


Account -> Account Transfers
Use the move method to transfer balances from one account to another. Moves are not broadcast to the network, and never incur transaction fees; they just adjust account balances in the wallet.
-----------------

the latter indicates that these are non blockchain related tabulators that are kept there, so under the hood it is just the same as if you would do it yourself, only when you do it yourself, you know what you are doiing.

the accounts in the 'wallet' 'account' slots in the DB can become even negative- something an accountant MAY do for his purposes, but a potentially troublesome tool to use- because in the end the accounts MUST balance.
so instead of letting bitcoinQT walletdb do that for you and potentially now know what is happening- do it yourself.



another caveat from the bitcoin wiki:

Account Weaknesses

Since the accounts feature was introduced, several services have used it to keep track of customer's bitcoin balances and have had the following problems:

    Wallet backups are an issue; if you rely on a good backup of wallet.dat then a backup must be done every time an address is associated with an account and every time the 'move' command is used.
    The accounts code does not scale up to thousands of accounts with tens of thousands of transactions, because by-account (and by-account-by-time) indices are not implemented. So many operations (like computing an account balance) require accessing every wallet transaction.
    Most applications already have a customer database, implemented with MySQL or some other relational database technology. It is awkward at best to keep the bitcoin-maintained Berkely DB wallet database and the application database backed up and synchronized at all times.




In NXT every transaction incurs a minimum fee of 1 NXT i think ?.

So how to do fee-less transaction from user account to hot wallet account in NXT for Account-Based deposits?
legendary
Activity: 1181
Merit: 1018
September 04, 2014, 08:11:14 AM
How to take NXT deposits in a site?

Scenario:

Client A has 30 NXT, Client B has 30 NXT.

How to pay 40 NXT to Client C?

How it is solved in btc/ltc:
==============================
"sendtoaddress" commands which accumulates balances and creates a total output and then pays.

How it is solved in stellar/btsx
===================================================
By taking deposits in a single account and identifying different clients with MEMO:


How to implement the same in NXT.??

Any help will be appreciated Smiley
  


short answer as I understand it: Option B- By taking deposits in a single account and identifying different clients with MEMO.

strong advice: do the accounting yourself. the bitcoin wallet accounts feature is a QUAGMIRE!

SO you have to decide yourself how many NXT are supposed to be going from A to C, and how many from B to C to add to a total of 40NXT.

You can also make one big pool and make note for yourself how many belong to A, B and C.


A bit longer:

the "sendtoaddress" feature of the bitcoin wallet does the MEMO for you, but it is glued togther so tightly with the real bitcoinaddresses that this fact is easily missed.
 ---------------
from https://en.bitcoin.it/wiki/Accounts_explained
The Default Account
The default account is named with the empty string ("" in JSON). Generated coins are always credited to the default account, and the sendtoaddress method always debits the default account.
 - 'sendtoaddress' always succeeds if there are sufficient funds in the
   server's wallet.  For example, if your wallet account balances were 100 BTC in account
   'foo' and 0 BTC in the default account, then the balances after sendtoaddress
   1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN 10.00 would be 100 in account 'foo' and -10.00 in
   the default account (and the overall server balance would go from 100 to 90 BTC).  On
   the other hand, using 'sendfrom' to send from the default account with a zero balance
   will fail with message "Account has insufficient funds".


Account -> Account Transfers
Use the move method to transfer balances from one account to another. Moves are not broadcast to the network, and never incur transaction fees; they just adjust account balances in the wallet.
-----------------

the latter indicates that these are non blockchain related tabulators that are kept there, so under the hood it is just the same as if you would do it yourself, only when you do it yourself, you know what you are doiing.

the accounts in the 'wallet' 'account' slots in the DB can become even negative- something an accountant MAY do for his purposes, but a potentially troublesome tool to use- because in the end the accounts MUST balance.
so instead of letting bitcoinQT walletdb do that for you and potentially now know what is happening- do it yourself.



another caveat from the bitcoin wiki:

Account Weaknesses

Since the accounts feature was introduced, several services have used it to keep track of customer's bitcoin balances and have had the following problems:

    Wallet backups are an issue; if you rely on a good backup of wallet.dat then a backup must be done every time an address is associated with an account and every time the 'move' command is used.
    The accounts code does not scale up to thousands of accounts with tens of thousands of transactions, because by-account (and by-account-by-time) indices are not implemented. So many operations (like computing an account balance) require accessing every wallet transaction.
    Most applications already have a customer database, implemented with MySQL or some other relational database technology. It is awkward at best to keep the bitcoin-maintained Berkely DB wallet database and the application database backed up and synchronized at all times.


sr. member
Activity: 336
Merit: 260
September 03, 2014, 02:56:17 PM
How to take NXT deposits in a site?

Scenario:

Client A has 30 NXT, Client B has 30 NXT.

How to pay 40 NXT to Client C?

How it is solved in btc/ltc:
==============================
"sendtoaddress" commands which accumulates balances and creates a total output and then pays.

How it is solved in stellar/btsx
===================================================
By taking deposits in a single account and identifying different clients with MEMO:


How to implement the same in NXT.??

Any help will be appreciated Smiley
   

You should visit https://nxtforum.org and ask there if you hope to get an answer.
newbie
Activity: 12
Merit: 0
September 03, 2014, 02:27:50 PM
How to take NXT deposits in a site?

Scenario:

Client A has 30 NXT, Client B has 30 NXT.

How to pay 40 NXT to Client C?

How it is solved in btc/ltc:
==============================
"sendtoaddress" commands which accumulates balances and creates a total output and then pays.

How it is solved in stellar/btsx
===================================================
By taking deposits in a single account and identifying different clients with MEMO:


How to implement the same in NXT.??

Any help will be appreciated Smiley
   
hero member
Activity: 574
Merit: 500
July 24, 2014, 07:38:50 PM
can someone tell me if i need to be logged into my account to forge? I would ask this on the nxtforum and can't get past their captcha code

Yes but once logged in, you can 'log out and continue forging' for that session. Once you restart you computer, you have to log in again.
sr. member
Activity: 386
Merit: 250
July 24, 2014, 07:29:01 PM
can someone tell me if i need to be logged into my account to forge? I would ask this on the nxtforum and can't get past their captcha code
legendary
Activity: 1512
Merit: 1004
July 02, 2014, 09:41:31 PM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/
0.10 USD,it's too low price. Grin
hero member
Activity: 574
Merit: 500
July 02, 2014, 04:22:42 PM
Who cares? I was not talking to you
This is not a private message, this is a public forum.
You are talking to everyone who bothers to read.

The official NXT forum is here:
https://nxtforum.org/

The moderated thread on BTT:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
(this hardly ever gets censored, btw, we aren't getting all that much trolling these days.)

This thread, however, is very much a historical document......


Any idea why everyone stopped using it?

No one could edit the OP after BCNext went offline so another was started. I think it is around page 70.
legendary
Activity: 1722
Merit: 1217
July 02, 2014, 03:39:16 PM
Who cares? I was not talking to you
This is not a private message, this is a public forum.
You are talking to everyone who bothers to read.

The official NXT forum is here:
https://nxtforum.org/

The moderated thread on BTT:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
(this hardly ever gets censored, btw, we aren't getting all that much trolling these days.)

This thread, however, is very much a historical document......


Any idea why everyone stopped using it?
hero member
Activity: 854
Merit: 1001
July 02, 2014, 02:28:53 PM
Who cares? I was not talking to you
This is not a private message, this is a public forum.
You are talking to everyone who bothers to read.

The official NXT forum is here:
https://nxtforum.org/

The moderated thread on BTT:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
(this hardly ever gets censored, btw, we aren't getting all that much trolling these days.)

This thread, however, is very much a historical document......
sr. member
Activity: 364
Merit: 250
☕ NXT-4BTE-8Y4K-CDS2-6TB82
July 02, 2014, 02:13:24 PM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/

Thank you. Good to have a more professional analysis here. Smiley
hero member
Activity: 630
Merit: 500
Bitgoblin
July 02, 2014, 02:01:06 PM
Who cares? I was not talking to you
This is not a private message, this is a public forum.
You are talking to everyone who bothers to read.
legendary
Activity: 952
Merit: 1000
Yeah! I hate ShroomsKit!
July 02, 2014, 01:58:31 PM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/

This is not the correct thread to post.

The "official" thread now is:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
That's a moderated post.
I'll pass.



Who cares? I was not talking to you
hero member
Activity: 630
Merit: 500
Bitgoblin
July 02, 2014, 01:56:19 PM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/

This is not the correct thread to post.

The "official" thread now is:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
That's a moderated post.
I'll pass.
hero member
Activity: 574
Merit: 500
July 02, 2014, 09:51:48 AM
@raleit2014

The Nxt discussion thead on BTT is now: https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007

However, most hang out out on nxtforum.org (1450 members and 56,000 posts in 3 months)
legendary
Activity: 952
Merit: 1000
Yeah! I hate ShroomsKit!
July 02, 2014, 09:49:46 AM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/

This is not the correct thread to post.

The "official" thread now is:
https://bitcointalksearch.org/topic/nxt-blockchain-platform-proof-of-stake-official-587007
member
Activity: 84
Merit: 10
Crypto is the Future!
July 02, 2014, 09:42:58 AM
Crypto Analytics has rated NXT as a BUY.
Opinion will be published later today

Crypto Analytics
http://cryptoanalytics.trade/
member
Activity: 84
Merit: 10
Crypto is the Future!
June 30, 2014, 01:09:24 PM
I have contacted the Dev to find out more information on NXT, This highly UP trended value.

I will be rating this cyrpto soon
http://cryptoanalytics.trade/
Pages:
Jump to: