Skip to content

Commit e2f3b84

Browse files
author
Jelurida
committed
2.0.10
1 parent 4afbc6a commit e2f3b84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1487
-167
lines changed

ArdorNxtComparison.pdf

3.42 MB
Binary file not shown.

Ardor_Wallet.url

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=http://localhost:26876/
2+
URL=http://localhost:27876/

DEVELOPERS-GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
## Tools and Tips ##
1414
### Usable URLs ###
1515

16-
- **API** - http://localhost:26876/test
17-
- **DB Interface** - http://localhost:26876/dbshell
18-
- **Java Class Browser** - http://localhost:26876/doc
16+
- **API** - http://localhost:27876/test
17+
- **DB Interface** - http://localhost:27876/dbshell
18+
- **Java Class Browser** - http://localhost:27876/doc
1919

2020
### Database ###
2121

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ in such a way that no trusted third parties are required anymore.
3535
- Window: `run.bat`
3636

3737
- wait for the JavaFX wallet window to open
38-
- on platforms without JavaFX, open http://localhost:26876/ in a browser
38+
- on platforms without JavaFX, open http://localhost:27876/ in a browser
3939

4040
----
4141
## Compile it! ##

README.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ supported.
3030
The initialization takes a few seconds. When it is ready, you should see the
3131
message "Ardor server 2.x.x started successfully" in the console log. If run in
3232
desktop mode, a JavaFX window will open automatically. Otherwise, open a
33-
browser, without stopping the java process, and go to http://localhost:26876 ,
33+
browser, without stopping the java process, and go to http://localhost:27876 ,
3434
where the Ardor UI should now be available.
3535

3636
To stop the application, type Ctrl-C inside the console window, or use the
@@ -79,13 +79,13 @@ close the browser but keep the java process running. If you want to keep
7979
forging, make sure you do not click on "stop forging" when logging out. You can
8080
also just close the browser without logging out.
8181

82-
The java process communicates with peers on port 26874 tcp by default. If you
82+
The java process communicates with peers on port 27874 tcp by default. If you
8383
are behind a router or a firewall and want to have your node accept incoming
8484
peer connections, you should setup port forwarding. The server will still work
8585
though even if only outgoing connections are allowed, so opening this port is
8686
optional.
8787

88-
The user interface is available on port 26876. This port also accepts http API
88+
The user interface is available on port 27876. This port also accepts http API
8989
requests which other Ardor client applications could use.
9090

9191
The blockchain is stored on disk using the H2 embedded database, inside the
@@ -107,17 +107,17 @@ which you see in the console window, but also to a file nxt.log, which gets
107107
overwritten at restart. In case of an error, the nxt.log file may contain
108108
helpful information, so include its contents when submitting a bug report.
109109

110-
In addition to the default user interface at http://localhost:26876 , the
110+
In addition to the default user interface at http://localhost:27876 , the
111111
following urls are available:
112112

113-
http://localhost:26876/test - a list of all available http API requests, very
113+
http://localhost:27876/test - a list of all available http API requests, very
114114
useful for client developers and for anyone who wants to execute commands
115115
directly using the http interface without going through the browser UI.
116116

117-
http://localhost:26876/test?requestType=<specificRequestType> - same as above,
117+
http://localhost:27876/test?requestType=<specificRequestType> - same as above,
118118
but only shows the form for the request type specified.
119119

120-
http://localhost:26876/doc - a javadoc documentation for client developers who
120+
http://localhost:27876/doc - a javadoc documentation for client developers who
121121
want to use the Java API directly instead of going through the http interface.
122122

123123

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
This is a bugfix release, mandatory update for all nodes.
2+
3+
Fixed an issue with block pop-off handling, which can result in a node unable
4+
to continue downloading the blockchain after encountering an error condition.
5+
6+
Fixed processing of alias transfer transactions.
7+
8+
Fixed exchange price handling affecting some coin exchange trades.
9+
10+
Show correct total coin amounts for each chain.
11+
12+
Other minor bugfixes and improvements.
13+
14+
This release will perform a database rescan.
15+

