fix: add supported columns as an array instead of bool #479
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Before:
{ "clients": [ { "client_name": "rpc-prysm-geth-001", "client_type": "prysm", "version": "Prysm/v6.0.5-rc.1 (linux amd64)", "peer_id": "16Uiu2HAkxed8bxumU9PsWoYrr8jVuVs67WLz6Q7xFct99nfGPzZT", "node_id": "16Uiu2HAkxed8bxumU9PsWoYrr8jVuVs67WLz6Q7xFct99nfGPzZT", "enr": "enr:-Ni4QKsVUwMH3mspW7EojCMA6s3rNdBYBKL2TEXBmjc4brzYQdVR8rnfzpBYCJ5KCew7lTIeO_758g6xDw5oEQd8wbyGAZhl9qK7h2F0dG5ldHOIAAAAAAAAgAGDY2djBIRldGgykM6FLXBwICNh__________-CaWSCdjSCaXCE0SZLXYNuZmSEAAAAAIRxdWljgjLIiXNlY3AyNTZrMaECL-RkFI5TvjbslC-UheHuvIX4dDbLoAX9tH1IRmvA_L6Ic3luY25ldHMAg3RjcIJ9Y4N1ZHCCfWM", "enr_decoded": { "attnets": "0x0000000000008001", "cgc": "0x04", "eth2": "0xce852d7070202361ffffffffffffffff", "id": "v4", "ip": "209.38.75.93", "nfd": "0x00000000", "quic": "13000", "secp256k1": "0x022fe464148e53be36ec942f9485e1eebc85f87436cba005fdb47d48466bc0fcbe", "seq": 1754057319099, "signature": "0xab15530307de6b295bb1288c2300eacdeb35d05804a2f64c45c19a37386ebcd841d551f2b9dfce9058089e4a09ec3b95321e3bfef9f20eb10f0e6811077cc1bc", "syncnets": "0x00", "tcp": "32099", "udp": "32099" }, "head_slot": 403375, "head_root": "0690fad1f50f4d83b7c570d7adc003f11bdfbc1f1a8f423f639ce448847b06b5", "status": "optimistic", "peer_count": 28, "peers_inbound": 0, "peers_outbound": 28, "last_refresh": "2025-09-17T15:08:46.61918894Z", "supports_data_column": false, "metadata": { "attnets": "0x0000000000008001", "syncnets": "0x00", "seq_number": "13", "custody_group_count": "4" } },After:
{ "clients": [ { "client_name": "cl-1-lighthouse-geth", "client_type": "lighthouse", "version": "Lighthouse/v7.1.0-5928407/aarch64-linux", "peer_id": "16Uiu2HAm35ZpXQByqLyj65ZcsonCUBsfHNwAnGQT4Dcwjy81N4oV", "node_id": "16Uiu2HAm35ZpXQByqLyj65ZcsonCUBsfHNwAnGQT4Dcwjy81N4oV", "enr": "enr:-Ou4QBHL8uYFqpUBzADjGFHiuq7aDz7ymm9v-2sV3SG-EddKciozWrP06LZ54-vgoOmzw7DT4knyMXrgyb9AM0JkRvUDh2F0dG5ldHOIAAAAABgAAACDY2djBIZjbGllbnTRikxpZ2h0aG91c2WFNy4xLjCEZXRoMpDOhS1wcCAjYf__________gmlkgnY0gmlwhKwQAAyDbmZkhM6FLXCEcXVpY4IjKYlzZWNwMjU2azGhAnG26hC-6fsYr8N7lQN1cZAnl7d-yHVTGvz-7E3RLZGciHN5bmNuZXRzAIN0Y3CCIyiDdWRwgiMo", "enr_decoded": { "attnets": "0x0000000018000000", "cgc": "0x04", "client": "Lighthouse, 7.1.0", "eth2": "0xce852d7070202361ffffffffffffffff", "id": "v4", "ip": "172.16.0.12", "nfd": "0xce852d70", "quic": "9001", "secp256k1": "0x0271b6ea10bee9fb18afc37b95037571902797b77ec875531afcfeec4dd12d919c", "seq": 3, "signature": "0x11cbf2e605aa9501cc00e31851e2baaeda0f3ef29a6f6ffb6b15dd21be11d74a722a335ab3f4e8b679e3ebe0a0e9b3c3b0d3e249f2317ae0c9bf4033426446f5", "syncnets": "0x00", "tcp": "9000", "udp": "9000" }, "head_slot": 403389, "head_root": "3e9d11459eb1a20b097d8589c89e00ddc646ecf008b51d5baf58a285cf32ce2e", "status": "optimistic", "peer_count": 27, "peers_inbound": 0, "peers_outbound": 27, "last_refresh": "2025-09-17T17:07:53.276408+02:00", "data_columns": [ 3, 35, 42, 107 ], "metadata": { "attnets": "0x0000000018000000", "syncnets": "0x00", "seq_number": "2", "custody_group_count": "4" } },