Bitcoin Forum
May 11, 2024, 10:42:13 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 [4068] 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722519 times)
TaoOfSaatoshi
Legendary
*
Offline Offline

Activity: 2156
Merit: 1014


Dash Nation Founder | CATV Host


View Profile WWW
February 17, 2015, 10:03:37 PM
 #81341

Hows enforcement been going guys?
I'm starting to get payments again, so pretty good!

1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
1715424133
Hero Member
*
Offline Offline

Posts: 1715424133

View Profile Personal Message (Offline)

Ignore
1715424133
Reply with quote  #2

1715424133
Report to moderator
Lukas_Jackson
Hero Member
*****
Offline Offline

Activity: 615
Merit: 501



View Profile
February 17, 2015, 10:39:48 PM
 #81342


Will break inputs for DS tx's across multiple masternode so no single masternode knows all the inputs per round as it currently stands. Makes the probabilities of blockchain analysis per round exponentially harder because the masternodes are now blind to what other inputs are part of the mix. You're effectively taking Darksend as it currently stands and pumping it full of steroids.

And consequently greatly speeds the Darksend process as the same obfuscation can be achieved with far fewer rounds of mixing.

Bingo.

Great news! Smiley  When will the innovation end? Wink
Once you stop moving you're dead.

It is easier to be an aggressive victim than to be a free man.
UdjinM6
Legendary
*
Offline Offline

Activity: 1318
Merit: 1040



View Profile WWW
February 17, 2015, 10:59:15 PM
Last edit: February 17, 2015, 11:28:57 PM by UdjinM6
 #81343

Someone earlier mentioned you have to "lock" the 1000 coins in a masternode if you pay out the "earnings" in order to keep the node running and that it is not spending the reserved coins.

How do i lock them @ Linux?

Enable coin control in settings.. Then go to send tab... You should see how then.

Linux commandline? Smiley

In general
Code:
darkcoind listunspent

Code:
listunspent ( minconf maxconf  ["address",...] )

Returns array of unspent transaction outputs
with between minconf and maxconf (inclusive) confirmations.
Optionally filter to only include txouts paid to specified addresses.
Results are an array of Objects, each of which has:
{txid, vout, scriptPubKey, amount, confirmations}

Arguments:
1. minconf          (numeric, optional, default=1) The minimum confirmationsi to filter
2. maxconf          (numeric, optional, default=9999999) The maximum confirmations to filter
3. "addresses"    (string) A json array of darkcoin addresses to filter
    [
      "address"   (string) darkcoin address
      ,...
    ]

Result
[                   (array of json object)
  {
    "txid" : "txid",        (string) the transaction id
    "vout" : n,               (numeric) the vout value
    "address" : "address",  (string) the darkcoin address
    "account" : "account",  (string) The associated account, or "" for the default account
    "scriptPubKey" : "key", (string) the script key
    "amount" : x.xxx,         (numeric) the transaction amount in btc
    "confirmations" : n       (numeric) The number of confirmations
  }
  ,...
]

Examples
> darkcoin-cli listunspent
> darkcoin-cli listunspent 6 9999999 "[\"1PGFqEzfmQch1gKD3ra4k18PNj3tTUUSqg\",\"1LtvqCaApEdUGFkpKMM4MstjcaL4dKg8SP\"]"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "listunspent", "params": [6, 9999999 "[\"1PGFqEzfmQch1gKD3ra4k18PNj3tTUUSqg\",\"1LtvqCaApEdUGFkpKMM4MstjcaL4dKg8SP\"]"] }' -H 'content-type: text/plain;' http://127.0.0.1:9998/

But for local wallet masternode outputs it's easier:
Code:
darkcoind masternode outputs

And then
Code:
darkcoind lockunspent
Code:
lockunspent unlock [{"txid":"txid","vout":n},...]

Updates list of temporarily unspendable outputs.
Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.
A locked transaction output will not be chosen by automatic coin selection, when spending darkcoins.
Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list
is always cleared (by virtue of process exit) when a node stops or fails.
Also see the listunspent call

Arguments:
1. unlock            (boolean, required) Whether to unlock (true) or lock (false) the specified transactions
2. "transactions"  (string, required) A json array of objects. Each object the txid (string) vout (numeric)
     [           (json array of json objects)
       {
         "txid":"id",    (string) The transaction id
         "vout": n         (numeric) The output number
       }
       ,...
     ]

Result:
true|false    (boolean) Whether the command was successful or not

Examples:

List the unspent transactions
> darkcoin-cli listunspent

Lock an unspent transaction
> darkcoin-cli lockunspent false "[{\"txid\":\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\",\"vout\":1}]"

