22 lines
690 B
JavaScript
22 lines
690 B
JavaScript
/**
|
|
* g1wallet.js — Ğ1 Wallet client-side.
|
|
*
|
|
* Current scope: none. Address registration and balance display are
|
|
* handled server-side. No JS is required for the current feature set.
|
|
*
|
|
* Future: transaction signing (sr25519/Schnorrkel via WASM) when
|
|
* scn01 scenario submission payment is wired.
|
|
*
|
|
* This file is intentionally minimal and kept as a placeholder so
|
|
* the load order and script tag are already in place.
|
|
*/
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
// When the wallet page stores a g1 address server-side, other addons
|
|
// (scn01, dsc01) can read it via a data attribute on the page body
|
|
// or a meta tag — no JS session state needed at this stage.
|
|
|
|
}());
|