staking-deposit-cli/tests/test_intl/schemas/credentials.json
2021-04-07 13:13:14 +02:00

56 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"from_mnemonic": {
"type": "object",
"properties": {
"msg_key_creation": {
"type": "string"
}
},
"required": [
"msg_key_creation"
]
},
"export_keystores": {
"type": "object",
"properties": {
"msg_keystore_creation": {
"type": "string"
}
},
"required": [
"msg_keystore_creation"
]
},
"export_deposit_data_json": {
"type": "object",
"properties": {
"msg_depositdata_creation": {
"type": "string"
}
},
"required": [
"msg_depositdata_creation"
]
},
"verify_keystores": {
"type": "object",
"properties": {
"msg_keystore_verification": {
"type": "string"
}
},
"required": [
"msg_keystore_verification"
]
}
},
"required": [
"from_mnemonic",
"export_keystores",
"export_deposit_data_json",
"verify_keystores"
]
}