Add local browser example
This commit is contained in:
3
web3.js/examples/README.md
Normal file
3
web3.js/examples/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
## Examples
|
||||
Before trying any of the examples in this directory please populate the `lib/`
|
||||
directory by running `npm install`
|
21
web3.js/examples/account.html
Normal file
21
web3.js/examples/account.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Create a new account</title>
|
||||
</head>
|
||||
<body>
|
||||
<b>Account Public Key:</b>
|
||||
<div id="accountPublicKey">?</div>
|
||||
<script src="../lib/index.iife.js"></script>
|
||||
<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>
|
||||
<p>
|
||||
<i>This demo is also available on <a href="https://jsfiddle.net/mvines/sz4pco6y/">JSFiddle</a></i>
|
||||
</body>
|
||||
</html>
|
@ -1,11 +1,5 @@
|
||||
/*
|
||||
|
||||
Creating a new account
|
||||
|
||||
Usage:
|
||||
$ npm run dev
|
||||
$ node ./account.js
|
||||
|
||||
Create a new account
|
||||
*/
|
||||
|
||||
//eslint-disable-next-line import/no-commonjs
|
||||
|
Reference in New Issue
Block a user