Files
xrpl-dev-portal/content/_code-samples/send-xrp/js/demo.html
mDuo13 b08f4334ea Refactor Send XRP: reliable sub, folders by language
- Use reliable transaction submission methods where available
- Update text to describe the functions (esp. xrpl.js 2.0 stuff)
- Move Send XRP code samples to subfolders by language for consistency
  with other tutorials
2021-10-14 19:41:23 -07:00

14 lines
575 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Code Sample - Send XRP</title>
<!-- TODO: re-add CDN version instead of local version
<script src="https://unpkg.com/ripple-lib@1.10.0/build/ripple-latest-min.js"></script> -->
<script type="application/javascript" src="../../../assets/js/xrpl-2.0.0b2.min.js"></script>
<script type="application/javascript" src="../submit-and-verify/submit-and-verify2.js"></script>
<script type="application/javascript" src="send-xrp.js"></script>
</head>
<body>Open your browser's console (F12) to see the logs.</body>
</html>