"/inscriptions/block/:height", get(Self::inscriptions_in_block), ) .route( "/inscriptions/block/:height/:page", get(Self::inscriptions_in_block_paginated), ) .route("/install.sh", get(Self::install_script)) .route("/ordinal/:sat", get(Self::ordinal)) .route("/output/:output", get(Self::output)) .route("/preview/:inscription_id", get(Self::preview)) .route("/r/blockhash", get(Self::block_hash_json)) .route( "/r/blockhash/:height", get(Self::block_hash_from_height_json), ) .route("/r/blockheight", get(Self::block_height)) .route("/r/blocktime", get(Self::block_time)) .route("/r/children/:inscription_id", get(Self::children_recursive)) .route( "/r/children/:inscription_id/:page", get(Self::children_recursive_paginated), ) .route("/r/metadata/:inscription_id", get(Self::metadata)) .route("/r/sat/:sat_number", get(Self::sat_inscriptions))