|
1 | 1 | The Dagger (XDAG) cryptocurrency
|
2 | 2 | ================================
|
3 | 3 |
|
4 |
| -- Community site: https://xdag.io |
5 |
| -- The Main net was launched January 5, 2018 at 22:45 GMT. |
| 4 | +- Community site: https://xdag.io |
| 5 | +- The Main net was launched January 5, 2018 at 22:45 GMT |
6 | 6 |
|
7 | 7 |
|
8 | 8 | Principles:
|
9 | 9 | ----------
|
10 | 10 |
|
11 |
| -- Directed acyclic graph (DAG), not blockchain |
12 |
| -- Block = transaction = address |
13 |
| -- Original idea and implementation |
14 |
| -- Mineable, no premine, no ICO |
15 |
| -- Mining new money every 64 seconds |
| 11 | +- Directed acyclic graph (DAG), not blockchain |
| 12 | +- Block = transaction = address |
| 13 | +- Original idea and implementation |
| 14 | +- Mineable, no premine, no ICO |
| 15 | +- Mining new money every 64 seconds |
16 | 16 |
|
| 17 | +HOW-TO: |
| 18 | +---------- |
17 | 19 |
|
18 |
| -Install and run (Linux): |
19 |
| ------------------------ |
20 |
| - |
21 |
| -- Install dependencies: |
22 |
| - |
23 |
| - $ sudo dnf install git gcc openssl-devel |
24 |
| - or |
25 |
| - $ sudo apt-get install git gcc libssl-dev |
26 |
| - |
27 |
| -- Clone from the git repository: |
28 |
| - |
29 |
| - $ git clone https://github.com/XDagger/xdag |
30 |
| - |
31 |
| -- Make: |
32 |
| - |
33 |
| - $ cd xdag/client |
34 |
| - $ make |
35 |
| - |
36 |
| -- or automake |
37 |
| - |
38 |
| - $ cd xdag/automake |
39 |
| - $ autoreconf -if |
40 |
| - $ ./configure |
41 |
| - $ make |
42 |
| - |
43 |
| -- Run, for example, the miner with 2 CPU mining threads, in daemon mode, connected to the pool put.xdag.server.here:13654 |
44 |
| - |
45 |
| - $ ./xdag -m 2 -d put.xdag.server.here:13654 |
46 |
| - Enter random characters: [enter] |
47 |
| - |
48 |
| -- Already have an account |
49 |
| - |
50 |
| - Put your wallet.dat, dnet_key.dat and storage folder in this folder. |
51 |
| - Then run below command |
52 |
| - $./xdag -m 2 -d put.xdag.server.here:13654 |
53 |
| - |
54 |
| -- Run terminal connected to the daemon in the same folder: |
55 |
| - |
56 |
| - $ ./xdag -i |
57 |
| - xdag> help |
58 |
| - [see help] |
59 |
| - |
60 |
| -- See if you are connected to the pool: |
61 |
| - |
62 |
| - xdag> state |
63 |
| - [see state] |
64 |
| - |
65 |
| -- See your balance: |
66 |
| - |
67 |
| - xdag> balance |
68 |
| - [balance] |
69 |
| - |
70 |
| -- See your address: |
71 |
| - |
72 |
| - xdag> account |
73 |
| - [address] |
74 |
| - |
75 |
| -- Transfer funds to another address: |
76 |
| - |
77 |
| - xdag> xfer [amount] [address] |
78 |
| - |
79 |
| - |
80 |
| -Run (Mac OS): |
81 |
| ------------------------ |
82 |
| - |
83 |
| -- Install: |
84 |
| -Download binary file from [release page](https://github.com/XDagger/xdag/releases). |
85 |
| -Unzip the zip file to what folder you want. |
86 |
| - |
87 |
| -- Run, for example, the miner with 2 CPU mining threads, in daemon mode, connected to the pool put.xdag.server.here:13654 |
88 |
| - |
89 |
| - $ ./xdag -m 2 -d put.xdag.server.here:13654 |
90 |
| - Enter random characters: [enter] |
91 |
| - |
92 |
| -- Already have an account |
93 |
| -Put your wallet.dat, dnet_key.dat and storage folder in this folder. |
94 |
| -Then run below command |
95 |
| - |
96 |
| - $./xdag -m 2 -d put.xdag.server.here:13654 |
97 |
| - |
98 |
| -- Run terminal connected to the daemon in the same folder: |
99 |
| - |
100 |
| - $ ./xdag -i |
101 |
| - xdag> help |
102 |
| - [see help] |
103 |
| - |
104 |
| -- See if you are connected to the pool: |
105 |
| - |
106 |
| - xdag> state |
107 |
| - [see state] |
108 |
| - |
109 |
| -- See your balance: |
110 |
| - |
111 |
| - xdag> balance |
112 |
| - [balance] |
113 |
| - |
114 |
| -- See your address: |
115 |
| - |
116 |
| - xdag> account |
117 |
| - [address] |
118 |
| - |
119 |
| -- Transfer funds to another address: |
120 |
| - |
121 |
| - xdag> xfer [amount] [address] |
122 |
| - |
123 |
| -Build (Mac Os): |
124 |
| ------------------------ |
125 |
| -- Install dependencies: |
126 |
| - |
127 |
| - $ brew install openssl |
128 |
| - $ ln -s /usr/local/opt/openssl/include/openssl /usr/local/include |
129 |
| - $ ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/ |
130 |
| - |
131 |
| -- Make |
132 |
| - |
133 |
| - $ cd xdag/client |
134 |
| - $ make |
| 20 | +- [How to get a wallet](https://github.com/XDagger/xdag/wiki/Get-a-wallet) |
| 21 | +- [How to getting started](https://github.com/XDagger/xdag/wiki/Getting-started) |
| 22 | +- [How to find pools](https://github.com/XDagger/xdag/wiki/Mineable-Pool-List) |
| 23 | +- [How to contribute](https://github.com/XDagger/xdag/blob/master/Contributing.md) |
135 | 24 |
|
| 25 | +Docs: |
| 26 | +---------- |
| 27 | +- [Whitepaper](https://github.com/XDagger/xdag/blob/master/WhitePaper.md) [中文版](https://github.com/XDagger/xdag/blob/master/WhitePaper%20zh-cn.md) |
| 28 | +- [Protocol](https://github.com/XDagger/xdag/blob/master/Protocol.md) [中文版](https://github.com/XDagger/xdag/blob/master/Protocol-cn.md) |
| 29 | +- [License](https://github.com/XDagger/xdag/blob/master/LICENSE) |
136 | 30 |
|
137 | 31 | Main chain idea:
|
138 | 32 | ---------------
|
@@ -192,3 +86,5 @@ Maintainers:
|
192 | 86 | ---------------
|
193 | 87 | [Evgeniy](https://github.com/jonano614) ( XDAG: gKNRtSL1pUaTpzMuPMznKw49ILtP6qX3, BTC: 1Jonano4esJzZvqNtUY6NwfPme3EMpVs7n )
|
194 | 88 | [Frozen](https://github.com/xrdavies) ( XDAG: +L5dzSh1QZv1We3wi8Of31M8eHwQJq4K )
|
| 89 | + |
| 90 | +[Full list of contributors](https://github.com/XDagger/xdag/blob/master/CONTRIBUTORS.md) |
0 commit comments