mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
18 lines
424 B
HTML
18 lines
424 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>XRPL.js Base Example</title>
|
|
<!-- @chunk {"steps": ["import-web-tag"]} -->
|
|
<script src="https://unpkg.com/xrpl/build/xrpl-latest-min.js"></script>
|
|
<!-- @chunk-end -->
|
|
</head>
|
|
<body>
|
|
<h1>XRPL.js Example</h1>
|
|
<!-- @chunk {"steps": ["import-web-tag"]} -->
|
|
<script>
|
|
const xrpl = require("xrpl")
|
|
</script>
|
|
<!-- @chunk-end -->
|
|
</body>
|
|
</html>
|