You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { shell } from 'electron'
|
|
|
|
|
|
|
|
const testnetUrl = 'https://testnet.smartbit.com.au'
|
|
|
|
const mainnetUrl = 'https://smartbit.com.au'
|
|
|
|
|
|
|
|
const showTransaction = txid =>
|
|
|
|
shell.openExternal(`${testnetUrl}/tx/${txid}`)
|
|
|
|
|
|
|
|
const showBlock = blockHash =>
|
|
|
|
shell.openExternal(`${testnetUrl}/block/${blockHash}`)
|
|
|
|
|
|
|
|
const showChannelClosing = channel =>
|
|
|
|
showTransaction(channel.closing_txid)
|
|
|
|
|
|
|
|
const showChannelPoint = channel =>
|
|
|
|
showTransaction(channel.channel.channel_point.split(':')[0])
|
|
|
|
|
|
|
|
export default {
|
|
|
|
testnetUrl,
|
|
|
|
mainnetUrl,
|
|
|
|
showTransaction,
|
|
|
|
showBlock,
|
|
|
|
showChannelClosing,
|
|
|
|
showChannelPoint
|
|
|
|
}
|