Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {wallets.map((w) => (
- <div key={w.address}>
- <b>{w.label}</b> {short(w.address)} — Balance:{" "}
- {balances[w.address] || 0}{" "}
- <input
- type="radio"
- name="miner"
- checked={minerAddr === w.address}
- onChange={() => setMinerAddr(w.address)}
- />{" "}
- Miner
- </div>
- ))}
- <button onClick={handleAddWallet}>➕ Create Wallet</button>
Advertisement
Add Comment
Please, Sign In to add comment