Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monorepo: Add Browser Examples #2835

Merged
merged 20 commits into from
Jun 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add StateManager browser example
holgerd77 committed Jun 28, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 12afe507cf46b153cee8df0c5d158f076a5a667a
64 changes: 64 additions & 0 deletions packages/statemanager/examples/browser.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!doctype html>
<html>

<head>
<title>EthereumJS Browser Examples</title>
<script type="module">
import { Account, Address } from '@ethereumjs/util'
import { DefaultStateManager } from '@ethereumjs/statemanager'
import { hexStringToBytes } from '@ethereumjs/util'

const run = async () => {
const stateManager = new DefaultStateManager()
const address = new Address(hexStringToBytes('a94f5374fce5edbc8e2a8697c15331677e6ebf0b'))
const account = new Account(BigInt(0), BigInt(1000))
await stateManager.checkpoint()
await stateManager.putAccount(address, account)
await stateManager.commit()
await stateManager.flush()

const accountFromSM = await stateManager.getAccount(address)
console.log(accountFromSM.balance)
}

run()
</script>

</head>

<body style="padding:50px; font-family: Arial, Helvetica, sans-serif;">
<h1>StateManager | @ethereumjs/statemanager</h1>
Basic usage of this library in the browser (using <a href="https://github.com/vitejs/vite" target="_blank">Vite</a>)

<h3>Run the Example</h3>
<ol>
<li>
Go to the library root directory (packages/[LIBRARY_NAME]/)
</li>
<li>
Build "dist" folder with: npm run build
</li>
<li>
Start Vite development server with: npx vite
</li>
<li>
Open the example URL in the browser (http://localhost:5173/examples/browser.html)
</li>
<li>
Open the development console (e.g. Chrome Developer Tools)
</li>
<li>
See example results and play with the code
</li>
</ol>

<h3>Interactive CLI</h3>
<ol>
<li>Open the "Sources -> Page" tab in the Chrome Developer Tools</li>
<li>Set a breakpoint within the original "browser.html" file (so not the one generated by Vite)</li>
<li>Now you can use and play with the imports dynamically</li>
</ol>

</body>

</html>