mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 06:57:58 +00:00
4264613a96
* Extract CLI to separate module in node/cli * Make node/cli compile for WASM * More work on node/cli browser * More work on browser node * More work * More work * Purge a bit the CI script * More clean up * Remove substrate-finality-grandpa from the CI Its tests use tokio, which fails to compile. * Address review * Add rocksdb feature to the service * Fix substrate-service WASM CI * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Don't WASM-compile substrate-service altogether
40 lines
1004 B
HTML
40 lines
1004 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
|
<title>Substrate node</title>
|
|
<link rel="shortcut icon" href="/favicon.png" />
|
|
<script type="module">
|
|
import { start_client, default as init } from './pkg/node_cli.js';
|
|
import ws from './ws.js';
|
|
|
|
function log(msg) {
|
|
document.getElementsByTagName('body')[0].innerHTML += msg + '\n';
|
|
}
|
|
|
|
async function start() {
|
|
log('Loading WASM');
|
|
await init('./pkg/node_cli_bg.wasm');
|
|
log('Successfully loaded WASM');
|
|
|
|
// Build our client.
|
|
log('Starting client');
|
|
let client = start_client(ws());
|
|
log('Client started');
|
|
|
|
client.rpcSubscribe('{"method":"chain_subscribeNewHead","params":[],"id":1,"jsonrpc":"2.0"}',
|
|
(r) => log("New chain head: " + r));
|
|
|
|
setInterval(() => {
|
|
client
|
|
.rpcSend('{"method":"system_networkState","params":[],"id":1,"jsonrpc":"2.0"}')
|
|
.then((r) => log("Network state: " + r));
|
|
}, 1000);
|
|
}
|
|
|
|
start();
|
|
</script>
|
|
</head>
|
|
<body style="white-space: pre"></body>
|
|
</html>
|