mirror of https://github.com/lukechilds/lnbits.git
Eneko Illarramendi
5 years ago
committed by
GitHub
33 changed files with 5068 additions and 3951 deletions
@ -0,0 +1,12 @@ |
|||
{ |
|||
"semi": false, |
|||
"arrowParens": "avoid", |
|||
"insertPragma": false, |
|||
"printWidth": 80, |
|||
"proseWrap": "preserve", |
|||
"singleQuote": true, |
|||
"trailingComma": "none", |
|||
"useTabs": false, |
|||
"jsxBracketSameLine": false, |
|||
"bracketSpacing": false |
|||
} |
@ -0,0 +1,2 @@ |
|||
prettier: |
|||
./node_modules/.bin/prettier --write lnbits/static/js/** lnbits/core/static/js/** lnbits/extensions/*/templates/** |
@ -1,4 +1,4 @@ |
|||
new Vue({ |
|||
el: '#vue', |
|||
mixins: [windowMixin] |
|||
}); |
|||
}) |
|||
|
File diff suppressed because it is too large
@ -1 +1,3 @@ |
|||
<script>console.log("{{ stall }}")</script> |
|||
<script> |
|||
console.log('{{ stall }}') |
|||
</script> |
|||
|
@ -1,11 +1,18 @@ |
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="info" |
|||
label="About TPoS"> |
|||
<q-expansion-item group="extras" icon="info" label="About TPoS"> |
|||
<q-card> |
|||
<q-card-section> |
|||
<p>Thiago's Point of Sale is a secure, mobile-ready, instant and shareable point of sale terminal (PoS) for merchants. The PoS is linked to your LNbits wallet but completely air-gapped so users can ONLY create invoices. To share the TPoS hit the hash on the terminal.</p> |
|||
<small>Created by <a href="https://github.com/talvasconcelos" target="_blank">Tiago Vasconcelos</a>.</small> |
|||
<p> |
|||
Thiago's Point of Sale is a secure, mobile-ready, instant and shareable |
|||
point of sale terminal (PoS) for merchants. The PoS is linked to your |
|||
LNbits wallet but completely air-gapped so users can ONLY create |
|||
invoices. To share the TPoS hit the hash on the terminal. |
|||
</p> |
|||
<small |
|||
>Created by |
|||
<a href="https://github.com/talvasconcelos" target="_blank" |
|||
>Tiago Vasconcelos</a |
|||
>.</small |
|||
> |
|||
</q-card-section> |
|||
</q-card> |
|||
</q-expansion-item> |
|||
|
@ -1,12 +1,29 @@ |
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="info" |
|||
label="Powered by LNURL"> |
|||
<q-expansion-item group="extras" icon="info" label="Powered by LNURL"> |
|||
<q-card> |
|||
<q-card-section> |
|||
<p><b>WARNING: LNURL must be used over https or TOR</b><br/> LNURL is a range of lightning-network standards that allow us to use lightning-network differently. An LNURL withdraw is the permission for someone to pull a certain amount of funds from a lightning wallet. In this extension time is also added - an amount can be withdraw over a period of time. A typical use case for an LNURL withdraw is a faucet, although it is a very powerful technology, with much further reaching implications. For example, an LNURL withdraw could be minted to pay for a subscription service.</p> |
|||
<p>Exploring LNURL and finding use cases, is really helping inform lightning protocol development, rather than the protocol dictating how lightning-network should be engaged with.</p> |
|||
<small>Check <a href="https://github.com/fiatjaf/awesome-lnurl" target="_blank">Awesome LNURL</a> for further information.</small> |
|||
<p> |
|||
<b>WARNING: LNURL must be used over https or TOR</b><br /> |
|||
LNURL is a range of lightning-network standards that allow us to use |
|||
lightning-network differently. An LNURL withdraw is the permission for |
|||
someone to pull a certain amount of funds from a lightning wallet. In |
|||
this extension time is also added - an amount can be withdraw over a |
|||
period of time. A typical use case for an LNURL withdraw is a faucet, |
|||
although it is a very powerful technology, with much further reaching |
|||
implications. For example, an LNURL withdraw could be minted to pay for |
|||
a subscription service. |
|||
</p> |
|||
<p> |
|||
Exploring LNURL and finding use cases, is really helping inform |
|||
lightning protocol development, rather than the protocol dictating how |
|||
lightning-network should be engaged with. |
|||
</p> |
|||
<small |
|||
>Check |
|||
<a href="https://github.com/fiatjaf/awesome-lnurl" target="_blank" |
|||
>Awesome LNURL</a |
|||
> |
|||
for further information.</small |
|||
> |
|||
</q-card-section> |
|||
</q-card> |
|||
</q-expansion-item> |
|||
|
@ -0,0 +1,5 @@ |
|||
{ |
|||
"devDependencies": { |
|||
"prettier": "^2.0.5" |
|||
} |
|||
} |
Loading…
Reference in new issue