List the locked transactions
> darkcoin-cli listlockunspent

Unlock the transaction again
> darkcoin-cli lockunspent true "[{\"txid\":\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\",\"vout\":1}]"

As a json rpc call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "lockunspent", "params": [false, "[{\"txid\":\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\",\"vout\":1}]"] }' -H 'content-type: text/plain;' http://127.0.0.1:9998/

DASH: XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6
TaoOfSaatoshi
Legendary
*
Offline Offline

Activity: 2156
Merit: 1014


Dash Nation Founder | CATV Host


View Profile WWW
February 17, 2015, 11:54:50 PM
 #81344

The weak hands continue to exit the building on Cryptsy...

coins101
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
February 18, 2015, 01:36:26 AM
 #81345

-snip-
OMG that was like visual Viagra :-D

Visual viagra?  lol.

WTF (pun intended) does that mean?
tungfa
Legendary
*
Offline Offline

Activity: 1834
Merit: 1023


View Profile
February 18, 2015, 02:38:29 AM
Last edit: February 18, 2015, 03:06:33 AM by tungfa
 #81346


 Wink
oaxaca
Hero Member
*****
Offline Offline

Activity: 671
Merit: 500


View Profile
February 18, 2015, 02:53:00 AM
 #81347

Andreas Antonopoulos @ MIT Bitcoin Club

If you start at the 23:40 mark, you will hear him answer the first question.  Yes, it's regarding anonymity.  No, he does not mention Darkcoin by name.  You can see that he wants to say Darkcoin...

https://www.youtube.com/watch?v=J8y_GypCWf4&feature=youtu.be
tungfa
Legendary
*
Offline Offline

Activity: 1834
Merit: 1023


View Profile
February 18, 2015, 03:07:17 AM
 #81348


tx raze
(too fast for my own good again)

i think you have a spelling mistake in your post
 Grin
raze182
Full Member
***
Offline Offline

Activity: 163
Merit: 100


A légpárnás hajóm tele van angolnákkal.


View Profile
February 18, 2015, 03:24:48 AM
 #81349


tx raze
(too fast for my own good again)

i think you have a spelling mistake in your post
 Grin

Post? What post? I didn't post anything. Wink

Xtrdw361DvoyDhxL5XoeAvTxTPvM4dXuLW
stealth923
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


View Profile
February 18, 2015, 03:25:36 AM
 #81350

Looking Sexy as ever
xxxgoodgirls
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001


View Profile
February 18, 2015, 03:27:09 AM
 #81351

Andreas Antonopoulos @ MIT Bitcoin Club

If you start at the 23:40 mark, you will hear him answer the first question.  Yes, it's regarding anonymity.  No, he does not mention Darkcoin by name.  You can see that he wants to say Darkcoin...

https://www.youtube.com/watch?v=J8y_GypCWf4&feature=youtu.be

Ahah that's true

In summary, the Intel Management Engine and its applications are a backdoor with total access to and control over the rest of the PC. The ME is a threat to freedom, security, and privacy, and the libreboot project strongly recommends avoiding it entirely. Since recent versions of it can’t be removed, this means avoiding all recent generations of Intel hardware. details https://libreboot.org/faq.html#intelme --- https://tehnoetic.com/laptops --- https://store.vikings.net/x200-ryf-certfied
RenegadeMan
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
February 18, 2015, 03:39:36 AM
 #81352

Looking Sexy as ever


Except, it should be noted that the "0.23 DRK/day" number in drk.mn is incorrect.
2112 masternodes = 1 payment every 2112/576 = 3.666666~
So you'll have 1.75 Drk / 3.666666 = 0.48 Drk / day.

BTC:   1KjAPEa3WvhmDGT4jmT9i5P3UPFdFH629e
DASH: Xdr6U5qcAdbuKRrr3xKBb1ySoPq7MKERnB
tungfa
Legendary
*
Offline Offline

Activity: 1834
Merit: 1023


View Profile
February 18, 2015, 03:40:35 AM
 #81353


tx raze
(too fast for my own good again)

i think you have a spelling mistake in your post
 Grin

Post? What post? I didn't post anything. Wink

Heheeeee
nearly got you there !
 Grin
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
February 18, 2015, 03:46:28 AM
 #81354

Andreas Antonopoulos @ MIT Bitcoin Club

If you start at the 23:40 mark, you will hear him answer the first question.  Yes, it's regarding anonymity.  No, he does not mention Darkcoin by name.  You can see that he wants to say Darkcoin...

https://www.youtube.com/watch?v=J8y_GypCWf4&feature=youtu.be

