mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
* feat: add `Share PSBT` button with options * feat: add basic communication via the serial port * chore: code format * feat: send data to and from serial port * fix: port disconnect * feat: handle psbt extract * feat: show signed transaction details * fix: handle Connect/Disconnect failure state * feat:small UI improvements * feat: broadcast transaction (partial solution) * feat: integrate psbt response from HWW * feat: login and send commands to HWW * feat: ui improvements * feat: ui/ux improvements * feat: more small UI impreovemsnts * feat: simplify UI * feat: add `help` command * feat: add wipe command * feet: add `seed` command * feat: add `restore` command * feat: always show PSBT input text (for outside PSBTs) * feat: show spinner while signing tx * feat: hide panels after transaction is broadcast * feat: basic use of custom components * refactor: move components one folder up * refactor: extract wallet-config * refactor: extract `wallet-list` component * refactor: clean-up * chore: code format html component files * refactor: extract address-list component * refactor: extract `history` component * refactor: extract `utxo-list` component * feat: UI/UX improvements * feat: partial payment redesign * refactor: rename `fee` to `fee-rate` * refactor: rename component * refactor: extract `send-to` component * refactor: payment: first migration * fix: init `sendToList` * fix: change address * fix: change address and `Select All` coins * feat: show custom fees & two way binding for addresses * fix: scanAddressesWithAmount * fix: max amount * fix: coin selection mode * chore: code clean-up * feat: shuffle the UI * fix: change amount * feat: update tx size in real time * fix: coin selection * fix: show erro messages * fix: psbt generation * refactor: move serial port logic * refactor: payment component * refactor: code clean-up; use `slot` for `serial-signer` * feat: toggle serial port * feat: add Disconnect command * feat: prompt for `Connect` and `Login` before signing * refactor: send psbt to device * feat: extract signed transaction * refactor: code clean-up * feat: show auth green icon * chore: code clean-up * feat: show console * feat: allow `Connect` from dropdown menu * fix: stop if serial port cannot be open * feat: confirm outputs and fee * feat: add cancel command * fix: add `sats-denominated` for confirmations * feat: wait for HWW to authenticate, then open dialog * feat: share PSBT as text * refactor: extract `refreshAddresses` * feat: small UI improvements * feat: add default `Mainnet` network * feat: fix mempool endpint * feat: propagate config update only when explicitly updated * feat: add network for wallet accounts * fix: stop scanning when network changed * chore: code clean-up * chore: code clean-up * feat: show hardware device Xpub option * fix: handle failed to parse psbt * feat: add accounts using the HWW * fix: testnet is in the bip32 derivation path * feat: add spinner while wallet account is created * fix: check network and masterpub for duplicate accounts * feat: integrate transaction broadcast * feat: add password confirmation for `Wipe` and `Restore` * fix: fingerprint is not unique per account (it is the fingerprint of the master) * chore: code clean-up, remove `masterpub_fingerprint` * fix: account name diplay * chore: code format * fix: memppol links * fix: shortcut buttons * fix: note update * chore: code format * chore: clean-up rebase left overs * chore: clean-up * feat: less technical labels for addresses * feat: add serial port config params * fix: address type selection * chore: drop `mempool` table * fix: change & fee value * fix: handle no input signed scenario * fix: sat/btc unit * fix: small UI stuff * doc: update the readme * Update README.md
95 lines
2.4 KiB
Python
95 lines
2.4 KiB
Python
async def m001_initial(db):
|
|
"""
|
|
Initial wallet table.
|
|
"""
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE watchonly.wallets (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
"user" TEXT,
|
|
masterpub TEXT NOT NULL,
|
|
title TEXT NOT NULL,
|
|
address_no INTEGER NOT NULL DEFAULT 0,
|
|
balance INTEGER NOT NULL
|
|
);
|
|
"""
|
|
)
|
|
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE watchonly.addresses (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
address TEXT NOT NULL,
|
|
wallet TEXT NOT NULL,
|
|
amount INTEGER NOT NULL
|
|
);
|
|
"""
|
|
)
|
|
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE watchonly.mempool (
|
|
"user" TEXT NOT NULL,
|
|
endpoint TEXT NOT NULL
|
|
);
|
|
"""
|
|
)
|
|
|
|
|
|
async def m002_add_columns_to_adresses(db):
|
|
"""
|
|
Add 'branch_index', 'address_index', 'has_activity' and 'note' columns to the 'addresses' table
|
|
"""
|
|
|
|
await db.execute(
|
|
"ALTER TABLE watchonly.addresses ADD COLUMN branch_index INTEGER NOT NULL DEFAULT 0;"
|
|
)
|
|
await db.execute(
|
|
"ALTER TABLE watchonly.addresses ADD COLUMN address_index INTEGER NOT NULL DEFAULT 0;"
|
|
)
|
|
await db.execute(
|
|
"ALTER TABLE watchonly.addresses ADD COLUMN has_activity BOOLEAN DEFAULT false;"
|
|
)
|
|
await db.execute("ALTER TABLE watchonly.addresses ADD COLUMN note TEXT;")
|
|
|
|
|
|
async def m003_add_columns_to_wallets(db):
|
|
"""
|
|
Add 'type' and 'fingerprint' columns to the 'wallets' table
|
|
"""
|
|
|
|
await db.execute("ALTER TABLE watchonly.wallets ADD COLUMN type TEXT;")
|
|
await db.execute(
|
|
"ALTER TABLE watchonly.wallets ADD COLUMN fingerprint TEXT NOT NULL DEFAULT '';"
|
|
)
|
|
|
|
|
|
async def m004_create_config_table(db):
|
|
"""
|
|
Allow the extension to persist and retrieve any number of config values.
|
|
Each user has its configurations saved as a JSON string
|
|
"""
|
|
|
|
await db.execute(
|
|
"""CREATE TABLE watchonly.config (
|
|
"user" TEXT NOT NULL,
|
|
json_data TEXT NOT NULL
|
|
);"""
|
|
)
|
|
|
|
|
|
async def m005_add_network_column_to_wallets(db):
|
|
"""
|
|
Add network' column to the 'wallets' table
|
|
"""
|
|
|
|
await db.execute(
|
|
"ALTER TABLE watchonly.wallets ADD COLUMN network TEXT DEFAULT 'Mainnet';"
|
|
)
|
|
|
|
|
|
async def m006_drop_mempool_table(db):
|
|
"""
|
|
Mempool data is now part of `config`
|
|
"""
|
|
await db.execute("DROP TABLE watchonly.mempool;")
|