etherscan-form.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <html id="html" lang="en">
  3. <head><title>
  4. Broadcast Raw Transaction | Etherscan
  5. </title>
  6. <meta charset="utf-8" />
  7. </head>
  8. <body>
  9. <form action="/search" method="GET">
  10. <input type="hidden" value="" id="hdnSearchLabel" />
  11. </form>
  12. <form method="post" action="./pushTx" id="ctl00" class="js-validate">
  13. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="foo" />
  14. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="bar" />
  15. <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="baz" />
  16. <div>
  17. <div>
  18. <label for="signedTransactionHex">Enter signed transaction hex</label>
  19. <div class="js-form-message">
  20. <textarea name="ctl00$ContentPlaceHolder1$txtRawTx" rows="8" cols="20" maxlength="50000" id="ContentPlaceHolder1_txtRawTx" required="" placeholder="e.g. 0x.." data-bg-msg="Please enter signed transaction hex">
  21. </textarea>
  22. </div>
  23. <p>Tip: You can also broadcast programatically via our <a href="https://docs.etherscan.io/api-endpoints/geth-parity-proxy" target="_blank">[eth_sendRawTransaction]</a>. Accepts the paramater "hex" for prefilling the input box above (i.e <a href="/pushTx?hex=0x000000">Click here</a>)</p>
  24. </div>
  25. <div class="card-footer bg-light">
  26. <input type="submit" name="ctl00$ContentPlaceHolder1$btnSubmit" value="Send Transaction" id="ContentPlaceHolder1_btnSubmit" class="btn btn-primary" />
  27. </div>
  28. </div>
  29. </form>
  30. </body>
  31. </html>