-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
deployJar {
endpoints {
local {
uri = 'http://localhost:9082/api/v3'
nid = 0x3
}
}
keystore = './mykey.json'
password = 'keypass'
parameters {
arg('name', 'Alice')
}
}The current format allows a keystore and a password field which is useful, but it becomes useless whenever you need to manage multiple keys on different networks.
Would it be possible to move this field in the network section, in order to be able to use different keys without modifying the gradle.build file ?
Suggestion :
deployJar {
endpoints {
local {
uri = 'http://localhost:9082/api/v3'
nid = 0x3
keystore = './mykey-local.json'
password = 'keypass'
}
sejong {
uri = 'https://sejong.net.solidwallet.io/api/v3'
nid = 0x83
keystore = './mykey-sejong.json'
password = 'keypass'
}
}
parameters {
arg('name', 'Alice')
}
}Metadata
Metadata
Assignees
Labels
No labels