2021-08-14 23:52:16 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< title > Satdress - Federated Lightning Address Server< / title >
< meta charset = "utf-8" / >
< link rel = "icon" type = "image/png" href = "https://i.imgur.com/4yaPtA2.png" / >
2021-08-15 20:46:10 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2021-08-14 23:52:16 +00:00
< meta
property="og:title"
content="Satdress - Federated Lightning Address Server"
/>
< meta
property="og:type"
content="website"
/>
< meta
property="og:url"
content="https://github.com/fiatjaf/satdress"
/>
< meta
property="og:description"
content="Satdress is a Federated Lightning Address server allowing you to connect Lightning nodes to Lightning Addresses. Satdress follows the Lightning Address protocol and aims to provide an easy-to-deploy Bridge Server."
/>
< meta
property="og:image"
2021-08-15 20:46:10 +00:00
content="https://i.imgur.com/PsT2uoR.png"
2021-08-14 23:52:16 +00:00
/>
2021-08-15 20:46:10 +00:00
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:site" content = "@fiatjaf" / >
< meta name = "twitter:creator" content = "@fiatjaf" / >
< meta name = "twitter:title" content = "Satdress - Federated Lightning Address Server" / >
< meta name = "twitter:description" content = "Satdress is a Federated Lightning Address server allowing you to connect Lightning nodes to Lightning Addresses. Satdress follows the Lightning Address protocol and aims to provide an easy-to-deploy Bridge Server." / >
< meta name = "twitter:image" content = "https://i.imgur.com/PsT2uoR.png" / >
2021-08-14 23:52:16 +00:00
< / head >
< style >
body {
display: flex;
align-items: center;
background: #f3f3f3;
flex-direction: column;
font-family: 'PT Sans';
justify-content: center;
padding: 60px 20px 40px 20px;
}
2021-08-13 16:21:00 +00:00
2021-08-14 23:52:16 +00:00
.title {
font-size: 40px;
font-weight: 700;
2021-08-15 20:46:10 +00:00
text-align: center;
2021-08-14 23:52:16 +00:00
letter-spacing: 1px;
}
.tagline {
opacity: 0.7;
font-size: 18px;
font-weight: 400;
text-align: center;
letter-spacing: 0.5px;
}
.description {
opacity: 0.7;
font-size: 18px;
font-weight: 400;
max-width: 320px;
text-align: center;
margin-bottom: 40px;
letter-spacing: 0.5px;
}
.card {
max-width: 400px;
background: #fff;
border-radius: 8px;
padding: 30px 40px;
margin: 20px 0 20px;
border: 1px solid #999;
}
.submit-wrapper {
display: flex;
align-items: center;
justify-content: center;
}
.submit {
width: 100%;
color: #fff;
outline: none;
font-size: 16px;
cursor: pointer;
font-weight: 600;
margin-top: 20px;
padding: 12px 8px;
border-radius: 8px;
letter-spacing: 0.5px;
border: 1px solid rgba(86, 46, 249, 0.85);
background-color: rgba(86, 46, 249, 0.75);
}
.submit:hover {
background-color: rgba(86, 46, 249, 0.85);
}
.label {
margin: 0;
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
letter-spacing: 0.5px;
}
.input {
height: 35px;
outline: none;
padding: 0 10px;
font-size: 14px;
border-radius: 5px;
margin-bottom: 25px;
letter-spacing: 0.5px;
border: 1px solid #999;
background-color: #f3f3f3;
}
.suffix {
height: 35px;
display: inline-flex;
padding: 0 10px;
2021-08-15 20:46:10 +00:00
font-size: 16px;
font-weight: 600;
2021-08-14 23:52:16 +00:00
align-items: center;
2021-08-15 20:46:10 +00:00
word-break: break-all;
2021-08-14 23:52:16 +00:00
margin-bottom: 25px;
letter-spacing: 0.5px;
}
select {
height: 35px;
outline: none;
padding: 0 5px;
font-size: 14px;
border-radius: 5px;
margin-bottom: 25px;
letter-spacing: 0.5px;
border: 1px solid #999;
background-color: #f3f3f3;
}
label {
display: flex;
flex-direction: column;
}
.resources {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.resource-button {
padding: 8px;
color: #8062fb;
font-weight: 400;
margin-bottom: 8px;
border-radius: 7px;
text-decoration: none;
}
.resource-button:hover {
color: #8062fb;
background: rgba(42,0,255,0.1);
}
2021-08-15 20:46:10 +00:00
.owner {
display: flex;
padding-top: 5px;
align-items: center;
flex-direction: row;
justify-content: center;
}
.owner-button {
padding: 8px;
color: #8062fb;
font-weight: 400;
margin-bottom: 8px;
border-radius: 7px;
text-decoration: none;
}
.owner-button:hover {
color: #8062fb;
background: rgba(42,0,255,0.1);
}
.owner-name {
font-weight: 600;
}
@media screen and (max-width: 500px) {
body {
padding: 20px 5px 30px 5px;
}
.title {
font-size: 30px;
}
.card {
padding: 25px;
}
.tagline {
font-size: 16px;
padding: 0 10px;
}
}
2021-08-14 23:52:16 +00:00
< / style >
< body >
< main id = "main" >
2021-08-15 20:47:06 +00:00
< div class = "title" > Satdress< / div >
2021-08-14 23:52:16 +00:00
< div class = "tagline" > Federated Lightning Address Server< / div >
2021-08-15 20:46:10 +00:00
< div class = "owner" >
< a
class="owner-button"
:href="siteOwnerURL"
target="_blank">
Brought to you by < span class = "owner-name" > {{ siteOwnerName }}< / span >
< / a >
< / div >
2021-08-14 23:52:16 +00:00
< div class = "card" >
< div class = "description" > Use the form below to connect your own node to a < b > Lightning Address< / b > .< / div >
< form action = "/grab" method = "post" >
< label >
< p class = "label" >
Desired Username
< / p >
< div style = "position: relative;" >
< input class = "input" name = "name" >
< span class = "suffix" style = "position: absolute;" > @{{ domain }}< / span >
< / div >
< / label >
< label >
< p class = "label" >
2021-08-15 20:46:10 +00:00
Node Backend Type
2021-08-14 23:52:16 +00:00
< / p >
< select name = "kind" v-model = "kind" >
< option value = "lnd" > LND< / option >
< option value = "sparko" > Sparko< / option >
< option value = "lnpay" > LNPay< / option >
< option value = "lnbits" > LNbits< / option >
< / select >
< / label >
< div v-if = "kind == 'lnd'" >
< label >
< p class = "label" >
2021-08-15 20:46:10 +00:00
Host (IP or Domain + Port)
2021-08-14 23:52:16 +00:00
< / p >
< input class = "input" name = "host" >
< / label >
< label >
< p class = "label" >
2021-08-15 20:46:10 +00:00
Invoice Macaroon
2021-08-14 23:52:16 +00:00
< / p >
< input class = "input" name = "key" >
< / label >
< / div >
< div v-if = "kind == 'sparko' || kind == 'lnbits'" >
< label >
< p class = "label" >
2021-08-15 20:46:10 +00:00
Host (IP or Domain + Port)
2021-08-14 23:52:16 +00:00
< / p >
< input class = "input" name = "host" >
< / label >
< label >
< p class = "label" >
Key
< / p >
< input class = "input" name = "key" >
< / label >
< / div >
< div v-if = "kind == 'lnpay'" >
< label >
< p class = "label" >
Public Access Key (pak)
< / p >
< input class = "input" name = "pak" >
< / label >
< label >
< p class = "label" >
Wallet Invoice Key (waki)
< / p >
< input class = "input" name = "waki" >
< / label >
< / div >
< button class = "submit" > Submit< / button >
< / form >
< / div >
< div class = "resources" >
2021-08-15 20:46:10 +00:00
< a
class="resource-button"
href="https://github.com/andrerfneves/lightning-address#readme"
target="_blank">
2021-08-14 23:52:16 +00:00
Lightning Address Documentation
< / a >
2021-08-15 20:46:10 +00:00
< a
class="resource-button"
target="_blank"
href="https://github.com/fiatjaf/satdress">
Host this server on your domain!
< / a >
2021-08-14 23:52:16 +00:00
< / div >
< / main >
2021-08-15 20:46:10 +00:00
< script
src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.2.2/vue.global.prod.min.js"
>< / script >
2021-08-14 23:52:16 +00:00
< script >
2021-08-15 20:46:10 +00:00
const initial = {} // REPLACED WITH SERVER DATA // {siteOwnerName, siteOwnerURL, siteName, domain}
2021-08-14 23:52:16 +00:00
2021-08-15 20:46:10 +00:00
const Main = {
data() {
return {
kind: 'lnd',
...initial,
}
}
};
2021-08-14 23:52:16 +00:00
2021-08-15 20:46:10 +00:00
Vue.createApp(Main).mount('#main');
2021-08-14 23:52:16 +00:00
< / script >
< / body >
< / html >