mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-10 21:11:21 +00:00
88 lines
2.6 KiB
JSON
88 lines
2.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"validate_mnemonic": {
|
|
"type": "object",
|
|
"properties": {
|
|
"err_invalid_mnemonic": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"err_invalid_mnemonic"
|
|
]
|
|
},
|
|
"existing_mnemonic": {
|
|
"type": "object",
|
|
"properties": {
|
|
"arg_existing_mnemonic": {
|
|
"type": "object",
|
|
"properties": {
|
|
"help": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"help"
|
|
]
|
|
},
|
|
"arg_mnemonic": {
|
|
"type": "object",
|
|
"properties": {
|
|
"help": {
|
|
"type": "string"
|
|
},
|
|
"prompt": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"help",
|
|
"prompt"
|
|
]
|
|
},
|
|
"arg_mnemonic_password": {
|
|
"type": "object",
|
|
"properties": {
|
|
"help": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"help"
|
|
]
|
|
},
|
|
"arg_validator_start_index": {
|
|
"type": "object",
|
|
"properties": {
|
|
"help": {
|
|
"type": "string"
|
|
},
|
|
"prompt": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"help",
|
|
"prompt"
|
|
]
|
|
},
|
|
"msg_mnemonic_password_confirm": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"arg_existing_mnemonic",
|
|
"arg_mnemonic",
|
|
"arg_mnemonic_password",
|
|
"arg_validator_start_index",
|
|
"msg_mnemonic_password_confirm"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"validate_mnemonic",
|
|
"existing_mnemonic"
|
|
]
|
|
} |