mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-09 04:21:21 +00:00
56 lines
1.4 KiB
JSON
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"
|
|
]
|
|
} |