Wormhole · Schema
heartbeats.RawHeartbeat
Cross-ChainBlockchainInteroperabilityDeFiToken TransfersMessagingWeb3
Properties
| Name | Type | Description |
|---|---|---|
| bootTimestamp | string | |
| counter | string | |
| features | array | |
| guardianAddr | string | |
| networks | array | |
| nodeName | string | |
| timestamp | string | |
| version | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.wormholescan.io/schemas/heartbeats-rawheartbeat",
"title": "heartbeats.RawHeartbeat",
"type": "object",
"properties": {
"bootTimestamp": {
"type": "string"
},
"counter": {
"type": "string"
},
"features": {
"type": "array",
"items": {
"type": "string"
}
},
"guardianAddr": {
"type": "string"
},
"networks": {
"type": "array",
"items": {
"$ref": "#/definitions/heartbeats.HeartbeatNetworkResponse"
}
},
"nodeName": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"version": {
"type": "string"
}
}
}