Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/store/stores/settingsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class SettingsStore {
bitcoinTxUrl = BitcoinExplorerPresets['mempool.space'];

/** url to a graph explorer for Lightning nodes */
lnNodeUrl = LightningExplorerPresets['1ml.com'];
lnNodeUrl = LightningExplorerPresets['terminal'];

/** the order minimum channel size chosen by the user */
minChanSize = DEFAULT_MIN_CHAN_SIZE;
Expand Down
2 changes: 2 additions & 0 deletions app/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ export const BitcoinExplorerPresets: Record<string, string> = {

/** the list of supported Lightning graph explorers for nodes*/
export const LightningExplorerPresets: Record<string, string> = {
terminal: 'https://terminal.lightning.engineering/{pubkey}',
'amboss.space': 'https://amboss.space/node/{pubkey}',
'1ml.com': 'https://1ml.com/node/{pubkey}',
};

Expand Down