{% extends "base.html.jinja" %} {% block bodyclasses %}no-sidebar{% endblock %} {% block mainclasses %}page-dev-tools{% endblock %} {% block main %}

{% trans %}Use the developer tools to test, explore, and validate XRP Ledger API requests and behavior.{% endtrans %}

{% trans %}Dev Tools{% endtrans %}

{% set explorers_tools =[ { "id": "xrp-explorer", "title": "XRPL Explorer", "description": "View validations of new ledger versions in real-time, or chart the location of servers in the XRP Ledger.", "href": "https://livenet.xrpl.org", "img": "img/dev-tools/explorer.png" }, { "id": "bithomp-explorer", "title": "Bithomp Explorer", "description": "Explore public ledger data including accounts' transaction history and known names.", "href": "https://bithomp.com/", "img": "img/dev-tools/bithomp.png" }, { "id": "xrpscan", "title": "XRPScan", "description": "Explore ledger activity, view amendment voting in real-time, and get account information. API access is also available.", "href": "https://xrpscan.com/", "img": "img/dev-tools/xrpscan.png" }, { "id": "token-list", "title": "Token List", "description": "See all tokens issued in the XRP Ledger and use preset tools to issue custom tokens at the click of a button.", "href": "https://xumm.community/tokens", "img": "img/dev-tools/tokenlist.png" }, ] %}

{% trans %}Explorers{% endtrans %}

{% for card in explorers_tools%} {% if card.img %}{{card.title}} Screenshot{% endif %}

{{card.title}}

{{card.description}}

{% endfor %}

{% trans %}API Access{% endtrans %}

{% set api_access_tools = [ { "id": "websocket", "title": "WebSocket Tool", "description": "Send sample requests and get responses from the rippled API. ", "href": "websocket-api-tool.html", "img": "img/dev-tools/websocket-tool.png" }, { "id": "rpc", "title": "RPC Tool", "description": "Print raw information about an XRP Ledger account, transaction, or ledger.", "href": "xrp-ledger-rpc-tool.html", "img": "img/dev-tools/rpc-tool.png" }, { "id": "technical-explorer", "title": "Technical Explorer", "description": "Browse API objects from the ledger with real-time updates. ", "href": "https://explorer.xrplf.org/", "img": "img/dev-tools/technical-explorer.png" }, { "id": "faucets", "title": "Faucets", "description": "Get credentials and test-XRP for XRP Ledger Testnet or Devnet.", "href": "xrp-testnet-faucet.html", "img": "img/dev-tools/faucets.png" }, { "id": "trasaction-sender", "title": "Transaction Sender", "description": "Test how your code handles various XRP Ledger transactions by sending them over the Testnet to the address.", "href": "tx-sender.html", "img": "img/dev-tools/transaction-sender.png" }, ]%}
{% for card in api_access_tools %} {% if card.img %}{{card.title}} Screenshot{% endif %}

{{card.title}}

{{card.description}}

{% endfor %}

{% trans %}Other{% endtrans %}

{% set other = [ { "id": "domain", "title": "Domain Verification Checker", "description": "Verify your validator's domain.", "href": "validator-domain-verifier.html", "img": "img/dev-tools/domain-checker.png" }, { "id":"xrp-ledger", "title": "xrp-ledger.toml Checker", "description": "Verify that your xrp-ledger.toml file is set up properly.", "href": "xrp-ledger-toml-checker.html", "img": "img/dev-tools/toml-checker.png" }, { "id": "binary-visualizer", "title": "Binary Visualizer", "description": "Parse the XRP Ledger's native binary format with a visual representation breaking down the raw structure into its parts.", "href": "https://richardah.github.io/xrpl-binary-visualizer/", "img": "img/dev-tools/binary-visualizer.png" }, { "id": "token-metadata-lookup", "title": "Token Metadata Lookup", "description": "Query known information about any token issued on the XRP Ledger.", "href": "https://xrplmeta.org/", "img": "img/dev-tools/token-metadata.png" }, ]%}

{% trans %}Have an Idea For a Tool?{% endtrans %}

{% trans %}Contribute to the XRP Ledger community by submitting your idea for a tool or open a pull request if you've developed a tool.{% endtrans %}

{% trans %}Open a pull Request{% endtrans %}
{% endblock %}