solana/web3.js/examples/account.html

25 lines
610 B
HTML
Raw Normal View History

2018-08-23 08:12:51 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Create a new account</title>
</head>
<body>
<b>Account Public Key:</b>
<div id="accountPublicKey">?</div>
2018-08-23 08:51:27 -07:00
2018-08-23 08:12:51 -07:00
<script src="../lib/index.iife.js"></script>
2018-08-23 08:51:27 -07:00
<!--
2018-11-07 08:52:01 -08:00
<script src="https://github.com/solana-labs/solana-web3.js/releases/download/v0.11.10/solanaWeb3.min.js"></script>
2018-08-23 08:51:27 -07:00
-->
2018-08-23 08:12:51 -07:00
<script>
// Create a new account
const account = new solanaWeb3.Account();
// Display the account's public key
const accountPublicKey = document.getElementById('accountPublicKey');
accountPublicKey.innerHTML = account.publicKey;
</script>
</body>
</html>