Bitcoin Forum
May 04, 2024, 01:23:16 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 [631] 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722504 times)
traumschiff
Legendary
*
Offline Offline

Activity: 1498
Merit: 1001


180 BPM


View Profile
April 06, 2014, 08:56:36 AM
 #12601

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

Good job, looks like they have a good variety. How trusted is the place?

1714785796
Hero Member
*
Offline Offline

Posts: 1714785796

View Profile Personal Message (Offline)

Ignore
1714785796
Reply with quote  #2

1714785796
Report to moderator
1714785796
Hero Member
*
Offline Offline

Posts: 1714785796

View Profile Personal Message (Offline)

Ignore
1714785796
Reply with quote  #2

1714785796
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714785796
Hero Member
*
Offline Offline

Posts: 1714785796

View Profile Personal Message (Offline)

Ignore
1714785796
Reply with quote  #2

1714785796
Report to moderator
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
April 06, 2014, 09:18:45 AM
 #12602

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

Wow, that's awesome!  I may buy a robotic kit ;P

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 09:21:59 AM
 #12603

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

Good job, looks like they have a good variety. How trusted is the place?

they have been around for a while, havnt heard anything negative about them

node-vps.com - Tron / Masternode hosting services
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 09:44:04 AM
 #12604

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

Wow, that's awesome!  I may buy a robotic kit ;P

hehe geeks paradice :-p

node-vps.com - Tron / Masternode hosting services
naxin
Full Member
***
Offline Offline

Activity: 170
Merit: 100


View Profile
April 06, 2014, 09:51:28 AM
 #12605

If anyone is interested, I wrote a node.js app to monitor addresses in your wallet, as well as any you specify, and it will send you a desktop notification whenever one of those addresses receives a payment.

https://github.com/n-johnson/darkcoin-notify

I would love some feedback on it!

How it looks: https://i.imgur.com/HP5uU0i.png
Close up: https://i.imgur.com/MQu9MY3.png

Requirements:
- Linux, OSX, and Windows are all supported (only tested on ubuntu as of yet though)
- node.js
- darkcoind running

I think the darkcoin-qt client may have a similar function (I know some coins have that feature), but this is meant for those running darkcoin in daemon mode or if you want to watch other addresses not in your hot wallet (a paper wallet address for example)
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 10:00:36 AM
 #12606

If anyone is interested, I wrote a node.js app to monitor addresses in your wallet, as well as any you specify, and it will send you a desktop notification whenever one of those addresses receives a payment.

https://github.com/n-johnson/darkcoin-notify

I would love some feedback on it!

How it looks: https://i.imgur.com/HP5uU0i.png
Close up: https://i.imgur.com/MQu9MY3.png

Requirements:
- Linux, OSX, and Windows are all supported (only tested on ubuntu as of yet though)
- node.js
- darkcoind running

I think the darkcoin-qt client may have a similar function (I know some coins have that feature), but this is meant for those running darkcoin in daemon mode or if you want to watch other addresses not in your hot wallet (a paper wallet address for example)

hmm this could be useful for my project... since im not that good with js, would it be possible for it to call an url with balance of wallet ?

node-vps.com - Tron / Masternode hosting services
naxin
Full Member
***
Offline Offline

Activity: 170
Merit: 100


View Profile
April 06, 2014, 10:20:01 AM
 #12607

If anyone is interested, I wrote a node.js app to monitor addresses in your wallet, as well as any you specify, and it will send you a desktop notification whenever one of those addresses receives a payment.

https://github.com/n-johnson/darkcoin-notify

I would love some feedback on it!

How it looks: https://i.imgur.com/HP5uU0i.png
Close up: https://i.imgur.com/MQu9MY3.png

Requirements:
- Linux, OSX, and Windows are all supported (only tested on ubuntu as of yet though)
- node.js
- darkcoind running

I think the darkcoin-qt client may have a similar function (I know some coins have that feature), but this is meant for those running darkcoin in daemon mode or if you want to watch other addresses not in your hot wallet (a paper wallet address for example)

hmm this could be useful for my project... since im not that good with js, would it be possible for it to call an url with balance of wallet ?