Ahah that's true
Did I hear darkcoin? Wink
Well saying other altcoins he meant darkcoin for sure.
Time: 25:25s
Great speach! Thnx 4 that.

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
no141
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
February 18, 2015, 03:47:08 AM
 #81355

I've been thinking and reading some things, and another part of anonymity is having old unneeded tracks disappear. Is there anything in darkcoin that auto-prunes the blockchain of blocks that have no unspent coin in them? Or maybe superblocks every so often that collimate all the unspent coins into one block that then the history could be deleted? Anything like this in the works or already around?

anonymousxx1503
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
February 18, 2015, 04:50:06 AM
 #81356



Darkcoin

I'd like to thank eduffield and the other developers for this critically important evolution in virtual currency. DarkCoin is what bitcoin should have been. Some might call it "Bitcoin 2.0" but would do better by saying: "DarkCoin is digital cash." - Child Harold - February 28, 2014
https://bitcointalk.org/index.php?topic=421615.msg5424980#msg5424980
TanteStefana2
Legendary
*
Offline Offline

Activity: 1260
Merit: 1001


View Profile
February 18, 2015, 04:59:40 AM
 #81357

Andreas Antonopoulos @ MIT Bitcoin Club

If you start at the 23:40 mark, you will hear him answer the first question.  Yes, it's regarding anonymity.  No, he does not mention Darkcoin by name.  You can see that he wants to say Darkcoin...

https://www.youtube.com/watch?v=J8y_GypCWf4&feature=youtu.be

Actually, I got the creepy feeling in this talk, that I haven't felt before, that Andreas was "speaking" the Bitcoin party line, not acknowledging how dangerous Bitcoin is, that they're not fungible, etc...  I mean just what Coinbase is doing with not accepting coins that have been through known gambling sites alone, is a failure point for Bitcoin, and Andreas glossed over that.

You're right, I felt like he did not say what he knew he should say, IMO.  Why is it? is what I wonder.  Has he sold his soul?  I'm a bit worried at this point.  Perhaps it was his audience?  Perhaps it was who paid for this talk?  

I just got a creepy feeling... he seemed conflicted.  g2g thought, so I don't know how the whole talk went...

Another proud lifetime Dash Foundation member Smiley My TanteStefana account was hacked, Beware trading
"You'll never reach your destination if you stop to throw stones at every dog that barks."
Sir Winston Churchill  BTC: 12pu5nMDPEyUGu3HTbnUB5zY5RG65EQE5d
bigrcanada
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile WWW
February 18, 2015, 05:22:24 AM
 #81358

Andreas Antonopoulos @ MIT Bitcoin Club

If you start at the 23:40 mark, you will hear him answer the first question.  Yes, it's regarding anonymity.  No, he does not mention Darkcoin by name.  You can see that he wants to say Darkcoin...

https://www.youtube.com/watch?v=J8y_GypCWf4&feature=youtu.be

Actually, I got the creepy feeling in this talk, that I haven't felt before, that Andreas was "speaking" the Bitcoin party line, not acknowledging how dangerous Bitcoin is, that they're not fungible, etc...  I mean just what Coinbase is doing with not accepting coins that have been through known gambling sites alone, is a failure point for Bitcoin, and Andreas glossed over that.

You're right, I felt like he did not say what he knew he should say, IMO.  Why is it? is what I wonder.  Has he sold his soul?  I'm a bit worried at this point.  Perhaps it was his audience?  Perhaps it was who paid for this talk?  

I just got a creepy feeling... he seemed conflicted.  g2g thought, so I don't know how the whole talk went...
I certainly got the feeling he was conflicted... The fact that he said you would need "another"  coin to do anon tx was revealing.  That he mentioned that btc would probably never be anon... Then spent several minutes going on about how super important anonymity was ....was well Ummmm telling. I'm thinking this is a turning point... BTC core is now admitting that there is a serious hole in btc...listening to him trying to say it will be like "gold"  and a store of value sounded weak and in lieu of the lack of anon... Seemed hollow.  They know it... Why hold Ur "gold"  where everyone could see it and trace it?

Proud lifetime DASH Foundation Member | First Brick & Mortar DASH Merchant |  Please visit DASH.org or DASHtalk.org for a list of merchants and information.
someredguy
Member
**
Offline Offline

Activity: 82
Merit: 10


View Profile
February 18, 2015, 05:23:10 AM
 #81359


Dash - Fast, anonymous, digital cash.  http://www.dash.org
Terzo2
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 18, 2015, 07:03:28 AM
 #81360

Like always , Darkcoin getting dumped !
Pages: « 1 ... 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 [4068] 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 ... 7012 »
  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!