Bitcoin Forum
April 30, 2024, 01:48:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Which domain should the coin have?
xdag.org - 10 (50%)
xdag.cash - 9 (45%)
other xdag.* - 1 (5%)
shitcoin.xxx is better - 0 (0%)
Total Voters: 20

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 [43] 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 ... 138 »
  Print  
Author Topic: [ANN] [XDAG] Community Driven - First Mineable DAG | CPU Mining  (Read 75191 times)
mauriru
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 10, 2018, 10:51:13 PM
 #841

and it looks like dagger.org is open

It isn't, in the way of a non profit organization the onlyone aviaboe is dagger.ngo
1714484917
Hero Member
*
Offline Offline

Posts: 1714484917

View Profile Personal Message (Offline)

Ignore
1714484917
Reply with quote  #2

1714484917
Report to moderator
"In a nutshell, the network works like a distributed timestamp server, stamping the first transaction to spend a coin. It takes advantage of the nature of information being easy to spread but hard to stifle." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714484917
Hero Member
*
Offline Offline

Posts: 1714484917

View Profile Personal Message (Offline)

Ignore
1714484917
Reply with quote  #2

1714484917
Report to moderator
1714484917
Hero Member
*
Offline Offline

Posts: 1714484917

View Profile Personal Message (Offline)

Ignore
1714484917
Reply with quote  #2

1714484917
Report to moderator
1714484917
Hero Member
*
Offline Offline

Posts: 1714484917

View Profile Personal Message (Offline)

Ignore
1714484917
Reply with quote  #2

1714484917
Report to moderator
soulcancer
Member
**
Offline Offline

Activity: 276
Merit: 12

Life is toxic...CHUG IT!!


View Profile
January 10, 2018, 10:52:48 PM
 #842

and it looks like dagger.org is open

It isn't, in the way of a non profit organization the onlyone aviaboe is dagger.ngo

ya...just saw that...daggercash.org tho
Raist
Full Member
***
Offline Offline

Activity: 490
Merit: 102


View Profile
January 10, 2018, 11:00:40 PM
 #843

So the community is floating towards starting point of the first minable Dag currency Dagger as of $0.02 for 1 XDAG. Today it is about 120-130 sat for XDAG. Reasonable.
Dizzzzle
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 10, 2018, 11:55:04 PM
 #844

Glad everyone likes the name Smiley

You all don’t think Daggercurrency.org is legit? I think it sounds LEGIT.

Like, 1b marketcap legit...
kbs1
Jr. Member
*
Offline Offline

Activity: 107
Merit: 1


View Profile
January 11, 2018, 01:03:42 AM
 #845

Tip for linux users who do not wish to change their timezone:
Code:
TZ=GMT ./xdag -d -m 2 pool:ip
or similar command, try with
Code:
TZ=GMT date
to see the results.

Handy bash scripts when you want to update the code, connect to console, start mining without changing the directory all the time and remembering commands (place in your home directory, where git clone was also executed):

xdag_update.sh
Code:
#!/bin/bash

PIDS="`pidof xdag`"

if [ "$?" -eq 0 ]; then
        echo "Daemon is running! Stop it before recompiling. PIDs: ${PIDS}"
        echo "run ./xdag_console.sh and type 'terminate' to terminate the daemon."
        exit 1
fi

echo Updating git repository...
(cd ~/cheatcoin && git pull && cd ./cheatcoin && make)

echo "Done! Start the daemon with ./xdag_run.sh"
xdag_run.sh:
Code:
#!/bin/bash

PIDS="`pidof xdag`"

if [ "$?" -eq 0 ]; then
        echo "Daemon already running? PIDs: ${PIDS}"
        echo "run ./xdag_console.sh and type 'terminate' to terminate the daemon."
        exit 1
fi

echo Starting daemon...
(cd ~/cheatcoin/cheatcoin && TZ=GMT ./xdag -d -m 20 54.37.158.221:13654)
echo -n "Daemon PIDs: "
pidof xdag
xdag_console.sh
Code:
#!/bin/bash

pidof xdag > /dev/null

if [ "$?" -ne 0 ]; then
        echo "Daemon not running! Start it with ./xdag_run.sh"
        exit 1
fi

echo Starting console...
(cd ~/cheatcoin/cheatcoin && TZ=GMT ./xdag -i)
echo -n "Daemon PIDs: "
pidof xdag
Adjust to suit your needs & happy mining! ;-)

https://xdag.org - reliable World-Wide XDAG mining pool with automatic failover and extra mining rewards!
frankkkkkkk
Hero Member
*****
Offline Offline

Activity: 594
Merit: 500



View Profile
January 11, 2018, 01:10:35 AM
 #846

When is the GPU miner able to download?
kbs1
Jr. Member
*
Offline Offline

Activity: 107
Merit: 1


View Profile
January 11, 2018, 01:34:58 AM
 #847

I'd like to know as well! there are sha256 miners for bitcoin, maybe the algorithm counting gpu code can be reused to a certain extent

https://xdag.org - reliable World-Wide XDAG mining pool with automatic failover and extra mining rewards!
tobeaj2mer01
Legendary
*
Offline Offline

Activity: 1098
Merit: 1000


Angel investor.


View Profile
January 11, 2018, 01:38:38 AM
 #848

Dear DEV and all
I have two questions, could you comment them, thanks very much.
1. How to upgrade miner to a new version?
2. I tried to do solo mining with a machine in China and America but they were both not able to connect to mainnet,what's the problem?

