File tree 3 files changed +10
-6
lines changed
dpp/src/main/java/org/dashj/platform
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 7
7
8
8
package org.dashj.platform.dapiclient
9
9
10
+ import org.bitcoinj.core.Sha256Hash
10
11
import org.dashj.platform.dpp.identifier.Identifier
11
12
12
13
object SystemIds {
13
- val dpnsOwnerId = Identifier .from(" 4EfA9Jrvv3nnCFdSf7fad59851iiTRZ6Wcu6YVJ4iSeF " )
14
+ val dpnsOwnerId = Identifier .from(Sha256Hash . ZERO_HASH )
14
15
val dpnsDataContractId = Identifier .from(" GWRSAVFMjXx8HpQFaNJMqBV7MBgMK4br5UESsB4S31Ec" )
15
- val dashpayOwnerId = Identifier .from(" 5PhRFRrWZc5Mj8NqtpHNXCmmEQkcZE8akyDkKhsUVD4k " )
16
+ val dashpayOwnerId = Identifier .from(Sha256Hash . ZERO_HASH )
16
17
val dashpayDataContractId = Identifier .from(" Bwr4WHCPz5rFVAD87RqTs3izo4zpzwsEdKPWUT1NS1C7" )
18
+ val walletUtilsOwnerId = Identifier .from(Sha256Hash .ZERO_HASH )
19
+ val walletUtilsDataContractId = Identifier .from(" 7CSFGeF4WNzgDmx94zwvHkYaG3Dx4XEe5LFsFgJswLbm" )
17
20
}
Original file line number Diff line number Diff line change @@ -77,16 +77,17 @@ class Platform(val params: NetworkParameters) {
77
77
init {
78
78
apps[" dpns" ] = ClientAppDefinition (SystemIds .dpnsDataContractId)
79
79
apps[" dashpay" ] = ClientAppDefinition (SystemIds .dashpayDataContractId)
80
+ apps[" wallet-utils" ] = ClientAppDefinition (SystemIds .walletUtilsDataContractId)
80
81
when {
81
82
params.id.contains(" test" ) -> {
82
83
useWhiteList = true
83
- apps[" dashwallet " ] = ClientAppDefinition (" Bhptm3yBDhLkRNt7ofjpwaBHhMUKjDrQoPufKzQaxmpK" )
84
+ apps[" identity-verify " ] = ClientAppDefinition (" Bhptm3yBDhLkRNt7ofjpwaBHhMUKjDrQoPufKzQaxmpK" )
84
85
}
85
86
params.id.contains(" bintang" ) -> {
86
- apps[" dashwallet " ] = ClientAppDefinition (" Fds5DDfXoLwpUZ71AAVYZP1uod8S7Ze2bR28JExBvZKR" )
87
+ apps[" identity-verify " ] = ClientAppDefinition (" Fds5DDfXoLwpUZ71AAVYZP1uod8S7Ze2bR28JExBvZKR" )
87
88
}
88
89
params.id.contains(" production" ) -> {
89
- apps[" dashwallet " ] = ClientAppDefinition (" EVKMFboB3QBUa9Jo7PP5bsLyohzUz8zvw5c2gJs1SfcX" )
90
+ apps[" identity-verify " ] = ClientAppDefinition (" EVKMFboB3QBUa9Jo7PP5bsLyohzUz8zvw5c2gJs1SfcX" )
90
91
}
91
92
}
92
93
System .loadLibrary(" sdklib" )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class IdentityVerify(
27
27
) {
28
28
29
29
companion object {
30
- const val DOCUMENT : String = " dashwallet .identityVerify"
30
+ const val DOCUMENT : String = " identity-verify .identityVerify"
31
31
private val log = LoggerFactory .getLogger(IdentityVerify ::class .java)
32
32
}
33
33
You can’t perform that action at this time.
0 commit comments