Skip to content

Commit 348963b

Browse files
[trello.com/c/XEj672SB] Update dynamic constants from remote repository
1 parent 5061545 commit 348963b

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

Adamant/Modules/Wallets/Adamant/AdmWalletService+DynamicConstants.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ extension AdmWalletService {
4646
}
4747

4848
var minNodeVersion: String? {
49-
"0.7.0"
49+
"0.8.0"
5050
}
5151

5252
static let explorerAddress = "https://explorer.adamant.im/tx/"
@@ -62,8 +62,9 @@ Node(url: URL(string: "https://debate.adamant.im")!, altUrl: URL(string: "http:/
6262
Node(url: URL(string: "http://78.47.205.206:36666")!),
6363
Node(url: URL(string: "http://5.161.53.74:36666")!),
6464
Node(url: URL(string: "http://184.94.215.92:45555")!),
65-
Node(url: URL(string: "https://node1.adamant.business")!),
65+
Node(url: URL(string: "https://node1.adamant.business")!, altUrl: URL(string: "http://194.233.75.29:45555")),
6666
Node(url: URL(string: "https://node2.blockchain2fa.io")!),
67+
Node(url: URL(string: "https://sunshine.adamant.im")!),
6768
]
6869
}
6970

Adamant/Modules/Wallets/Dash/DashWalletService+DynamicConstants.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ extension DashWalletService {
6161

6262
static var nodes: [Node] {
6363
[
64-
Node(url: URL(string: "https://dashnode1.adamant.im")!),
64+
Node(url: URL(string: "https://dashnode1.adamant.im")!, altUrl: URL(string: "http://45.85.147.224:44099")),
65+
Node(url: URL(string: "https://dashnode2.adamant.im")!, altUrl: URL(string: "http://207.180.210.95:44099")),
6566
]
6667
}
6768

Adamant/Modules/Wallets/Doge/DogeWalletService+DynamicConstants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ extension DogeWalletService {
6161

6262
static var nodes: [Node] {
6363
[
64-
Node(url: URL(string: "https://dogenode1.adamant.im")!),
64+
Node(url: URL(string: "https://dogenode1.adamant.im")!, altUrl: URL(string: "http://5.9.99.62:44099")),
6565
Node(url: URL(string: "https://dogenode2.adamant.im")!, altUrl: URL(string: "http://176.9.32.126:44098")),
6666
]
6767
}

Adamant/Modules/Wallets/Lisk/LskWalletService+DynamicConstants.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import CommonKit
44

55
extension LskWalletService {
66
// MARK: - Constants
7-
static let fixedFee: Decimal = 0.00142
7+
static let fixedFee: Decimal = 0.00164
88
static let currencySymbol = "LSK"
99
static let currencyExponent: Int = -8
1010
static let qqPrefix: String = "lisk"
@@ -61,13 +61,13 @@ extension LskWalletService {
6161

6262
static var nodes: [Node] {
6363
[
64-
Node(url: URL(string: "http://38.242.243.29:44099")!)
64+
Node(url: URL(string: "https://lisknode5.adamant.im")!, altUrl: URL(string: "http://38.242.243.29:44099")),
6565
]
6666
}
6767

6868
static var serviceNodes: [Node] {
6969
[
70-
Node(url: URL(string: "https://service.lisk.com")!)
70+
Node(url: URL(string: "https://liskservice5.adamant.im")!),
7171
]
7272
}
7373
}

CommonKit/Sources/CommonKit/AdamantDynamicResources.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ Node(url: URL(string: "https://debate.adamant.im")!, altUrl: URL(string: "http:/
1313
Node(url: URL(string: "http://78.47.205.206:36666")!),
1414
Node(url: URL(string: "http://5.161.53.74:36666")!),
1515
Node(url: URL(string: "http://184.94.215.92:45555")!),
16-
Node(url: URL(string: "https://node1.adamant.business")!),
16+
Node(url: URL(string: "https://node1.adamant.business")!, altUrl: URL(string: "http://194.233.75.29:45555")),
1717
Node(url: URL(string: "https://node2.blockchain2fa.io")!),
18+
Node(url: URL(string: "https://sunshine.adamant.im")!),
1819

1920
]
2021
}
21-
}
22+
}

0 commit comments

Comments
 (0)