changelogs/ardor-client-2.0.9.changelog.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

changelogs/changelog.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
ardor-client-2.0.9:
2+
3+
First production release of the Ardor Blockchain Platform.
4+
5+
The Ardor Genesis Snapshot has been taken at Nxt blockchain height of 1636363.
6+
7+
The Genesis timestamp is set to 00:00:00 UTC, Jan 1st 2018. Everyone with ARDR
8+
balance >= 1000 is invited to setup a node and start forging. Block generation
9+
will start automatically when the Genesis timestamp is reached. In the meantime,
10+
please check your balances and report any discrepancies from what you expected.
11+
12+
To simplify processing of phased transactions, the getExecutedTransactions API
13+
now returns the transactions ordered by the height at which they were executed,
14+
not at which they were included in the blockchain.
15+
16+
17+
--------------------------------------------------------------------------------
118
ardor-client-2.0.8e:
219

320
This release is a mandatory upgrade for all Ardor testnet nodes. It involves a

changelogs/nxt-changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
nxt-client-1.11.12:
2+
3+
Fixed peer disconnections while downloading the blockchain. Upgrade to this
4+
release is recommended for all public nodes, to help improve download speeds.
5+
6+
Snapshot code bugfixes. Added a checkpoint after the snapshot hardfork.
7+
8+
Made all toLowerCase/toUpperCase conversions locale insensitive. Should fix the
9+
problems with running Nxt under Turkish locale.
10+
11+
Updated Bouncy Castle to version 1.59.
12+
13+
14+
--------------------------------------------------------------------------------
115
nxt-client-1.11.11:
216

317
Peer networking improvements, increased nxt.maxNumberOfInboundConnections to

conf/nxt-default.properties

