Retrieves producers list
total number of producers to retrieve
In conjunction with limit can be used to paginate through the results. For example, limit=10 and lower_bound=10 would be page 2
return result in JSON format
POST /v1/chain/get_producers HTTP/1.1 Host: eos.nownodes.io Content-Type: application/json Accept: */* Content-Length: 49 { "limit": "text", "lower_bound": "text", "json": true }
OK
{ "active": [ { "version": 1, "producers": [ { "producer_name": "text", "block_signing_key": "text" } ] } ], "pending": [ { "version": 1, "producers": [ { "producer_name": "text", "block_signing_key": "text" } ] } ], "proposed": [ { "version": 1, "producers": [ { "producer_name": "text", "block_signing_key": "text" } ] } ] }