Skip to content

Commit

Permalink
f: can actually send w/ change 'n' such
Browse files Browse the repository at this point in the history
  • Loading branch information
coolaj86 committed Aug 14, 2024
1 parent 063244c commit b822a1f
Show file tree
Hide file tree
Showing 2 changed files with 332 additions and 105 deletions.
16 changes: 11 additions & 5 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,13 @@ <h1>Digital Cash Wallet</h1>
<fieldset>
<label
>Send Amount
<small>4-digit float</small>
<small>0 + select coins for full transfer</small>
<input
type="number"
data-id="send-amount"
placeholder="ex: 1.0001"
step="0.0001"
min="0.0001"
min="0.0000"
/>
</label>
<small
Expand Down Expand Up @@ -237,7 +237,7 @@ <h1>Digital Cash Wallet</h1>
/>
</label>

<button type="submit">Send DASH</button>
<button type="submit" onclick="sendDash(event)">Send DASH</button>
</form>
</section>
<br />
Expand All @@ -252,10 +252,16 @@ <h1>Digital Cash Wallet</h1>
data-id="spent">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code></pre>
</details>
<label
>Fresh Addresses
>Unused Payment Addresses
<small>base58check-encoded pkh</small>
<pre><code
data-id="addresses">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code></pre>
data-id="receive-addresses">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code></pre>
</label>
<label
>Unused Change Addresses
<small>base58check-encoded pkh</small>
<pre><code
data-id="change-addresses">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code></pre>
</label>
</form>
</section>
Expand Down
Loading

0 comments on commit b822a1f

Please sign in to comment.