Lines changed: 76 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,72 @@ nxt.myPlatform=
7171
# Default initial peers. Only used if nxt.usePeersDb=true.
7272
# Do not modify. Add custom peers to nxt.wellKnownPeers instead.
7373
nxt.defaultPeers=ardor.jelurida.com; petko.ddns.net; 80.211.143.216; \
74-
162.243.242.8; 78.63.207.76; 212.47.230.195; 51.15.42.150; 80.211.167.215
74+
162.243.242.8; 78.63.207.76; 212.47.230.195; 51.15.42.150; 80.211.167.215; \
75+
70.73.15.237; 92.2.201.39; 193.151.106.129; 124.171.19.186; 167.114.233.211; \
76+
212.237.98.178; 73.55.103.252; 66.131.127.57; 216.114.238.53; \
77+
80.211.167.215; 83.128.254.163; 188.102.197.43; 111.94.161.152; \
78+
87.15.196.27; 37.110.2.140; 116.212.209.243; 70.50.11.244; 64.121.225.42; \
79+
60.243.220.61; 134.119.222.50; 68.118.200.29; 31.208.48.104; 83.86.237.113; \
80+
84.24.30.185; 190.117.133.172; 2.92.228.176; 86.20.84.94; 104.34.103.197; \
81+
89.241.99.179; 72.200.192.216; node3.ardor.allea.rs; 2.30.155.93; \
82+
76.169.19.151; 159.89.12.168; 188.166.27.111; 78.192.82.25; 70.119.109.107; \
83+
95.189.100.240; 188.192.25.181; 217.101.84.141; 71.11.130.33; 159.89.38.150; \
84+
68.6.172.110; 87.121.114.206; 68.224.94.129; 77.169.0.179; 111.201.214.210; \
85+
104.175.67.6; 213.144.130.91; 210.187.160.28; 71.244.157.236; 50.45.212.225; \
86+
100.8.14.225; 185.19.122.5; 145.133.145.174; 67.2.197.136; 24.225.204.112; \
87+
ardor.cloudtwentysix.com; 24.23.64.222; 60.53.202.248; 203.218.76.129; \
88+
158.140.204.77; 180.57.214.60; 75.159.98.190; 82.74.133.44; 70.50.245.111; \
89+
lt001.ardor-nodes.net; 173.76.182.111; 84.105.40.25; 71.95.93.175; \
90+
196.210.206.56; 24.60.23.196; 96.91.154.9; 88.151.148.10; 121.167.171.158; \
91+
81.235.59.21; 86.250.234.9; 220.134.112.220; 75.118.205.109; 123.243.128.26; \
92+
99.250.106.16; 173.72.28.122; 138.197.3.59; 218.101.103.212; 84.120.12.58; \
93+
82.216.134.174; 163.172.161.7; 47.21.203.242; 89.71.202.190; 67.174.102.132; \
94+
31.214.157.83; 70.93.111.211; 46.101.162.153; 73.42.211.134; 93.123.82.39; \
95+
197.215.155.253; 35.169.219.150; 47.188.46.141; 83.202.211.202; \
96+
79.130.211.17; 125.130.57.121; 75.152.18.1; 217.182.72.43; 188.61.126.99; \
97+
188.134.16.253; 70.191.32.28; 76.118.242.101; 173.180.193.178; \
98+
178.162.63.137; 188.226.149.204; 121.45.190.23; core.blackbeam.org; \
99+
184.167.48.11; 76.183.102.245; 90.156.35.218; 96.20.122.171; 185.223.28.191; \
100+
61.68.189.141; 81.98.3.233; 74.67.4.88; 72.185.77.253; 65.255.81.44; \
101+
nxt-node1.towerco.in; 222.112.84.69; 23.227.199.146; 97.116.75.239; \
102+
nxt.notbot.me; 163.172.166.207; 84.25.187.102; 73.64.19.27; 62.163.60.149; \
103+
111.94.200.114; 181.197.95.194; 134.41.1.227; 54.36.183.59; 78.168.117.7; \
104+
71.198.7.19; 5.132.116.162; 217.182.89.35; 185.170.113.79; 82.176.29.249; \
105+
72.49.230.3; 83.82.121.113; ardor.invest-as-a-service.com; \
106+
zuqka.duckdns.org; 70.112.46.52; 174.45.145.220; 104.173.154.249; \
107+
83.77.103.243; 173.246.223.247; 68.231.34.177; 216.155.128.10; \
108+
128.74.148.99; 83.160.118.145; 58.6.182.68; ardor.noip.me; 24.243.60.61; \
109+
117.55.146.147; crypto.servep2p.com; 70.112.179.34; 87.74.40.12; \
110+
49.64.240.31; lt002.ardor-nodes.net; 93.77.28.64; 116.86.176.21; \
111+
100.4.70.172; 67.184.181.192; 50.83.101.94; 68.173.44.222; 71.80.107.219; \
112+
73.194.145.125; 24.131.186.44; 82.136.110.104; byteball.me; 107.210.187.82; \
113+
68.55.113.74; 47.197.42.46; 70.55.161.204; 96.37.113.212; 92.228.146.53; \
114+
180.181.155.61; 162.243.242.8; 68.111.204.54; 79.22.251.243; 193.70.78.227; \
115+
203.214.107.167; 122.148.255.5; ardor.mooo.com; 121.213.5.186; \
116+
76.167.116.210; 201.143.28.247; 75.108.77.128; 5.147.93.76; 89.109.86.148; \
117+
152.208.109.168; 105.227.107.30; 107.185.228.165; 76.26.240.242; \
118+
24.231.149.184; 67.160.51.174; 116.42.114.68; 101.162.17.14; 67.252.19.7; \
119+
45.74.160.233; 106.69.146.171; 66.190.86.121; 45.77.53.208; 108.61.197.5; \
120+
70.54.118.153; 93.51.9.13; 83.83.94.5; 217.61.105.116; 108.161.166.82; \
121+
31.148.74.131; 107.145.148.102; 74.62.177.25; enricoip.no-ip.biz; \
122+
46.49.90.173; 217.168.66.129; aws.scripterron.org; blackbytes.me; \
123+
178.44.104.155; node1.ardor.allea.rs; 162.193.147.190; 24.212.170.143; \
124+
90.205.225.208; 70.173.109.43; 24.205.20.217; 173.218.255.109; \
125+
71.163.186.107; 89.217.49.195:7874; 79.136.84.213; 210.183.166.222; \
126+
188.235.1.88; 109.167.144.141; 173.53.9.32; 71.93.159.110; 135.23.109.43; \
127+
139.255.100.236; 217.121.42.42; 54.87.194.80; 91.211.133.19; \
128+
167.160.191.196; 83.77.242.76; 119.28.20.120; 104.192.210.14; \
129+
116.86.127.197; 103.250.83.127; 86.125.236.144; 74.98.232.209; \
130+
198.58.112.156; 73.228.206.228; 67.240.88.162; 73.35.206.218; 69.159.60.196; \
131+
67.171.233.195; brangdon.duckdns.org; 80.211.143.216; \
132+
ardor.crypto-nodes.net; 87.178.80.243; 98.193.221.47; 217.182.94.113; \
133+
72.132.119.231; 61.247.42.61; 24.240.49.21; ardor.aliefe.org; 86.17.121.86; \
134+
184.89.15.8; 181.122.196.206; 121.161.137.164; 73.149.191.2; 47.93.126.216; \
135+
83.76.130.254; 185.16.60.171; 24.7.232.24; 107.185.51.104; 163.172.146.55; \
136+
213.73.198.128; 109.105.170.9; 108.7.179.231; 76.2.163.206; 71.38.248.85; \
137+
117.48.214.51; nxt.miasik.tk; ardor.bamdwurn.tk; 176.15.18.70; \
138+
49.176.238.70; 144.217.162.55; 79.165.246.156; 73.101.240.12; 94.214.227.62; \
139+
180.92.77.98; 81.197.194.120; 84.104.196.148; 51.15.56.127; 47.208.178.86;
75140

