rgb-cln/wallet/db_sqlite3_sqlgen.c

1694 lines
88 KiB
C

#ifndef LIGHTNINGD_WALLET_GEN_DB_SQLITE3
#define LIGHTNINGD_WALLET_GEN_DB_SQLITE3
#include <config.h>
#include <wallet/db_common.h>
#if HAVE_SQLITE3
struct db_query db_sqlite3_queries[] = {
{
.name = "CREATE TABLE version (version INTEGER)",
.query = "CREATE TABLE version (version INTEGER)",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO version VALUES (1)",
.query = "INSERT INTO version VALUES (1)",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE outputs ( prev_out_tx BLOB, prev_out_index INTEGER, value BIGINT, type INTEGER, status INTEGER, keyindex INTEGER, PRIMARY KEY (prev_out_tx, prev_out_index));",
.query = "CREATE TABLE outputs ( prev_out_tx BLOB, prev_out_index INTEGER, value INTEGER, type INTEGER, status INTEGER, keyindex INTEGER, PRIMARY KEY (prev_out_tx, prev_out_index));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE vars ( name VARCHAR(32), val VARCHAR(255), PRIMARY KEY (name));",
.query = "CREATE TABLE vars ( name VARCHAR(32), val VARCHAR(255), PRIMARY KEY (name));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE shachains ( id BIGSERIAL, min_index BIGINT, num_valid BIGINT, PRIMARY KEY (id));",
.query = "CREATE TABLE shachains ( id INTEGER, min_index INTEGER, num_valid INTEGER, PRIMARY KEY (id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE shachain_known ( shachain_id BIGINT REFERENCES shachains(id) ON DELETE CASCADE, pos INTEGER, idx BIGINT, hash BLOB, PRIMARY KEY (shachain_id, pos));",
.query = "CREATE TABLE shachain_known ( shachain_id INTEGER REFERENCES shachains(id) ON DELETE CASCADE, pos INTEGER, idx INTEGER, hash BLOB, PRIMARY KEY (shachain_id, pos));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE peers ( id BIGSERIAL, node_id BLOB UNIQUE, address TEXT, PRIMARY KEY (id));",
.query = "CREATE TABLE peers ( id INTEGER, node_id BLOB UNIQUE, address TEXT, PRIMARY KEY (id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channels ( id BIGSERIAL, peer_id BIGINT REFERENCES peers(id) ON DELETE CASCADE, short_channel_id TEXT, channel_config_local BIGINT, channel_config_remote BIGINT, state INTEGER, funder INTEGER, channel_flags INTEGER, minimum_depth INTEGER, next_index_local BIGINT, next_index_remote BIGINT, next_htlc_id BIGINT, funding_tx_id BLOB, funding_tx_outnum INTEGER, funding_satoshi BIGINT, funding_locked_remote INTEGER, push_msatoshi BIGINT, msatoshi_local BIGINT, fundingkey_remote BLOB, revocation_basepoint_remote BLOB, payment_basepoint_remote BLOB, htlc_basepoint_remote BLOB, delayed_payment_basepoint_remote BLOB, per_commit_remote BLOB, old_per_commit_remote BLOB, local_feerate_per_kw INTEGER, remote_feerate_per_kw INTEGER, shachain_remote_id BIGINT, shutdown_scriptpubkey_remote BLOB, shutdown_keyidx_local BIGINT, last_sent_commit_state BIGINT, last_sent_commit_id INTEGER, last_tx BLOB, last_sig BLOB, closing_fee_received INTEGER, closing_sig_received BLOB, PRIMARY KEY (id));",
.query = "CREATE TABLE channels ( id INTEGER, peer_id INTEGER REFERENCES peers(id) ON DELETE CASCADE, short_channel_id TEXT, channel_config_local INTEGER, channel_config_remote INTEGER, state INTEGER, funder INTEGER, channel_flags INTEGER, minimum_depth INTEGER, next_index_local INTEGER, next_index_remote INTEGER, next_htlc_id INTEGER, funding_tx_id BLOB, funding_tx_outnum INTEGER, funding_satoshi INTEGER, funding_locked_remote INTEGER, push_msatoshi INTEGER, msatoshi_local INTEGER, fundingkey_remote BLOB, revocation_basepoint_remote BLOB, payment_basepoint_remote BLOB, htlc_basepoint_remote BLOB, delayed_payment_basepoint_remote BLOB, per_commit_remote BLOB, old_per_commit_remote BLOB, local_feerate_per_kw INTEGER, remote_feerate_per_kw INTEGER, shachain_remote_id INTEGER, shutdown_scriptpubkey_remote BLOB, shutdown_keyidx_local INTEGER, last_sent_commit_state INTEGER, last_sent_commit_id INTEGER, last_tx BLOB, last_sig BLOB, closing_fee_received INTEGER, closing_sig_received BLOB, PRIMARY KEY (id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channel_configs ( id BIGSERIAL, dust_limit_satoshis BIGINT, max_htlc_value_in_flight_msat BIGINT, channel_reserve_satoshis BIGINT, htlc_minimum_msat BIGINT, to_self_delay INTEGER, max_accepted_htlcs INTEGER, PRIMARY KEY (id));",
.query = "CREATE TABLE channel_configs ( id INTEGER, dust_limit_satoshis INTEGER, max_htlc_value_in_flight_msat INTEGER, channel_reserve_satoshis INTEGER, htlc_minimum_msat INTEGER, to_self_delay INTEGER, max_accepted_htlcs INTEGER, PRIMARY KEY (id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channel_htlcs ( id BIGSERIAL, channel_id BIGINT REFERENCES channels(id) ON DELETE CASCADE, channel_htlc_id BIGINT, direction INTEGER, origin_htlc BIGINT, msatoshi BIGINT, cltv_expiry INTEGER, payment_hash BLOB, payment_key BLOB, routing_onion BLOB, failuremsg BLOB, malformed_onion INTEGER, hstate INTEGER, shared_secret BLOB, PRIMARY KEY (id), UNIQUE (channel_id, channel_htlc_id, direction));",
.query = "CREATE TABLE channel_htlcs ( id INTEGER, channel_id INTEGER REFERENCES channels(id) ON DELETE CASCADE, channel_htlc_id INTEGER, direction INTEGER, origin_htlc INTEGER, msatoshi INTEGER, cltv_expiry INTEGER, payment_hash BLOB, payment_key BLOB, routing_onion BLOB, failuremsg BLOB, malformed_onion INTEGER, hstate INTEGER, shared_secret BLOB, PRIMARY KEY (id), UNIQUE (channel_id, channel_htlc_id, direction));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE invoices ( id BIGSERIAL, state INTEGER, msatoshi BIGINT, payment_hash BLOB, payment_key BLOB, label TEXT, PRIMARY KEY (id), UNIQUE (label), UNIQUE (payment_hash));",
.query = "CREATE TABLE invoices ( id INTEGER, state INTEGER, msatoshi INTEGER, payment_hash BLOB, payment_key BLOB, label TEXT, PRIMARY KEY (id), UNIQUE (label), UNIQUE (payment_hash));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE payments ( id BIGSERIAL, timestamp INTEGER, status INTEGER, payment_hash BLOB, direction INTEGER, destination BLOB, msatoshi BIGINT, PRIMARY KEY (id), UNIQUE (payment_hash));",
.query = "CREATE TABLE payments ( id INTEGER, timestamp INTEGER, status INTEGER, payment_hash BLOB, direction INTEGER, destination BLOB, msatoshi INTEGER, PRIMARY KEY (id), UNIQUE (payment_hash));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD expiry_time BIGINT;",
.query = "ALTER TABLE invoices ADD expiry_time INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE invoices SET expiry_time=9223372036854775807;",
.query = "UPDATE invoices SET expiry_time=9223372036854775807;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD pay_index BIGINT;",
.query = "ALTER TABLE invoices ADD pay_index INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE UNIQUE INDEX invoices_pay_index ON invoices(pay_index);",
.query = "CREATE UNIQUE INDEX invoices_pay_index ON invoices(pay_index);",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE invoices SET pay_index=id WHERE state=1;",
.query = "UPDATE invoices SET pay_index=id WHERE state=1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO vars(name, val) VALUES('next_pay_index', COALESCE((SELECT MAX(pay_index) FROM invoices WHERE state=1), 0) + 1 );",
.query = "INSERT INTO vars(name, val) VALUES('next_pay_index', COALESCE((SELECT MAX(pay_index) FROM invoices WHERE state=1), 0) + 1 );",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD first_blocknum BIGINT;",
.query = "ALTER TABLE channels ADD first_blocknum INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET first_blocknum=1 WHERE short_channel_id IS NOT NULL;",
.query = "UPDATE channels SET first_blocknum=1 WHERE short_channel_id IS NOT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD COLUMN channel_id BIGINT;",
.query = "ALTER TABLE outputs ADD COLUMN channel_id INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD COLUMN peer_id BLOB;",
.query = "ALTER TABLE outputs ADD COLUMN peer_id BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD COLUMN commitment_point BLOB;",
.query = "ALTER TABLE outputs ADD COLUMN commitment_point BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD COLUMN msatoshi_received BIGINT;",
.query = "ALTER TABLE invoices ADD COLUMN msatoshi_received INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE invoices SET msatoshi_received=0 WHERE state=1;",
.query = "UPDATE invoices SET msatoshi_received=0 WHERE state=1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD COLUMN last_was_revoke INTEGER;",
.query = "ALTER TABLE channels ADD COLUMN last_was_revoke INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments RENAME TO temp_payments;",
.query = "ALTER TABLE payments RENAME TO temp_payments;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE payments ( id BIGSERIAL, timestamp INTEGER, status INTEGER, payment_hash BLOB, destination BLOB, msatoshi BIGINT, PRIMARY KEY (id), UNIQUE (payment_hash));",
.query = "CREATE TABLE payments ( id INTEGER, timestamp INTEGER, status INTEGER, payment_hash BLOB, destination BLOB, msatoshi INTEGER, PRIMARY KEY (id), UNIQUE (payment_hash));",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO payments SELECT id, timestamp, status, payment_hash, destination, msatoshi FROM temp_payments WHERE direction=1;",
.query = "INSERT INTO payments SELECT id, timestamp, status, payment_hash, destination, msatoshi FROM temp_payments WHERE direction=1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "DROP TABLE temp_payments;",
.query = "DROP TABLE temp_payments;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD COLUMN payment_preimage BLOB;",
.query = "ALTER TABLE payments ADD COLUMN payment_preimage BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD COLUMN path_secrets BLOB;",
.query = "ALTER TABLE payments ADD COLUMN path_secrets BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD paid_timestamp BIGINT;",
.query = "ALTER TABLE invoices ADD paid_timestamp INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE invoices SET paid_timestamp = CURRENT_TIMESTAMP() WHERE state = 1;",
.query = "UPDATE invoices SET paid_timestamp = strftime('%s', 'now') WHERE state = 1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD COLUMN route_nodes BLOB;",
.query = "ALTER TABLE payments ADD COLUMN route_nodes BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD COLUMN route_channels BLOB;",
.query = "ALTER TABLE payments ADD COLUMN route_channels BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE htlc_sigs (channelid INTEGER REFERENCES channels(id) ON DELETE CASCADE, signature BLOB);",
.query = "CREATE TABLE htlc_sigs (channelid INTEGER REFERENCES channels(id) ON DELETE CASCADE, signature BLOB);",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE INDEX channel_idx ON htlc_sigs (channelid)",
.query = "CREATE INDEX channel_idx ON htlc_sigs (channelid)",
.placeholders = 0,
.readonly = false,
},
{
.name = "DELETE FROM channels WHERE state=1",
.query = "DELETE FROM channels WHERE state=1",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE db_upgrades (upgrade_from INTEGER, lightning_version TEXT);",
.query = "CREATE TABLE db_upgrades (upgrade_from INTEGER, lightning_version TEXT);",
.placeholders = 0,
.readonly = false,
},
{
.name = "DELETE FROM peers WHERE id NOT IN (SELECT peer_id FROM channels);",
.query = "DELETE FROM peers WHERE id NOT IN (SELECT peer_id FROM channels);",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET STATE = 8 WHERE state > 8;",
.query = "UPDATE channels SET STATE = 8 WHERE state > 8;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD bolt11 TEXT;",
.query = "ALTER TABLE invoices ADD bolt11 TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE blocks (height INT, hash BLOB, prev_hash BLOB, UNIQUE(height));",
.query = "CREATE TABLE blocks (height INT, hash BLOB, prev_hash BLOB, UNIQUE(height));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD COLUMN confirmation_height INTEGER REFERENCES blocks(height) ON DELETE SET NULL;",
.query = "ALTER TABLE outputs ADD COLUMN confirmation_height INTEGER REFERENCES blocks(height) ON DELETE SET NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD COLUMN spend_height INTEGER REFERENCES blocks(height) ON DELETE SET NULL;",
.query = "ALTER TABLE outputs ADD COLUMN spend_height INTEGER REFERENCES blocks(height) ON DELETE SET NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE INDEX output_height_idx ON outputs (confirmation_height, spend_height);",
.query = "CREATE INDEX output_height_idx ON outputs (confirmation_height, spend_height);",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE utxoset ( txid BLOB, outnum INT, blockheight INT REFERENCES blocks(height) ON DELETE CASCADE, spendheight INT REFERENCES blocks(height) ON DELETE SET NULL, txindex INT, scriptpubkey BLOB, satoshis BIGINT, PRIMARY KEY(txid, outnum));",
.query = "CREATE TABLE utxoset ( txid BLOB, outnum INT, blockheight INT REFERENCES blocks(height) ON DELETE CASCADE, spendheight INT REFERENCES blocks(height) ON DELETE SET NULL, txindex INT, scriptpubkey BLOB, satoshis INTEGER, PRIMARY KEY(txid, outnum));",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE INDEX short_channel_id ON utxoset (blockheight, txindex, outnum)",
.query = "CREATE INDEX short_channel_id ON utxoset (blockheight, txindex, outnum)",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE INDEX utxoset_spend ON utxoset (spendheight)",
.query = "CREATE INDEX utxoset_spend ON utxoset (spendheight)",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET shutdown_keyidx_local=0 WHERE shutdown_keyidx_local = -1;",
.query = "UPDATE channels SET shutdown_keyidx_local=0 WHERE shutdown_keyidx_local = -1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failonionreply BLOB;",
.query = "ALTER TABLE payments ADD failonionreply BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD faildestperm INTEGER;",
.query = "ALTER TABLE payments ADD faildestperm INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failindex INTEGER;",
.query = "ALTER TABLE payments ADD failindex INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failcode INTEGER;",
.query = "ALTER TABLE payments ADD failcode INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failnode BLOB;",
.query = "ALTER TABLE payments ADD failnode BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failchannel TEXT;",
.query = "ALTER TABLE payments ADD failchannel TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD failupdate BLOB;",
.query = "ALTER TABLE payments ADD failupdate BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET path_secrets = NULL , route_nodes = NULL , route_channels = NULL WHERE status <> 0;",
.query = "UPDATE payments SET path_secrets = NULL , route_nodes = NULL , route_channels = NULL WHERE status <> 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD in_payments_offered INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD in_payments_offered INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD in_payments_fulfilled INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD in_payments_fulfilled INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD in_msatoshi_offered BIGINT DEFAULT 0;",
.query = "ALTER TABLE channels ADD in_msatoshi_offered INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD in_msatoshi_fulfilled BIGINT DEFAULT 0;",
.query = "ALTER TABLE channels ADD in_msatoshi_fulfilled INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD out_payments_offered INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD out_payments_offered INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD out_payments_fulfilled INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD out_payments_fulfilled INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD out_msatoshi_offered BIGINT DEFAULT 0;",
.query = "ALTER TABLE channels ADD out_msatoshi_offered INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD out_msatoshi_fulfilled BIGINT DEFAULT 0;",
.query = "ALTER TABLE channels ADD out_msatoshi_fulfilled INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET in_payments_offered = 0, in_payments_fulfilled = 0 , in_msatoshi_offered = 0, in_msatoshi_fulfilled = 0 , out_payments_offered = 0, out_payments_fulfilled = 0 , out_msatoshi_offered = 0, out_msatoshi_fulfilled = 0 ;",
.query = "UPDATE channels SET in_payments_offered = 0, in_payments_fulfilled = 0 , in_msatoshi_offered = 0, in_msatoshi_fulfilled = 0 , out_payments_offered = 0, out_payments_fulfilled = 0 , out_msatoshi_offered = 0, out_msatoshi_fulfilled = 0 ;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD msatoshi_sent BIGINT;",
.query = "ALTER TABLE payments ADD msatoshi_sent INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET msatoshi_sent = msatoshi;",
.query = "UPDATE payments SET msatoshi_sent = msatoshi;",
.placeholders = 0,
.readonly = false,
},
{
.name = "DELETE FROM utxoset WHERE blockheight IN ( SELECT DISTINCT(blockheight) FROM utxoset LEFT OUTER JOIN blocks on (blockheight = blocks.height) WHERE blocks.hash IS NULL);",
.query = "DELETE FROM utxoset WHERE blockheight IN ( SELECT DISTINCT(blockheight) FROM utxoset LEFT OUTER JOIN blocks on (blockheight = blocks.height) WHERE blocks.hash IS NULL);",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD min_possible_feerate INTEGER;",
.query = "ALTER TABLE channels ADD min_possible_feerate INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD max_possible_feerate INTEGER;",
.query = "ALTER TABLE channels ADD max_possible_feerate INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET min_possible_feerate=0, max_possible_feerate=250000;",
.query = "UPDATE channels SET min_possible_feerate=0, max_possible_feerate=250000;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD msatoshi_to_us_min BIGINT;",
.query = "ALTER TABLE channels ADD msatoshi_to_us_min INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD msatoshi_to_us_max BIGINT;",
.query = "ALTER TABLE channels ADD msatoshi_to_us_max INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET msatoshi_to_us_min = msatoshi_local , msatoshi_to_us_max = msatoshi_local ;",
.query = "UPDATE channels SET msatoshi_to_us_min = msatoshi_local , msatoshi_to_us_max = msatoshi_local ;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE transactions ( id BLOB, blockheight INTEGER REFERENCES blocks(height) ON DELETE SET NULL, txindex INTEGER, rawtx BLOB, PRIMARY KEY (id));",
.query = "CREATE TABLE transactions ( id BLOB, blockheight INTEGER REFERENCES blocks(height) ON DELETE SET NULL, txindex INTEGER, rawtx BLOB, PRIMARY KEY (id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD faildetail TEXT;",
.query = "ALTER TABLE payments ADD faildetail TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET faildetail = 'unspecified payment failure reason' WHERE status = 2;",
.query = "UPDATE payments SET faildetail = 'unspecified payment failure reason' WHERE status = 2;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channeltxs ( id BIGSERIAL, channel_id BIGINT REFERENCES channels(id) ON DELETE CASCADE, type INTEGER, transaction_id BLOB REFERENCES transactions(id) ON DELETE CASCADE, input_num INTEGER, blockheight INTEGER REFERENCES blocks(height) ON DELETE CASCADE, PRIMARY KEY(id));",
.query = "CREATE TABLE channeltxs ( id INTEGER, channel_id INTEGER REFERENCES channels(id) ON DELETE CASCADE, type INTEGER, transaction_id BLOB REFERENCES transactions(id) ON DELETE CASCADE, input_num INTEGER, blockheight INTEGER REFERENCES blocks(height) ON DELETE CASCADE, PRIMARY KEY(id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "DELETE FROM blocks WHERE height > (SELECT MIN(first_blocknum) FROM channels);",
.query = "DELETE FROM blocks WHERE height > (SELECT MIN(first_blocknum) FROM channels);",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO blocks (height) VALUES ((SELECT MIN(first_blocknum) FROM channels)) ON CONFLICT(height) DO NOTHING;",
.query = "INSERT OR IGNORE INTO blocks (height) VALUES ((SELECT MIN(first_blocknum) FROM channels));",
.placeholders = 0,
.readonly = false,
},
{
.name = "DELETE FROM blocks WHERE height IS NULL;",
.query = "DELETE FROM blocks WHERE height IS NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD description TEXT;",
.query = "ALTER TABLE invoices ADD description TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD description TEXT;",
.query = "ALTER TABLE payments ADD description TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD future_per_commitment_point BLOB;",
.query = "ALTER TABLE channels ADD future_per_commitment_point BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD last_sent_commit BLOB;",
.query = "ALTER TABLE channels ADD last_sent_commit BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE forwarded_payments ( in_htlc_id BIGINT REFERENCES channel_htlcs(id) ON DELETE SET NULL, out_htlc_id BIGINT REFERENCES channel_htlcs(id) ON DELETE SET NULL, in_channel_scid BIGINT, out_channel_scid BIGINT, in_msatoshi BIGINT, out_msatoshi BIGINT, state INTEGER, UNIQUE(in_htlc_id, out_htlc_id));",
.query = "CREATE TABLE forwarded_payments ( in_htlc_id INTEGER REFERENCES channel_htlcs(id) ON DELETE SET NULL, out_htlc_id INTEGER REFERENCES channel_htlcs(id) ON DELETE SET NULL, in_channel_scid INTEGER, out_channel_scid INTEGER, in_msatoshi INTEGER, out_msatoshi INTEGER, state INTEGER, UNIQUE(in_htlc_id, out_htlc_id));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD faildirection INTEGER;",
.query = "ALTER TABLE payments ADD faildirection INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD scriptpubkey BLOB;",
.query = "ALTER TABLE outputs ADD scriptpubkey BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE payments ADD bolt11 TEXT;",
.query = "ALTER TABLE payments ADD bolt11 TEXT;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD feerate_base INTEGER;",
.query = "ALTER TABLE channels ADD feerate_base INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD feerate_ppm INTEGER;",
.query = "ALTER TABLE channels ADD feerate_ppm INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channel_htlcs ADD received_time BIGINT",
.query = "ALTER TABLE channel_htlcs ADD received_time INTEGER",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE forwarded_payments ADD received_time BIGINT",
.query = "ALTER TABLE forwarded_payments ADD received_time INTEGER",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE forwarded_payments ADD resolved_time BIGINT",
.query = "ALTER TABLE forwarded_payments ADD resolved_time INTEGER",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD remote_upfront_shutdown_script BLOB;",
.query = "ALTER TABLE channels ADD remote_upfront_shutdown_script BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE forwarded_payments ADD failcode INTEGER;",
.query = "ALTER TABLE forwarded_payments ADD failcode INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD remote_ann_node_sig BLOB;",
.query = "ALTER TABLE channels ADD remote_ann_node_sig BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD remote_ann_bitcoin_sig BLOB;",
.query = "ALTER TABLE channels ADD remote_ann_bitcoin_sig BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE transactions ADD type BIGINT;",
.query = "ALTER TABLE transactions ADD type INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE transactions ADD channel_id BIGINT;",
.query = "ALTER TABLE transactions ADD channel_id INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channels SET short_channel_id = REPLACE(short_channel_id, ':', 'x') WHERE short_channel_id IS NOT NULL;",
.query = "UPDATE channels SET short_channel_id = REPLACE(short_channel_id, ':', 'x') WHERE short_channel_id IS NOT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET failchannel = REPLACE(failchannel, ':', 'x') WHERE failchannel IS NOT NULL;",
.query = "UPDATE payments SET failchannel = REPLACE(failchannel, ':', 'x') WHERE failchannel IS NOT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD COLUMN option_static_remotekey INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD COLUMN option_static_remotekey INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE vars ADD COLUMN intval INTEGER",
.query = "ALTER TABLE vars ADD COLUMN intval INTEGER",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE vars ADD COLUMN blobval BLOB",
.query = "ALTER TABLE vars ADD COLUMN blobval BLOB",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE vars SET intval = CAST(val AS INTEGER) WHERE name IN ('bip32_max_index', 'last_processed_block', 'next_pay_index')",
.query = "UPDATE vars SET intval = CAST(val AS INTEGER) WHERE name IN ('bip32_max_index', 'last_processed_block', 'next_pay_index')",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE vars SET blobval = CAST(val AS BLOB) WHERE name = 'genesis_hash'",
.query = "UPDATE vars SET blobval = CAST(val AS BLOB) WHERE name = 'genesis_hash'",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE transaction_annotations ( txid BLOB, idx INTEGER, location INTEGER, type INTEGER, channel BIGINT REFERENCES channels(id), UNIQUE(txid, idx));",
.query = "CREATE TABLE transaction_annotations ( txid BLOB, idx INTEGER, location INTEGER, type INTEGER, channel INTEGER REFERENCES channels(id), UNIQUE(txid, idx));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD shutdown_scriptpubkey_local BLOB;",
.query = "ALTER TABLE channels ADD shutdown_scriptpubkey_local BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE forwarded_payments SET received_time=0 WHERE received_time IS NULL;",
.query = "UPDATE forwarded_payments SET received_time=0 WHERE received_time IS NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE invoices ADD COLUMN features BLOB DEFAULT '';",
.query = "ALTER TABLE invoices ADD COLUMN features BLOB DEFAULT '';",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE payments ( id BIGSERIAL, timestamp INTEGER, status INTEGER, payment_hash BLOB, destination BLOB, msatoshi BIGINT, payment_preimage BLOB, path_secrets BLOB, route_nodes BLOB, route_channels BLOB, failonionreply BLOB, faildestperm INTEGER, failindex INTEGER, failcode INTEGER, failnode BLOB, failchannel TEXT, failupdate BLOB, msatoshi_sent BIGINT, faildetail TEXT, description TEXT, faildirection INTEGER, bolt11 TEXT, total_msat BIGINT, partid BIGINT, PRIMARY KEY (id), UNIQUE (payment_hash, partid))",
.query = "CREATE TABLE payments ( id INTEGER, timestamp INTEGER, status INTEGER, payment_hash BLOB, destination BLOB, msatoshi INTEGER, payment_preimage BLOB, path_secrets BLOB, route_nodes BLOB, route_channels BLOB, failonionreply BLOB, faildestperm INTEGER, failindex INTEGER, failcode INTEGER, failnode BLOB, failchannel TEXT, failupdate BLOB, msatoshi_sent INTEGER, faildetail TEXT, description TEXT, faildirection INTEGER, bolt11 TEXT, total_msat INTEGER, partid INTEGER, PRIMARY KEY (id), UNIQUE (payment_hash, partid))",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO payments (id, timestamp, status, payment_hash, destination, msatoshi, payment_preimage, path_secrets, route_nodes, route_channels, failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, msatoshi_sent, faildetail, description, faildirection, bolt11)SELECT id, timestamp, status, payment_hash, destination, msatoshi, payment_preimage, path_secrets, route_nodes, route_channels, failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, msatoshi_sent, faildetail, description, faildirection, bolt11 FROM temp_payments;",
.query = "INSERT INTO payments (id, timestamp, status, payment_hash, destination, msatoshi, payment_preimage, path_secrets, route_nodes, route_channels, failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, msatoshi_sent, faildetail, description, faildirection, bolt11)SELECT id, timestamp, status, payment_hash, destination, msatoshi, payment_preimage, path_secrets, route_nodes, route_channels, failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, msatoshi_sent, faildetail, description, faildirection, bolt11 FROM temp_payments;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET total_msat = msatoshi;",
.query = "UPDATE payments SET total_msat = msatoshi;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE payments SET partid = 0;",
.query = "UPDATE payments SET partid = 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channel_htlcs ADD partid BIGINT;",
.query = "ALTER TABLE channel_htlcs ADD partid INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channel_htlcs SET partid = 0;",
.query = "UPDATE channel_htlcs SET partid = 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channel_feerates ( channel_id BIGINT REFERENCES channels(id) ON DELETE CASCADE, hstate INTEGER, feerate_per_kw INTEGER, UNIQUE (channel_id, hstate));",
.query = "CREATE TABLE channel_feerates ( channel_id INTEGER REFERENCES channels(id) ON DELETE CASCADE, hstate INTEGER, feerate_per_kw INTEGER, UNIQUE (channel_id, hstate));",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 4, local_feerate_per_kw FROM channels WHERE funder = 0;",
.query = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 4, local_feerate_per_kw FROM channels WHERE funder = 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 1, remote_feerate_per_kw FROM channels WHERE funder = 0 and local_feerate_per_kw != remote_feerate_per_kw;",
.query = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 1, remote_feerate_per_kw FROM channels WHERE funder = 0 and local_feerate_per_kw != remote_feerate_per_kw;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 14, remote_feerate_per_kw FROM channels WHERE funder = 1;",
.query = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 14, remote_feerate_per_kw FROM channels WHERE funder = 1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 11, local_feerate_per_kw FROM channels WHERE funder = 1 and local_feerate_per_kw != remote_feerate_per_kw;",
.query = "INSERT INTO channel_feerates(channel_id, hstate, feerate_per_kw) SELECT id, 11, local_feerate_per_kw FROM channels WHERE funder = 1 and local_feerate_per_kw != remote_feerate_per_kw;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO vars (name, intval) VALUES ('data_version', 0);",
.query = "INSERT INTO vars (name, intval) VALUES ('data_version', 0);",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channel_htlcs ADD localfailmsg BLOB;",
.query = "ALTER TABLE channel_htlcs ADD localfailmsg BLOB;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channel_htlcs SET localfailmsg=decode('2002', 'hex') WHERE malformed_onion != 0 AND direction = 1;",
.query = "UPDATE channel_htlcs SET localfailmsg=x'2002' WHERE malformed_onion != 0 AND direction = 1;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD our_funding_satoshi BIGINT DEFAULT 0;",
.query = "ALTER TABLE channels ADD our_funding_satoshi INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE penalty_bases ( channel_id BIGINT REFERENCES channels(id) ON DELETE CASCADE, commitnum BIGINT, txid BLOB, outnum INTEGER, amount BIGINT, PRIMARY KEY (channel_id, commitnum));",
.query = "CREATE TABLE penalty_bases ( channel_id INTEGER REFERENCES channels(id) ON DELETE CASCADE, commitnum INTEGER, txid BLOB, outnum INTEGER, amount INTEGER, PRIMARY KEY (channel_id, commitnum));",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channel_htlcs ADD we_filled INTEGER;",
.query = "ALTER TABLE channel_htlcs ADD we_filled INTEGER;",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO vars (name, intval) VALUES ('coin_moves_count', 0);",
.query = "INSERT INTO vars (name, intval) VALUES ('coin_moves_count', 0);",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD reserved_til INTEGER DEFAULT NULL;",
.query = "ALTER TABLE outputs ADD reserved_til INTEGER DEFAULT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD COLUMN option_anchor_outputs INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD COLUMN option_anchor_outputs INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE outputs ADD option_anchor_outputs INTEGER DEFAULT 0;",
.query = "ALTER TABLE outputs ADD option_anchor_outputs INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD full_channel_id BLOB DEFAULT NULL;",
.query = "ALTER TABLE channels ADD full_channel_id BLOB DEFAULT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD funding_psbt BLOB DEFAULT NULL;",
.query = "ALTER TABLE channels ADD funding_psbt BLOB DEFAULT NULL;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD closer INTEGER DEFAULT 2;",
.query = "ALTER TABLE channels ADD closer INTEGER DEFAULT 2;",
.placeholders = 0,
.readonly = false,
},
{
.name = "ALTER TABLE channels ADD state_change_reason INTEGER DEFAULT 0;",
.query = "ALTER TABLE channels ADD state_change_reason INTEGER DEFAULT 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "CREATE TABLE channel_state_changes ( channel_id BIGINT REFERENCES channels(id) ON DELETE CASCADE, timestamp BIGINT, old_state INTEGER, new_state INTEGER, cause INTEGER, message TEXT);",
.query = "CREATE TABLE channel_state_changes ( channel_id INTEGER REFERENCES channels(id) ON DELETE CASCADE, timestamp INTEGER, old_state INTEGER, new_state INTEGER, cause INTEGER, message TEXT);",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE vars SET intval = intval + 1 WHERE name = 'data_version' AND intval = ?",
.query = "UPDATE vars SET intval = intval + 1 WHERE name = 'data_version' AND intval = ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "SELECT version FROM version LIMIT 1",
.query = "SELECT version FROM version LIMIT 1",
.placeholders = 0,
.readonly = true,
},
{
.name = "UPDATE version SET version=?;",
.query = "UPDATE version SET version=?;",
.placeholders = 1,
.readonly = false,
},
{
.name = "INSERT INTO db_upgrades VALUES (?, ?);",
.query = "INSERT INTO db_upgrades VALUES (?, ?);",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT intval FROM vars WHERE name = 'data_version'",
.query = "SELECT intval FROM vars WHERE name = 'data_version'",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT intval FROM vars WHERE name= ? LIMIT 1",
.query = "SELECT intval FROM vars WHERE name= ? LIMIT 1",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE vars SET intval=? WHERE name=?;",
.query = "UPDATE vars SET intval=? WHERE name=?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "INSERT INTO vars (name, intval) VALUES (?, ?);",
.query = "INSERT INTO vars (name, intval) VALUES (?, ?);",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE channels SET feerate_base = ?, feerate_ppm = ?;",
.query = "UPDATE channels SET feerate_base = ?, feerate_ppm = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE channels SET our_funding_satoshi = funding_satoshi WHERE funder = 0;",
.query = "UPDATE channels SET our_funding_satoshi = funding_satoshi WHERE funder = 0;",
.placeholders = 0,
.readonly = false,
},
{
.name = "SELECT type, keyindex, prev_out_tx, prev_out_index, channel_id, peer_id, commitment_point FROM outputs WHERE scriptpubkey IS NULL;",
.query = "SELECT type, keyindex, prev_out_tx, prev_out_index, channel_id, peer_id, commitment_point FROM outputs WHERE scriptpubkey IS NULL;",
.placeholders = 0,
.readonly = true,
},
{
.name = "UPDATE outputs SET scriptpubkey = ? WHERE prev_out_tx = ? AND prev_out_index = ?",
.query = "UPDATE outputs SET scriptpubkey = ? WHERE prev_out_tx = ? AND prev_out_index = ?",
.placeholders = 3,
.readonly = false,
},
{
.name = "SELECT id, funding_tx_id, funding_tx_outnum FROM channels;",
.query = "SELECT id, funding_tx_id, funding_tx_outnum FROM channels;",
.placeholders = 0,
.readonly = true,
},
{
.name = "UPDATE channels SET full_channel_id = ? WHERE id = ?;",
.query = "UPDATE channels SET full_channel_id = ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT c.id, p.node_id, c.last_tx, c.funding_satoshi, c.fundingkey_remote, c.last_sig FROM channels c LEFT OUTER JOIN peers p ON p.id = c.peer_id;",
.query = "SELECT c.id, p.node_id, c.last_tx, c.funding_satoshi, c.fundingkey_remote, c.last_sig FROM channels c LEFT OUTER JOIN peers p ON p.id = c.peer_id;",
.placeholders = 0,
.readonly = true,
},
{
.name = "UPDATE channels SET last_tx = ? WHERE id = ?;",
.query = "UPDATE channels SET last_tx = ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE invoices SET state = ? WHERE state = ? AND expiry_time <= ?;",
.query = "UPDATE invoices SET state = ? WHERE state = ? AND expiry_time <= ?;",
.placeholders = 3,
.readonly = false,
},
{
.name = "SELECT id FROM invoices WHERE state = ? AND expiry_time <= ?",
.query = "SELECT id FROM invoices WHERE state = ? AND expiry_time <= ?",
.placeholders = 2,
.readonly = true,
},
{
.name = "SELECT MIN(expiry_time) FROM invoices WHERE state = ?;",
.query = "SELECT MIN(expiry_time) FROM invoices WHERE state = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "INSERT INTO invoices ( payment_hash, payment_key, state , msatoshi, label, expiry_time , pay_index, msatoshi_received , paid_timestamp, bolt11, description, features) VALUES ( ?, ?, ? , ?, ?, ? , NULL, NULL , NULL, ?, ?, ?);",
.query = "INSERT INTO invoices ( payment_hash, payment_key, state , msatoshi, label, expiry_time , pay_index, msatoshi_received , paid_timestamp, bolt11, description, features) VALUES ( ?, ?, ? , ?, ?, ? , NULL, NULL , NULL, ?, ?, ?);",
.placeholders = 9,
.readonly = false,
},
{
.name = "SELECT id FROM invoices WHERE label = ?;",
.query = "SELECT id FROM invoices WHERE label = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id FROM invoices WHERE payment_hash = ?;",
.query = "SELECT id FROM invoices WHERE payment_hash = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id FROM invoices WHERE payment_hash = ? AND state = ?;",
.query = "SELECT id FROM invoices WHERE payment_hash = ? AND state = ?;",
.placeholders = 2,
.readonly = true,
},
{
.name = "DELETE FROM invoices WHERE id=?;",
.query = "DELETE FROM invoices WHERE id=?;",
.placeholders = 1,
.readonly = false,
},
{
.name = "DELETE FROM invoices WHERE state = ? AND expiry_time <= ?;",
.query = "DELETE FROM invoices WHERE state = ? AND expiry_time <= ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT state, payment_key, payment_hash, label, msatoshi, expiry_time, pay_index, msatoshi_received, paid_timestamp, bolt11, description, features FROM invoices ORDER BY id;",
.query = "SELECT state, payment_key, payment_hash, label, msatoshi, expiry_time, pay_index, msatoshi_received, paid_timestamp, bolt11, description, features FROM invoices ORDER BY id;",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT state FROM invoices WHERE id = ?;",
.query = "SELECT state FROM invoices WHERE id = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE invoices SET state=? , pay_index=? , msatoshi_received=? , paid_timestamp=? WHERE id=?;",
.query = "UPDATE invoices SET state=? , pay_index=? , msatoshi_received=? , paid_timestamp=? WHERE id=?;",
.placeholders = 5,
.readonly = false,
},
{
.name = "SELECT id FROM invoices WHERE pay_index IS NOT NULL AND pay_index > ? ORDER BY pay_index ASC LIMIT 1;",
.query = "SELECT id FROM invoices WHERE pay_index IS NOT NULL AND pay_index > ? ORDER BY pay_index ASC LIMIT 1;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT state, payment_key, payment_hash, label, msatoshi, expiry_time, pay_index, msatoshi_received, paid_timestamp, bolt11, description, features FROM invoices WHERE id = ?;",
.query = "SELECT state, payment_key, payment_hash, label, msatoshi, expiry_time, pay_index, msatoshi_received, paid_timestamp, bolt11, description, features FROM invoices WHERE id = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT * from outputs WHERE prev_out_tx=? AND prev_out_index=?",
.query = "SELECT * from outputs WHERE prev_out_tx=? AND prev_out_index=?",
.placeholders = 2,
.readonly = true,
},
{
.name = "INSERT INTO outputs ( prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO outputs ( prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.placeholders = 13,
.readonly = false,
},
{
.name = "UPDATE outputs SET status=? WHERE status=? AND prev_out_tx=? AND prev_out_index=?",
.query = "UPDATE outputs SET status=? WHERE status=? AND prev_out_tx=? AND prev_out_index=?",
.placeholders = 4,
.readonly = false,
},
{
.name = "UPDATE outputs SET status=? WHERE prev_out_tx=? AND prev_out_index=?",
.query = "UPDATE outputs SET status=? WHERE prev_out_tx=? AND prev_out_index=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs",
.query = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs WHERE status= ? ",
.query = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs WHERE status= ? ",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey, reserved_til FROM outputs WHERE channel_id IS NOT NULL AND confirmation_height IS NULL",
.query = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey, reserved_til FROM outputs WHERE channel_id IS NOT NULL AND confirmation_height IS NULL",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey, reserved_til FROM outputs WHERE prev_out_tx = ? AND prev_out_index = ?",
.query = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey, reserved_til FROM outputs WHERE prev_out_tx = ? AND prev_out_index = ?",
.placeholders = 2,
.readonly = true,
},
{
.name = "UPDATE outputs SET status=?, reserved_til=? WHERE prev_out_tx=? AND prev_out_index=?",
.query = "UPDATE outputs SET status=?, reserved_til=? WHERE prev_out_tx=? AND prev_out_index=?",
.placeholders = 4,
.readonly = false,
},
{
.name = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs WHERE status = ? OR (status = ? AND reserved_til <= ?)ORDER BY RANDOM();",
.query = "SELECT prev_out_tx, prev_out_index, value, type, status, keyindex, channel_id, peer_id, commitment_point, option_anchor_outputs, confirmation_height, spend_height, scriptpubkey , reserved_til FROM outputs WHERE status = ? OR (status = ? AND reserved_til <= ?)ORDER BY RANDOM();",
.placeholders = 3,
.readonly = true,
},
{
.name = "INSERT INTO shachains (min_index, num_valid) VALUES (?, 0);",
.query = "INSERT INTO shachains (min_index, num_valid) VALUES (?, 0);",
.placeholders = 1,
.readonly = false,
},
{
.name = "UPDATE shachains SET num_valid=?, min_index=? WHERE id=?",
.query = "UPDATE shachains SET num_valid=?, min_index=? WHERE id=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "UPDATE shachain_known SET idx=?, hash=? WHERE shachain_id=? AND pos=?",
.query = "UPDATE shachain_known SET idx=?, hash=? WHERE shachain_id=? AND pos=?",
.placeholders = 4,
.readonly = false,
},
{
.name = "INSERT INTO shachain_known (shachain_id, pos, idx, hash) VALUES (?, ?, ?, ?);",
.query = "INSERT INTO shachain_known (shachain_id, pos, idx, hash) VALUES (?, ?, ?, ?);",
.placeholders = 4,
.readonly = false,
},
{
.name = "SELECT min_index, num_valid FROM shachains WHERE id=?",
.query = "SELECT min_index, num_valid FROM shachains WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT idx, hash, pos FROM shachain_known WHERE shachain_id=?",
.query = "SELECT idx, hash, pos FROM shachain_known WHERE shachain_id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id, node_id, address FROM peers WHERE id=?;",
.query = "SELECT id, node_id, address FROM peers WHERE id=?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT signature FROM htlc_sigs WHERE channelid = ?",
.query = "SELECT signature FROM htlc_sigs WHERE channelid = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT remote_ann_node_sig, remote_ann_bitcoin_sig FROM channels WHERE id = ?",
.query = "SELECT remote_ann_node_sig, remote_ann_bitcoin_sig FROM channels WHERE id = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT hstate, feerate_per_kw FROM channel_feerates WHERE channel_id = ?",
.query = "SELECT hstate, feerate_per_kw FROM channel_feerates WHERE channel_id = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id FROM channels ORDER BY id DESC LIMIT 1;",
.query = "SELECT id FROM channels ORDER BY id DESC LIMIT 1;",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT id, peer_id, short_channel_id, full_channel_id, channel_config_local, channel_config_remote, state, funder, channel_flags, minimum_depth, next_index_local, next_index_remote, next_htlc_id, funding_tx_id, funding_tx_outnum, funding_satoshi, our_funding_satoshi, funding_locked_remote, push_msatoshi, msatoshi_local, fundingkey_remote, revocation_basepoint_remote, payment_basepoint_remote, htlc_basepoint_remote, delayed_payment_basepoint_remote, per_commit_remote, old_per_commit_remote, local_feerate_per_kw, remote_feerate_per_kw, shachain_remote_id, shutdown_scriptpubkey_remote, shutdown_keyidx_local, last_sent_commit_state, last_sent_commit_id, last_tx, last_sig, last_was_revoke, first_blocknum, min_possible_feerate, max_possible_feerate, msatoshi_to_us_min, msatoshi_to_us_max, future_per_commitment_point, last_sent_commit, feerate_base, feerate_ppm, remote_upfront_shutdown_script, option_static_remotekey, option_anchor_outputs, shutdown_scriptpubkey_local, funding_psbt, closer, state_change_reason FROM channels WHERE state < ?;",
.query = "SELECT id, peer_id, short_channel_id, full_channel_id, channel_config_local, channel_config_remote, state, funder, channel_flags, minimum_depth, next_index_local, next_index_remote, next_htlc_id, funding_tx_id, funding_tx_outnum, funding_satoshi, our_funding_satoshi, funding_locked_remote, push_msatoshi, msatoshi_local, fundingkey_remote, revocation_basepoint_remote, payment_basepoint_remote, htlc_basepoint_remote, delayed_payment_basepoint_remote, per_commit_remote, old_per_commit_remote, local_feerate_per_kw, remote_feerate_per_kw, shachain_remote_id, shutdown_scriptpubkey_remote, shutdown_keyidx_local, last_sent_commit_state, last_sent_commit_id, last_tx, last_sig, last_was_revoke, first_blocknum, min_possible_feerate, max_possible_feerate, msatoshi_to_us_min, msatoshi_to_us_max, future_per_commitment_point, last_sent_commit, feerate_base, feerate_ppm, remote_upfront_shutdown_script, option_static_remotekey, option_anchor_outputs, shutdown_scriptpubkey_local, funding_psbt, closer, state_change_reason FROM channels WHERE state < ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE channels SET in_payments_offered = COALESCE(in_payments_offered, 0) + 1 , in_msatoshi_offered = COALESCE(in_msatoshi_offered, 0) + ? WHERE id = ?;",
.query = "UPDATE channels SET in_payments_offered = COALESCE(in_payments_offered, 0) + 1 , in_msatoshi_offered = COALESCE(in_msatoshi_offered, 0) + ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE channels SET in_payments_fulfilled = COALESCE(in_payments_fulfilled, 0) + 1 , in_msatoshi_fulfilled = COALESCE(in_msatoshi_fulfilled, 0) + ? WHERE id = ?;",
.query = "UPDATE channels SET in_payments_fulfilled = COALESCE(in_payments_fulfilled, 0) + 1 , in_msatoshi_fulfilled = COALESCE(in_msatoshi_fulfilled, 0) + ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE channels SET out_payments_offered = COALESCE(out_payments_offered, 0) + 1 , out_msatoshi_offered = COALESCE(out_msatoshi_offered, 0) + ? WHERE id = ?;",
.query = "UPDATE channels SET out_payments_offered = COALESCE(out_payments_offered, 0) + 1 , out_msatoshi_offered = COALESCE(out_msatoshi_offered, 0) + ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "UPDATE channels SET out_payments_fulfilled = COALESCE(out_payments_fulfilled, 0) + 1 , out_msatoshi_fulfilled = COALESCE(out_msatoshi_fulfilled, 0) + ? WHERE id = ?;",
.query = "UPDATE channels SET out_payments_fulfilled = COALESCE(out_payments_fulfilled, 0) + 1 , out_msatoshi_fulfilled = COALESCE(out_msatoshi_fulfilled, 0) + ? WHERE id = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT in_payments_offered, in_payments_fulfilled, in_msatoshi_offered, in_msatoshi_fulfilled, out_payments_offered, out_payments_fulfilled, out_msatoshi_offered, out_msatoshi_fulfilled FROM channels WHERE id = ?",
.query = "SELECT in_payments_offered, in_payments_fulfilled, in_msatoshi_offered, in_msatoshi_fulfilled, out_payments_offered, out_payments_fulfilled, out_msatoshi_offered, out_msatoshi_fulfilled FROM channels WHERE id = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT MIN(height), MAX(height) FROM blocks;",
.query = "SELECT MIN(height), MAX(height) FROM blocks;",
.placeholders = 0,
.readonly = true,
},
{
.name = "INSERT INTO channel_configs DEFAULT VALUES;",
.query = "INSERT INTO channel_configs DEFAULT VALUES;",
.placeholders = 0,
.readonly = false,
},
{
.name = "UPDATE channel_configs SET dust_limit_satoshis=?, max_htlc_value_in_flight_msat=?, channel_reserve_satoshis=?, htlc_minimum_msat=?, to_self_delay=?, max_accepted_htlcs=? WHERE id=?;",
.query = "UPDATE channel_configs SET dust_limit_satoshis=?, max_htlc_value_in_flight_msat=?, channel_reserve_satoshis=?, htlc_minimum_msat=?, to_self_delay=?, max_accepted_htlcs=? WHERE id=?;",
.placeholders = 7,
.readonly = false,
},
{
.name = "SELECT id, dust_limit_satoshis, max_htlc_value_in_flight_msat, channel_reserve_satoshis, htlc_minimum_msat, to_self_delay, max_accepted_htlcs FROM channel_configs WHERE id= ? ;",
.query = "SELECT id, dust_limit_satoshis, max_htlc_value_in_flight_msat, channel_reserve_satoshis, htlc_minimum_msat, to_self_delay, max_accepted_htlcs FROM channel_configs WHERE id= ? ;",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE channels SET remote_ann_node_sig=?, remote_ann_bitcoin_sig=? WHERE id=?",
.query = "UPDATE channels SET remote_ann_node_sig=?, remote_ann_bitcoin_sig=? WHERE id=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "UPDATE channels SET shachain_remote_id=?, short_channel_id=?, full_channel_id=?, state=?, funder=?, channel_flags=?, minimum_depth=?, next_index_local=?, next_index_remote=?, next_htlc_id=?, funding_tx_id=?, funding_tx_outnum=?, funding_satoshi=?, our_funding_satoshi=?, funding_locked_remote=?, push_msatoshi=?, msatoshi_local=?, shutdown_scriptpubkey_remote=?, shutdown_keyidx_local=?, channel_config_local=?, last_tx=?, last_sig=?, last_was_revoke=?, min_possible_feerate=?, max_possible_feerate=?, msatoshi_to_us_min=?, msatoshi_to_us_max=?, feerate_base=?, feerate_ppm=?, remote_upfront_shutdown_script=?, option_static_remotekey=?, option_anchor_outputs=?, shutdown_scriptpubkey_local=?, funding_psbt=?, closer=?, state_change_reason=? WHERE id=?",
.query = "UPDATE channels SET shachain_remote_id=?, short_channel_id=?, full_channel_id=?, state=?, funder=?, channel_flags=?, minimum_depth=?, next_index_local=?, next_index_remote=?, next_htlc_id=?, funding_tx_id=?, funding_tx_outnum=?, funding_satoshi=?, our_funding_satoshi=?, funding_locked_remote=?, push_msatoshi=?, msatoshi_local=?, shutdown_scriptpubkey_remote=?, shutdown_keyidx_local=?, channel_config_local=?, last_tx=?, last_sig=?, last_was_revoke=?, min_possible_feerate=?, max_possible_feerate=?, msatoshi_to_us_min=?, msatoshi_to_us_max=?, feerate_base=?, feerate_ppm=?, remote_upfront_shutdown_script=?, option_static_remotekey=?, option_anchor_outputs=?, shutdown_scriptpubkey_local=?, funding_psbt=?, closer=?, state_change_reason=? WHERE id=?",
.placeholders = 37,
.readonly = false,
},
{
.name = "UPDATE channels SET fundingkey_remote=?, revocation_basepoint_remote=?, payment_basepoint_remote=?, htlc_basepoint_remote=?, delayed_payment_basepoint_remote=?, per_commit_remote=?, old_per_commit_remote=?, channel_config_remote=?, future_per_commitment_point=? WHERE id=?",
.query = "UPDATE channels SET fundingkey_remote=?, revocation_basepoint_remote=?, payment_basepoint_remote=?, htlc_basepoint_remote=?, delayed_payment_basepoint_remote=?, per_commit_remote=?, old_per_commit_remote=?, channel_config_remote=?, future_per_commitment_point=? WHERE id=?",
.placeholders = 10,
.readonly = false,
},
{
.name = "DELETE FROM channel_feerates WHERE channel_id=?",
.query = "DELETE FROM channel_feerates WHERE channel_id=?",
.placeholders = 1,
.readonly = false,
},
{
.name = "INSERT INTO channel_feerates VALUES(?, ?, ?)",
.query = "INSERT INTO channel_feerates VALUES(?, ?, ?)",
.placeholders = 3,
.readonly = false,
},
{
.name = "UPDATE channels SET last_sent_commit=? WHERE id=?",
.query = "UPDATE channels SET last_sent_commit=? WHERE id=?",
.placeholders = 2,
.readonly = false,
},
{
.name = "INSERT INTO channel_state_changes ( channel_id, timestamp, old_state, new_state, cause, message) VALUES (?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO channel_state_changes ( channel_id, timestamp, old_state, new_state, cause, message) VALUES (?, ?, ?, ?, ?, ?);",
.placeholders = 6,
.readonly = false,
},
{
.name = "SELECT timestamp, old_state, new_state, cause, message FROM channel_state_changes WHERE channel_id = ? ORDER BY timestamp ASC;",
.query = "SELECT timestamp, old_state, new_state, cause, message FROM channel_state_changes WHERE channel_id = ? ORDER BY timestamp ASC;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id FROM peers WHERE node_id = ?",
.query = "SELECT id FROM peers WHERE node_id = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE peers SET address = ? WHERE id = ?",
.query = "UPDATE peers SET address = ? WHERE id = ?",
.placeholders = 2,
.readonly = false,
},
{
.name = "INSERT INTO peers (node_id, address) VALUES (?, ?);",
.query = "INSERT INTO peers (node_id, address) VALUES (?, ?);",
.placeholders = 2,
.readonly = false,
},
{
.name = "INSERT INTO channels (peer_id, first_blocknum, id) VALUES (?, ?, ?);",
.query = "INSERT INTO channels (peer_id, first_blocknum, id) VALUES (?, ?, ?);",
.placeholders = 3,
.readonly = false,
},
{
.name = "DELETE FROM channel_htlcs WHERE channel_id=?",
.query = "DELETE FROM channel_htlcs WHERE channel_id=?",
.placeholders = 1,
.readonly = false,
},
{
.name = "DELETE FROM htlc_sigs WHERE channelid=?",
.query = "DELETE FROM htlc_sigs WHERE channelid=?",
.placeholders = 1,
.readonly = false,
},
{
.name = "DELETE FROM channeltxs WHERE channel_id=?",
.query = "DELETE FROM channeltxs WHERE channel_id=?",
.placeholders = 1,
.readonly = false,
},
{
.name = "DELETE FROM shachains WHERE id IN ( SELECT shachain_remote_id FROM channels WHERE channels.id=?)",
.query = "DELETE FROM shachains WHERE id IN ( SELECT shachain_remote_id FROM channels WHERE channels.id=?)",
.placeholders = 1,
.readonly = false,
},
{
.name = "UPDATE channels SET state=?, peer_id=? WHERE channels.id=?",
.query = "UPDATE channels SET state=?, peer_id=? WHERE channels.id=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "SELECT * FROM channels WHERE peer_id = ?;",
.query = "SELECT * FROM channels WHERE peer_id = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "DELETE FROM peers WHERE id=?",
.query = "DELETE FROM peers WHERE id=?",
.placeholders = 1,
.readonly = false,
},
{
.name = "UPDATE outputs SET confirmation_height = ? WHERE prev_out_tx = ?",
.query = "UPDATE outputs SET confirmation_height = ? WHERE prev_out_tx = ?",
.placeholders = 2,
.readonly = false,
},
{
.name = "INSERT INTO channel_htlcs ( channel_id, channel_htlc_id, direction, msatoshi, cltv_expiry, payment_hash, payment_key, hstate, shared_secret, routing_onion, received_time) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO channel_htlcs ( channel_id, channel_htlc_id, direction, msatoshi, cltv_expiry, payment_hash, payment_key, hstate, shared_secret, routing_onion, received_time) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.placeholders = 11,
.readonly = false,
},
{
.name = "INSERT INTO channel_htlcs ( channel_id, channel_htlc_id, direction, origin_htlc, msatoshi, cltv_expiry, payment_hash, payment_key, hstate, routing_onion, partid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO channel_htlcs ( channel_id, channel_htlc_id, direction, origin_htlc, msatoshi, cltv_expiry, payment_hash, payment_key, hstate, routing_onion, partid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.placeholders = 11,
.readonly = false,
},
{
.name = "UPDATE channel_htlcs SET hstate=?, payment_key=?, malformed_onion=?, failuremsg=?, localfailmsg=?, we_filled=? WHERE id=?",
.query = "UPDATE channel_htlcs SET hstate=?, payment_key=?, malformed_onion=?, failuremsg=?, localfailmsg=?, we_filled=? WHERE id=?",
.placeholders = 7,
.readonly = false,
},
{
.name = "SELECT id, channel_htlc_id, msatoshi, cltv_expiry, hstate, payment_hash, payment_key, routing_onion, failuremsg, malformed_onion, origin_htlc, shared_secret, received_time, we_filled FROM channel_htlcs WHERE direction= ? AND channel_id= ? AND hstate != ?",
.query = "SELECT id, channel_htlc_id, msatoshi, cltv_expiry, hstate, payment_hash, payment_key, routing_onion, failuremsg, malformed_onion, origin_htlc, shared_secret, received_time, we_filled FROM channel_htlcs WHERE direction= ? AND channel_id= ? AND hstate != ?",
.placeholders = 3,
.readonly = true,
},
{
.name = "SELECT id, channel_htlc_id, msatoshi, cltv_expiry, hstate, payment_hash, payment_key, routing_onion, failuremsg, malformed_onion, origin_htlc, shared_secret, received_time, partid, localfailmsg FROM channel_htlcs WHERE direction = ? AND channel_id = ? AND hstate != ?",
.query = "SELECT id, channel_htlc_id, msatoshi, cltv_expiry, hstate, payment_hash, payment_key, routing_onion, failuremsg, malformed_onion, origin_htlc, shared_secret, received_time, partid, localfailmsg FROM channel_htlcs WHERE direction = ? AND channel_id = ? AND hstate != ?",
.placeholders = 3,
.readonly = true,
},
{
.name = "SELECT channel_id, direction, cltv_expiry, channel_htlc_id, payment_hash FROM channel_htlcs WHERE channel_id = ?;",
.query = "SELECT channel_id, direction, cltv_expiry, channel_htlc_id, payment_hash FROM channel_htlcs WHERE channel_id = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "DELETE FROM channel_htlcs WHERE direction = ? AND origin_htlc = ? AND payment_hash = ? AND partid = ?;",
.query = "DELETE FROM channel_htlcs WHERE direction = ? AND origin_htlc = ? AND payment_hash = ? AND partid = ?;",
.placeholders = 4,
.readonly = false,
},
{
.name = "SELECT status FROM payments WHERE payment_hash=? AND partid = ?;",
.query = "SELECT status FROM payments WHERE payment_hash=? AND partid = ?;",
.placeholders = 2,
.readonly = true,
},
{
.name = "INSERT INTO payments ( status, payment_hash, destination, msatoshi, timestamp, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, total_msat, partid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO payments ( status, payment_hash, destination, msatoshi, timestamp, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, total_msat, partid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.placeholders = 13,
.readonly = false,
},
{
.name = "DELETE FROM payments WHERE payment_hash = ? AND partid = ?",
.query = "DELETE FROM payments WHERE payment_hash = ? AND partid = ?",
.placeholders = 2,
.readonly = false,
},
{
.name = "DELETE FROM payments WHERE payment_hash = ?",
.query = "DELETE FROM payments WHERE payment_hash = ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments WHERE payment_hash = ? AND partid = ?",
.query = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments WHERE payment_hash = ? AND partid = ?",
.placeholders = 2,
.readonly = true,
},
{
.name = "UPDATE payments SET status=? WHERE payment_hash=? AND partid=?",
.query = "UPDATE payments SET status=? WHERE payment_hash=? AND partid=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "UPDATE payments SET payment_preimage=? WHERE payment_hash=? AND partid=?",
.query = "UPDATE payments SET payment_preimage=? WHERE payment_hash=? AND partid=?",
.placeholders = 3,
.readonly = false,
},
{
.name = "UPDATE payments SET path_secrets = NULL , route_nodes = NULL , route_channels = NULL WHERE payment_hash = ? AND partid = ?;",
.query = "UPDATE payments SET path_secrets = NULL , route_nodes = NULL , route_channels = NULL WHERE payment_hash = ? AND partid = ?;",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, faildetail, faildirection FROM payments WHERE payment_hash=? AND partid=?;",
.query = "SELECT failonionreply, faildestperm, failindex, failcode, failnode, failchannel, failupdate, faildetail, faildirection FROM payments WHERE payment_hash=? AND partid=?;",
.placeholders = 2,
.readonly = true,
},
{
.name = "UPDATE payments SET failonionreply=? , faildestperm=? , failindex=? , failcode=? , failnode=? , failchannel=? , failupdate=? , faildetail=? , faildirection=? WHERE payment_hash=? AND partid=?;",
.query = "UPDATE payments SET failonionreply=? , faildestperm=? , failindex=? , failcode=? , failnode=? , failchannel=? , failupdate=? , faildetail=? , faildirection=? WHERE payment_hash=? AND partid=?;",
.placeholders = 11,
.readonly = false,
},
{
.name = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments WHERE payment_hash = ?;",
.query = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments WHERE payment_hash = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments ORDER BY id;",
.query = "SELECT id, status, destination, msatoshi, payment_hash, timestamp, payment_preimage, path_secrets, route_nodes, route_channels, msatoshi_sent, description, bolt11, failonionreply, total_msat, partid FROM payments ORDER BY id;",
.placeholders = 0,
.readonly = true,
},
{
.name = "DELETE FROM htlc_sigs WHERE channelid = ?",
.query = "DELETE FROM htlc_sigs WHERE channelid = ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "INSERT INTO htlc_sigs (channelid, signature) VALUES (?, ?)",
.query = "INSERT INTO htlc_sigs (channelid, signature) VALUES (?, ?)",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT blobval FROM vars WHERE name='genesis_hash'",
.query = "SELECT blobval FROM vars WHERE name='genesis_hash'",
.placeholders = 0,
.readonly = true,
},
{
.name = "INSERT INTO vars (name, blobval) VALUES ('genesis_hash', ?);",
.query = "INSERT INTO vars (name, blobval) VALUES ('genesis_hash', ?);",
.placeholders = 1,
.readonly = false,
},
{
.name = "DELETE FROM utxoset WHERE spendheight < ?",
.query = "DELETE FROM utxoset WHERE spendheight < ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "INSERT INTO blocks (height, hash, prev_hash) VALUES (?, ?, ?);",
.query = "INSERT INTO blocks (height, hash, prev_hash) VALUES (?, ?, ?);",
.placeholders = 3,
.readonly = false,
},
{
.name = "DELETE FROM blocks WHERE hash = ?",
.query = "DELETE FROM blocks WHERE hash = ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "SELECT * FROM blocks WHERE height >= ?;",
.query = "SELECT * FROM blocks WHERE height >= ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "DELETE FROM blocks WHERE height > ?",
.query = "DELETE FROM blocks WHERE height > ?",
.placeholders = 1,
.readonly = false,
},
{
.name = "UPDATE outputs SET spend_height = ?, status = ? WHERE prev_out_tx = ? AND prev_out_index = ?",
.query = "UPDATE outputs SET spend_height = ?, status = ? WHERE prev_out_tx = ? AND prev_out_index = ?",
.placeholders = 4,
.readonly = false,
},
{
.name = "UPDATE utxoset SET spendheight = ? WHERE txid = ? AND outnum = ?",
.query = "UPDATE utxoset SET spendheight = ? WHERE txid = ? AND outnum = ?",
.placeholders = 3,
.readonly = false,
},
{
.name = "INSERT INTO utxoset ( txid, outnum, blockheight, spendheight, txindex, scriptpubkey, satoshis) VALUES(?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO utxoset ( txid, outnum, blockheight, spendheight, txindex, scriptpubkey, satoshis) VALUES(?, ?, ?, ?, ?, ?, ?);",
.placeholders = 7,
.readonly = false,
},
{
.name = "SELECT height FROM blocks WHERE height = ?",
.query = "SELECT height FROM blocks WHERE height = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT txid, spendheight, scriptpubkey, satoshis FROM utxoset WHERE blockheight = ? AND txindex = ? AND outnum = ? AND spendheight IS NULL",
.query = "SELECT txid, spendheight, scriptpubkey, satoshis FROM utxoset WHERE blockheight = ? AND txindex = ? AND outnum = ? AND spendheight IS NULL",
.placeholders = 3,
.readonly = true,
},
{
.name = "SELECT blockheight, txindex, outnum FROM utxoset WHERE spendheight = ?",
.query = "SELECT blockheight, txindex, outnum FROM utxoset WHERE spendheight = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT blockheight FROM transactions WHERE id=?",
.query = "SELECT blockheight FROM transactions WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "INSERT INTO transactions ( id, blockheight, txindex, rawtx) VALUES (?, ?, ?, ?);",
.query = "INSERT INTO transactions ( id, blockheight, txindex, rawtx) VALUES (?, ?, ?, ?);",
.placeholders = 4,
.readonly = false,
},
{
.name = "UPDATE transactions SET blockheight = ?, txindex = ? WHERE id = ?",
.query = "UPDATE transactions SET blockheight = ?, txindex = ? WHERE id = ?",
.placeholders = 3,
.readonly = false,
},
{
.name = "INSERT INTO transaction_annotations (txid, idx, location, type, channel) VALUES (?, ?, ?, ?, ?) ON CONFLICT(txid,idx) DO NOTHING;",
.query = "INSERT OR IGNORE INTO transaction_annotations (txid, idx, location, type, channel) VALUES (?, ?, ?, ?, ?);",
.placeholders = 5,
.readonly = false,
},
{
.name = "SELECT type, channel_id FROM transactions WHERE id=?",
.query = "SELECT type, channel_id FROM transactions WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE transactions SET type = ?, channel_id = ? WHERE id = ?",
.query = "UPDATE transactions SET type = ?, channel_id = ? WHERE id = ?",
.placeholders = 3,
.readonly = false,
},
{
.name = "SELECT type FROM transactions WHERE id=?",
.query = "SELECT type FROM transactions WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT rawtx FROM transactions WHERE id=?",
.query = "SELECT rawtx FROM transactions WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT blockheight, txindex FROM transactions WHERE id=?",
.query = "SELECT blockheight, txindex FROM transactions WHERE id=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT id FROM transactions WHERE blockheight=?",
.query = "SELECT id FROM transactions WHERE blockheight=?",
.placeholders = 1,
.readonly = true,
},
{
.name = "INSERT INTO channeltxs ( channel_id, type, transaction_id, input_num, blockheight) VALUES (?, ?, ?, ?, ?);",
.query = "INSERT INTO channeltxs ( channel_id, type, transaction_id, input_num, blockheight) VALUES (?, ?, ?, ?, ?);",
.placeholders = 5,
.readonly = false,
},
{
.name = "SELECT DISTINCT(channel_id) FROM channeltxs WHERE type = ?;",
.query = "SELECT DISTINCT(channel_id) FROM channeltxs WHERE type = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT c.type, c.blockheight, t.rawtx, c.input_num, c.blockheight - t.blockheight + 1 AS depth, t.id as txid FROM channeltxs c JOIN transactions t ON t.id = c.transaction_id WHERE c.channel_id = ? ORDER BY c.id ASC;",
.query = "SELECT c.type, c.blockheight, t.rawtx, c.input_num, c.blockheight - t.blockheight + 1 AS depth, t.id as txid FROM channeltxs c JOIN transactions t ON t.id = c.transaction_id WHERE c.channel_id = ? ORDER BY c.id ASC;",
.placeholders = 1,
.readonly = true,
},
{
.name = "UPDATE forwarded_payments SET in_msatoshi=?, out_msatoshi=?, state=?, resolved_time=?, failcode=? WHERE in_htlc_id=?",
.query = "UPDATE forwarded_payments SET in_msatoshi=?, out_msatoshi=?, state=?, resolved_time=?, failcode=? WHERE in_htlc_id=?",
.placeholders = 6,
.readonly = false,
},
{
.name = "INSERT INTO forwarded_payments ( in_htlc_id, out_htlc_id, in_channel_scid, out_channel_scid, in_msatoshi, out_msatoshi, state, received_time, resolved_time, failcode) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.query = "INSERT INTO forwarded_payments ( in_htlc_id, out_htlc_id, in_channel_scid, out_channel_scid, in_msatoshi, out_msatoshi, state, received_time, resolved_time, failcode) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?);",
.placeholders = 10,
.readonly = false,
},
{
.name = "SELECT CAST(COALESCE(SUM(in_msatoshi - out_msatoshi), 0) AS BIGINT)FROM forwarded_payments WHERE state = ?;",
.query = "SELECT CAST(COALESCE(SUM(in_msatoshi - out_msatoshi), 0) AS INTEGER)FROM forwarded_payments WHERE state = ?;",
.placeholders = 1,
.readonly = true,
},
{
.name = "SELECT f.state, in_msatoshi, out_msatoshi, hin.payment_hash as payment_hash, in_channel_scid, out_channel_scid, f.received_time, f.resolved_time, f.failcode FROM forwarded_payments f LEFT JOIN channel_htlcs hin ON (f.in_htlc_id = hin.id)",
.query = "SELECT f.state, in_msatoshi, out_msatoshi, hin.payment_hash as payment_hash, in_channel_scid, out_channel_scid, f.received_time, f.resolved_time, f.failcode FROM forwarded_payments f LEFT JOIN channel_htlcs hin ON (f.in_htlc_id = hin.id)",
.placeholders = 0,
.readonly = true,
},
{
.name = "SELECT t.id, t.rawtx, t.blockheight, t.txindex, t.type as txtype, c2.short_channel_id as txchan, a.location, a.idx as ann_idx, a.type as annotation_type, c.short_channel_id FROM transactions t LEFT JOIN transaction_annotations a ON (a.txid = t.id) LEFT JOIN channels c ON (a.channel = c.id) LEFT JOIN channels c2 ON (t.channel_id = c2.id) ORDER BY t.blockheight, t.txindex ASC",
.query = "SELECT t.id, t.rawtx, t.blockheight, t.txindex, t.type as txtype, c2.short_channel_id as txchan, a.location, a.idx as ann_idx, a.type as annotation_type, c.short_channel_id FROM transactions t LEFT JOIN transaction_annotations a ON (a.txid = t.id) LEFT JOIN channels c ON (a.channel = c.id) LEFT JOIN channels c2 ON (t.channel_id = c2.id) ORDER BY t.blockheight, t.txindex ASC",
.placeholders = 0,
.readonly = true,
},
{
.name = "INSERT INTO penalty_bases ( channel_id, commitnum, txid, outnum, amount) VALUES (?, ?, ?, ?, ?);",
.query = "INSERT INTO penalty_bases ( channel_id, commitnum, txid, outnum, amount) VALUES (?, ?, ?, ?, ?);",
.placeholders = 5,
.readonly = false,
},
{
.name = "SELECT commitnum, txid, outnum, amount FROM penalty_bases WHERE channel_id = ?",
.query = "SELECT commitnum, txid, outnum, amount FROM penalty_bases WHERE channel_id = ?",
.placeholders = 1,
.readonly = true,
},
{
.name = "DELETE FROM penalty_bases WHERE channel_id = ? AND commitnum = ?",
.query = "DELETE FROM penalty_bases WHERE channel_id = ? AND commitnum = ?",
.placeholders = 2,
.readonly = false,
},
{
.name = "SELECT name FROM sqlite_master WHERE type='table';",
.query = "SELECT name FROM sqlite_master WHERE type='table';",
.placeholders = 0,
.readonly = true,
},
{
.name = "not a valid SQL statement",
.query = "not a valid SQL statement",
.placeholders = 0,
.readonly = false,
},
{
.name = "INSERT INTO channels (id) VALUES (1);",
.query = "INSERT INTO channels (id) VALUES (1);",
.placeholders = 0,
.readonly = false,
},
};
#define DB_SQLITE3_QUERY_COUNT 279
#endif /* HAVE_SQLITE3 */
#endif /* LIGHTNINGD_WALLET_GEN_DB_SQLITE3 */
// SHA256STAMP:fac2fa6846e0deadf6f24fc9deb6efb0bac04b5947c254ae39300663366178af