Documentation
¶
Rendered for js/wasm
Overview ¶
your front-end html should look like this: ```html <html> <head>
<meta charset="utf-8"/>
<script src="wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("wallet.wasm"), go.importObject).then((result) => {
go.run(result.instance);
});
</script>
</head> <body></body> </html> ```
Click to show internal directories.
Click to hide internal directories.