<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Smartiecoin Public RPC</title><style>body{margin:0;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#f6f8fb;color:#111827}.wrap{max-width:920px;margin:0 auto;padding:56px 22px}.hero{border-top:6px solid #15b8a6;background:white;border-radius:8px;padding:34px;box-shadow:0 18px 50px rgba(15,23,42,.08)}h1{margin:0 0 10px;font-size:34px;line-height:1.1}.status{display:inline-flex;gap:8px;align-items:center;margin:12px 0 22px;padding:7px 12px;border-radius:999px;background:#e7fff9;color:#03695d;font-weight:700}.dot{width:9px;height:9px;border-radius:999px;background:#12b981}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin:22px 0}.box{border:1px solid #e5e7eb;border-radius:8px;padding:16px;background:#fbfdff}.box strong{display:block;margin-bottom:6px}pre{overflow:auto;background:#101827;color:#e5f7f4;padding:16px;border-radius:8px;line-height:1.45}code{font-family:"SFMono-Regular",Consolas,monospace;font-size:13px}.muted{color:#5b6472}.warn{color:#9a3412;background:#fff7ed;border:1px solid #fed7aa;border-radius:8px;padding:14px;margin-top:18px}@media(max-width:560px){h1{font-size:28px}.hero{padding:24px}.wrap{padding-top:28px}}</style></head><body><main class="wrap"><section class="hero"><h1>Smartiecoin Public RPC</h1><div class="status"><span class="dot"></span>Online</div><p class="muted">Public JSON-RPC endpoint for SMT node reads, CoinDrop integration, and signed transaction broadcast.</p><div class="grid"><div class="box"><strong>Endpoint</strong><code>https://rpc.smartiecoin.com/</code></div><div class="box"><strong>Network</strong><span>Smartiecoin mainnet</span></div><div class="box"><strong>Broadcast</strong><span><code>sendrawtransaction</code> and <code>testmempoolaccept</code> enabled</span></div></div><h2>Get block count</h2><pre><code>curl -H "content-type: application/json" --data-binary &#39;{&quot;jsonrpc&quot;:&quot;1.0&quot;,&quot;id&quot;:&quot;smt&quot;,&quot;method&quot;:&quot;getblockcount&quot;,&quot;params&quot;:[]}&#39; https://rpc.smartiecoin.com/</code></pre><h2>Broadcast transaction</h2><pre><code>curl -H "content-type: application/json" --data-binary &#39;{&quot;jsonrpc&quot;:&quot;1.0&quot;,&quot;id&quot;:&quot;smt&quot;,&quot;method&quot;:&quot;sendrawtransaction&quot;,&quot;params&quot;:[&quot;RAW_TX_HEX&quot;]}&#39; https://rpc.smartiecoin.com/</code></pre><p class="warn">CoinDrop can use this endpoint for chain reads, address validation, mempool checks, and raw transaction broadcast. Wallet/admin control methods stay blocked for public safety.</p></section></main></body></html>