### Test DOB-Decoder JsonRpc Server with Curl Source: https://github.com/sporeprotocol/dob-decoder-standalone-server/blob/master/README.md Example `curl` command to send a `dob_decode` JsonRpc request to the running server. This demonstrates how to interact with the server's API, passing a Spore ID as a parameter. Remember to replace the placeholder with an actual Spore ID. ```bash echo '{ "id": 2, "jsonrpc": "2.0", "method": "dob_decode", "params": [ "" ] }' \ | curl -H 'content-type: application/json' -d @- \ http://localhost:8090 ``` -------------------------------- ### Launch DOB-Decoder JsonRpc Server Source: https://github.com/sporeprotocol/dob-decoder-standalone-server/blob/master/README.md Command to run the DOB-Decoder JsonRpc server. This command enables debug logging for the `dob_decoder_server` module, requiring the project to be built with the `standalone_server` feature enabled. ```bash $ RUST_LOG=dob_decoder_server=debug cargo run ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.