Sirx: SQyHJdSRPk5WyvQ5rJpwDUHrLVSvK2ffFa
soulcancer
Member
**
Offline Offline

Activity: 276
Merit: 12

Life is toxic...CHUG IT!!


View Profile
January 11, 2018, 01:51:52 AM
 #849

more rough ideas....very rough...

https://imgur.com/eYW6g2e

and an inversion of the previous...

https://imgur.com/rhEQcnD
kbs1
Jr. Member
*
Offline Offline

Activity: 107
Merit: 1


View Profile
January 11, 2018, 01:58:16 AM
 #850

@soulcancer LOVE the first logo! Smiley

@tobeaj2mer01
1. just exit old version, download new version, extract somewhere else, copy over wallet.dat, dnet_key.dat, storage directory, and run new version as usual
2. what's the output of the state command?

https://xdag.org - reliable World-Wide XDAG mining pool with automatic failover and extra mining rewards!
welhzh
Newbie
*
Offline Offline

Activity: 178
Merit: 0


View Profile
January 11, 2018, 02:57:54 AM
 #851

how to solo mining.
Dagmen
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
January 11, 2018, 03:09:44 AM
 #852

how to solo mining.
You can't for the time being, and eventhough you could it would not be worth... :p
Dizzzzle
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 11, 2018, 04:03:27 AM
 #853

hey all - playing around with branding/logo ideas.

What do you think about this?  

https://ibb.co/hFh1K6
https://ibb.co/hmFcsR

Just playing around...Feedback/direction welcome
doktor1897
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
January 11, 2018, 04:22:15 AM
 #854

how to solo mining.
You can't for the time being, and eventhough you could it would not be worth... :p
when will it start for mining? sorry maybe I rarely open and read the announcement about this project, so less information how far progress of information of this project

                 ██            ██
               ██████        ██████
            ████████████      ██████
        ███████████████████    ██████
     ███████████    ██████████  ██████
  ██████████    ███    ████████  ▀█████
  ██████    ███████████   ██████  █████
  █████   ██████  ██████   █████  █████
  █████    ███      ███    █████  █████
  █████  ██            ██  █████  █████
  █████  ███          ███  █████  █████
  █████  ███████   ██████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████  █████ ████  ████  ██████
  █████  ████   ███  ████  ███  ██████
  █████  ████    █   ████  █   ██████ 
  █████  ████        ██      ███████     
    ███  ████        █     ███████         
      █  ████         ▄██  █████       
           ██        ████  ███
            █        ██▀
`AiBB`  ———————————
HARNESSING THE POWER OF Ai IN CRYPTO
▐ -
`BUY TOKENS`
-▐   Twitter
  Telegram
  Facebook
|WP
Reddit
Medium
Dagmen
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
January 11, 2018, 04:31:43 AM
 #855

how to solo mining.
You can't for the time being, and eventhough you could it would not be worth... :p
when will it start for mining? sorry maybe I rarely open and read the announcement about this project, so less information how far progress of information of this project

It's open for minin... Just you can't solo mine, there are like 5 or 6 pools to wich you can connect to mine the coin. Wink
Khaak Ru
Newbie
*
Offline Offline

Activity: 75
Merit: 0


View Profile
January 11, 2018, 06:02:59 AM
 #856

Hey guys, we are growing fast! Nice to see that progress.
Thank you all for you design masterpieces. Let community choose the final option.
I think daggercurrency.org is good but too long, what about xdag.io or something like that?
Also feel free to visit our forum http://xdag.a2hosted.com
welhzh
Newbie
*
Offline Offline

Activity: 178
Merit: 0


View Profile
January 11, 2018, 06:43:54 AM
 #857

I added a poll about the domain. Please, vote, if you can.)


where is the vote?
jonano
Jr. Member
*
Offline Offline

Activity: 133
Merit: 7


View Profile
January 11, 2018, 06:49:31 AM
 #858

I'd like to know as well! there are sha256 miners for bitcoin, maybe the algorithm counting gpu code can be reused to a certain extent
Yes, the hashing algorithm is differences in block header structure and hash initialization, also network protocol is different, so we cannot just reuse existing GPU-miners. But someone can modify some existing miner for Dagger coin.

where is the vote?
At the top of the page.
Gaman
Full Member
***
Offline Offline

Activity: 284
Merit: 101



View Profile
January 11, 2018, 06:50:50 AM
 #859

I added a poll about the domain. Please, vote, if you can.)


where is the vote?

Its above the forum.

▂ ▃ ▅ ▆   LUCRE DON'T HODL; TRADE!   ▆ ▅ ▃ ▂
BITCOIN & CRYPTO CURRENCY ALGORITHMIC TRADING & SIGNAL SERVICE ✓ 
▌▐ ▬▬▬▬▬  Twitter ⬝  Telegram ⬝   Facebook ⬝  Youtube ⬝  Meduim   ▬▬▬▬▬ ▌▐
Khaak Ru
Newbie
*
Offline Offline

Activity: 75
Merit: 0


View Profile
January 11, 2018, 06:51:30 AM
 #860

I added a poll about the domain. Please, vote, if you can.)


where is the vote?

Its above the forum.

You can also vote on
http://xdag.a2hosted.com/viewtopic.php?f=5&t=31
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 [43] 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 ... 138 »
  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!