Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ validator_pubkeys = [
# OPTIONAL
loader = "./tests/data/mux_keys.example.json"
# loader = { url = "http://localhost:8000/keys" }
# loader = { registry = "lido", node_operator_id = 8 }
# loader = { registry = "lido", node_operator_id = 8, lido_module_id = 1 }
# loader = { registry = "ssv", node_operator_id = 8 }
late_in_slot_time_ms = 1500
timeout_get_header_ms = 900
Expand Down
37 changes: 37 additions & 0 deletions crates/common/src/abi/LidoCSModuleNORegistry.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"constant": true,
"inputs": [
{ "name": "nodeOperatorId", "type": "uint256" }
],
"name": "getNodeOperatorSummary",
"outputs": [
{ "name": "targetLimitMode", "type": "uint256" },
{ "name": "targetValidatorsCount", "type": "uint256" },
{ "name": "stuckValidatorsCount", "type": "uint256" },
{ "name": "refundedValidatorsCount", "type": "uint256" },
{ "name": "stuckPenaltyEndTimestamp", "type": "uint256" },
{ "name": "totalExitedValidators", "type": "uint256" },
{ "name": "totalDepositedValidators", "type": "uint256" },
{ "name": "depositableValidatorsCount", "type": "uint256" }
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "name": "nodeOperatorId", "type": "uint256" },
{ "name": "startIndex", "type": "uint256" },
{ "name": "keysCount", "type": "uint256" }
],
"name": "getSigningKeys",
"outputs": [
{ "name": "", "type": "bytes" }
],
"payable": false,
"stateMutability": "view",
"type": "function"
}
]
Loading