This project? Not really, what this does is every couple of seconds it sends a command to the darkcoin daemon asking for what the latest block is. If that block is newer than the stored latest block, it then will grab all of the transactions from the block and parse the output address out of them. If any of those addresses are on the list of addresses to watch, it sends a notification.

As for calling a URL to get a wallet balance.
There are a few ways that could be done.

If you are just looking for the balance of an address in your wallet, than you would just have to send a command to darkcoind asking for the balance via an RPC connection, which could be done in any programming language you wanted.

If you are looking for the balance of any given address, however, that is a little more complicated. In order to calculate that, you would have to query the blockchain for any transaction that had that address as an input or output, and sum the results. Doing that on the fly would take upwards of 30 seconds for the current blockchain size (based on my tests on my 4 year old 6 core processor). So to do it in any useful manner, you would have to have some sort of system in place to analyze the blockchain and store transactions in a database indexed by public address for both the past, and constantly updating as new blocks come in. Then instead of querying the blockchain, you would just ask your database for the transactions involving the given address, and because it is indexed by the public address, it would be able to give the result in a fraction of a second.
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 10:23:03 AM
 #12608

If anyone is interested, I wrote a node.js app to monitor addresses in your wallet, as well as any you specify, and it will send you a desktop notification whenever one of those addresses receives a payment.

https://github.com/n-johnson/darkcoin-notify

I would love some feedback on it!

How it looks: https://i.imgur.com/HP5uU0i.png
Close up: https://i.imgur.com/MQu9MY3.png

Requirements:
- Linux, OSX, and Windows are all supported (only tested on ubuntu as of yet though)
- node.js
- darkcoind running

I think the darkcoin-qt client may have a similar function (I know some coins have that feature), but this is meant for those running darkcoin in daemon mode or if you want to watch other addresses not in your hot wallet (a paper wallet address for example)

hmm this could be useful for my project... since im not that good with js, would it be possible for it to call an url with balance of wallet ?


This project? Not really, what this does is every couple of seconds it sends a command to the darkcoin daemon asking for what the latest block is. If that block is newer than the stored latest block, it then will grab all of the transactions from the block and parse the output address out of them. If any of those addresses are on the list of addresses to watch, it sends a notification.

As for calling a URL to get a wallet balance.
There are a few ways that could be done.

If you are just looking for the balance of an address in your wallet, than you would just have to send a command to darkcoind asking for the balance via an RPC connection, which could be done in any programming language you wanted.

If you are looking for the balance of any given address, however, that is a little more complicated. In order to calculate that, you would have to query the blockchain for any transaction that had that address as an input or output, and sum the results. Doing that on the fly would take upwards of 30 seconds for the current blockchain size (based on my tests on my 4 year old 6 core processor). So to do it in any useful manner, you would have to have some sort of system in place to analyze the blockchain and store transactions in a database indexed by public address for both the past, and constantly updating as new blocks come in. Then instead of querying the blockchain, you would just ask your database for the transactions involving the given address, and because it is indexed by the public address, it would be able to give the result in a fraction of a second.

i was thinking of using it to send an updated balance whenever the balance changes for a given list of addresses..

hmm but maybe ill just use php and query the wallets directly instead..

node-vps.com - Tron / Masternode hosting services
peteycamey
Legendary
*
Offline Offline

Activity: 1184
Merit: 1017



View Profile WWW
April 06, 2014, 10:56:42 AM
 #12609

wallet doesnt synch.
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 11:25:09 AM
 #12610

3. april 2014 - goin2mars Amount won 32.19458 DRK - txid: ee1e6705d819a9ac05c498105d129001361b8b4ce24dcf4db9e64f187fcf1dd7

This was the last lottery...

Lotteryminning is closing down the pool - we are getting too small, and people seem to only want to mine at the big pools...

The pool will be turned of 22nd of april - Please withdraw your funds.. any funds left on that date will be considered pools property.. and used for happenings at a later date

BUT Smiley

we will return with something completly different, and its going to be awesome...


I would suggest to those still mining at lotterymining.com to start thinking on changing pools, since the fewer miners, the fewer blocks will be found