76141
# A list of well known peer addresses / host names, separated by '; '. These
77142
# peers are always selected first when creating outbound connections.
@@ -83,12 +148,15 @@ nxt.knownBlacklistedPeers=
83148

84149
# Default initial peers used for testnet only. Only used if nxt.usePeersDb=true.
85150
# Do not modify. Add custom testnet peers to nxt.testnetPeers instead.
86-
nxt.defaultTestnetPeers=testardor.jelurida.com; petko.ddns.net; 31.164.81.55; \
87-
zuqka.duckdns.org; 119.28.25.12; node1.ardor.allea.rs; 68.132.200.23; \
88-
node2.ardor.allea.rs; 144.217.162.55; 94.177.175.166; 82.9.0.245; \
89-
ardor.mooo.com; 93.186.255.53; 77.91.193.152; 85.11.147.38; \
90-
node3.ardor.allea.rs; 196.54.41.51; ardor.noip.me; 188.235.1.88; \
91-
164.132.45.10; 80.78.69.195; 80.211.143.216; 212.216.214.103;
151+
nxt.defaultTestnetPeers=testardor.jelurida.com; 36.74.90.210; 188.163.98.184; \
152+
86.85.60.51; 47.31.149.5; petko.ddns.net; 121.133.185.210; 61.94.222.137; \
153+
81.242.229.16; 73.166.19.247; 36.84.18.23; ardor.mooo.com; 103.61.253.240; \
154+
93.183.234.79; 86.160.3.14; 83.81.71.27; 97.100.206.122; ardor.noip.me; \
155+
202.80.213.121; 68.173.118.59; 176.105.214.86; 91.218.208.178; \
156+
114.124.144.143; 94.177.175.166; 82.9.0.245; 36.77.97.158; 202.67.41.227; \
157+
85.11.147.38; 14.191.107.217; 155.143.221.39; 27.32.146.25; 58.236.94.19; \
158+
118.99.78.16; 36.76.18.13; 36.84.13.105; 46.56.226.168; enricoip.no-ip.biz; \
159+
180.241.34.210;
92160

93161
# Well known testnet peers. These peers are always selected first when creating
94162
# outbound connections.
@@ -623,5 +691,5 @@ nxt.disableSecurityPolicy=false
623691
#nxt.customLoginWarning=
624692

625693
# NRS version.
626-
nxt.version=2.0.9
694+
nxt.version=2.0.10
627695

0 commit comments

Comments
 (0)