seedelf-cli 0.4.5

Seedelf: A Cardano Stealth Wallet
Documentation
<!DOCTYPE html>
<html>

<head>
    <title>Seedelf Wallet</title>
    <link rel="icon" href="favicon.ico" type="image/x-icon">

    <!-- Make it look pretty inside of index.css -->
    <link rel="stylesheet" href="index.css">

    <!-- Placeholder for injecting dynamic text -->
    <script id="injected-data" type="application/json">
        { "message": "ACAB000000000000" }
    </script>

    <script id="injected-network-data" type="application/json">
        { "network": "FADECAFE00000000" }
    </script>

    <!-- All the wallet logic needs to go inside index.js -->
    <script src="index.js" defer></script>
</head>

<body>
    <nav class="nav-bar">
        <h1 class="nav-left">Seedelf Wallet</h1>
        <div class="nav-right">
            <select id="wallet_dropdown" name="options">
                <option value="" selected disabled>Select A Wallet</option>
            </select>
        </div>
    </nav>

    <header class="centered">
        <h3>Please select a wallet from the dropdown. This page will prompt you to sign a transaction with the wallet of your choice.</h3>
    </header>

    <main>
        <section class="centered">
            <p id="status" class="centered">Waiting for wallet selection...</p>
            <a id="tx_link" href="" class="link-button" target="_blank" rel="noopener noreferrer"></a>
        </section>

        <section>
            <h4>Transaction CBOR:</h4>
            <code id="tx_cbor"></code>
        </section>
    </main>

    <footer class="centered">
        <p>© 2024-2025 Logical Mechanism LLC</p>
    </footer>
</body>

</html>