- CHAOSiTEC

node-vps.com - Tron / Masternode hosting services
janos666
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
April 06, 2014, 11:33:40 AM
 #12611

Hmm, strange.

I started the latest 0.10.0 beta Windows client with connect=www.drkpool.com after cleaning my appdata folder and I can't sync past 46226 even though that pool is on block 46556.
Possible explanations:
-> www.drkpool.com is on a wrong blockchain (if the latest client has a correct checkpoint)
-> the latest client is broken (possibly incorrect hardcoded checkpoint or other bug)
PepiX
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
April 06, 2014, 11:57:13 AM
 #12612

Hi,
assuming that the equation shown in the OP equals to the network coins per day, here is a pretty accurate profit calculator complete with USD and BTC conversions and electricity fees.
http://chaosagent.org/darkcalc
I do need more info on card hashrates and power draws though, pm me or quote me if you want to help.
Can i haz bounty? Cheesy

Re-Check your calculations. It seems that something is wrong with them.. I am quite positive mine were right and for 2100Mh/s mine showed a little bit under 2DRK per day (for an average difficulty set to 460).. while yours give me about 1.2DRK.. quite a large margin..
Im getting a little over 4 Dark per day with 4 MH

Which corresponds nicely to my calculations..

chaosagent, better add a field for the user to enter the difficulty and default it to the current one.
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
April 06, 2014, 12:27:24 PM
 #12613

wallet doesnt synch.

+1 Sad

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
AlexGR
Legendary
*
Offline Offline

Activity: 1708
Merit: 1049



View Profile
April 06, 2014, 12:30:41 PM
 #12614

I have v0.9.1.0-g47802b4-beta / linux x64... Initially it opened 3 connections and was stuck. As soon as it loaded the fourth connection, fifth connection etc, it rolled into updating the latest blocks. It took ~2 mins.

For win wallets, check a page or two back, there was an update.
jakecrow
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
April 06, 2014, 12:34:18 PM
 #12615

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

That's cool man! Thanks Smiley
blajde
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

Pre-sale - March 18


View Profile
April 06, 2014, 01:00:40 PM
 #12616

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

A lot of links in there are broken for me Sad I wanted some cool stuffed animals from games *sad*
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 01:08:18 PM
 #12617

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

A lot of links in there are broken for me Sad I wanted some cool stuffed animals from games *sad*

did you notify them?

node-vps.com - Tron / Masternode hosting services
blajde
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250

Pre-sale - March 18


View Profile
April 06, 2014, 01:12:35 PM
 #12618

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

A lot of links in there are broken for me Sad I wanted some cool stuffed animals from games *sad*

did you notify them?

Well it worked 2 min later.. Don't know what that was about.. Maybe they were spying and were ultra fast, or just had some server issues =)
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
April 06, 2014, 01:39:01 PM
 #12619

WOOOT

ive been successfully in getting darkcoin added to http://altoutlet.com/drk

now, go shop lol :-)

A lot of links in there are broken for me Sad I wanted some cool stuffed animals from games *sad*

did you notify them?

Well it worked 2 min later.. Don't know what that was about.. Maybe they were spying and were ultra fast, or just had some server issues =)

darn nsa is everywhere :-p

node-vps.com - Tron / Masternode hosting services
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
April 06, 2014, 02:00:39 PM
 #12620

Hmm, strange.

I started the latest 0.10.0 beta Windows client with connect=www.drkpool.com after cleaning my appdata folder and I can't sync past 46226 even though that pool is on block 46556.
Possible explanations:
-> www.drkpool.com is on a wrong blockchain (if the latest client has a correct checkpoint)
-> the latest client is broken (possibly incorrect hardcoded checkpoint or other bug)

remove connect=www.drkpool.com from your darkcoin.conf
If you use 'connect=xxx.xxx.xxx.xxx', darkcoind and darkcoind-qt only connect to xxx.xxx.xxx.xxx.
If you want faster syncing, use 'addnode=' or 'seednode='.


Pages: « 1 ... 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 [631] 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 ... 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!