I hereby claim:
- I am gabridome on github.
- I am gabridome (https://keybase.io/gabridome) on keybase.
- I have a public key whose fingerprint is DC47 A9B4 CF41 6373 6EBB E14E A48F BF05 1C43 F817
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that +gabridome is my openname (Bitcoin username). https://onename.com/gabridome |
measure # | wind speed | |
---|---|---|
1 | 9 | |
2 | 9 | |
3 | 6 | |
4 | 5 | |
5 | 8 | |
6 | 6 | |
7 | 9 | |
8 | 9 | |
9 | 8 |
measure # | wind speed | |
---|---|---|
1 | 9 | |
2 | 9 | |
3 | 6 | |
4 | 5 | |
5 | 8 | |
6 | 6 | |
7 | 1 <<<<<<<< | |
8 | 9 | |
9 | 8 |
measure # | wind speed | |
---|---|---|
1 | 9 | |
2 | 9 | |
3 | 6 | |
sum | 24 | |
Preceding sum | 24 | |
4 | 5 | |
5 | 6 | |
6 | 9 | |
sum | 44 |
C-lightning is pretty rich in terms of options on how to be visible and/or how to reach other nodes in the lightning network.
The purpose of this article is to put you in the condition to be reached on the Tor network in the most straightforward way I am aware of, leaving more complex and reach configurations to deeper studies. You can find the documentation [here][tordoc].
the output of the `ots info` command is in the form: | |
```` | |
$ ots info ../../Downloads/email.html.ots | |
File sha256 hash: b5054af8078852d17d1653897a99cfd3cf7a0f0d5d33bcd15961ec619c3cb19e | |
Timestamp: | |
append 40ee69f78b4e4c4094d6a6e8869c9c93 | |
sha256 | |
-> append 196ac4428094e68d57db4e99100891ae | |
sha256 |
This small guide weill help you to set up your own Electrum Server and to make it available on Tor network so that only your client is able to reach it. The necessary steps are:
#!/bin/sh | |
## | |
## This script will extract the first 5 normal addresses and the first 5 change addresses | |
## from a ledger nano S (not tested but should work with any supported hardware wallets) | |
## To have more addresses it is sufficient to change the | |
## `ku -j -s0/0-5`part as desired. So if someone wants 100 addresses after the 20th, | |
## that part will be `ku -j -s0/20-119`. | |
## Use at your own risk and check few addresses with other applications. | |
## |
To see the list of lightning transactions you have to aggregate the result of two commands:
export invoices=$(lightning-cli listinvoices|jq '[.invoices[]|select( .status == "paid" )|{"payment_hash":.payment_hash, "time":.paid_at|gmtime|todate, "amount":.msatoshi,"fees":0, "description":.description}]')
export sendpays=$(lightning-cli listsendpays|jq '[.payments[]|select(.status == "complete")|{"payment_hash":.payment_hash,"time":.created_at|gmtime|todate,"amount":(.msatoshi_sent * -1),"fees":(.msatoshi_sent - .msatoshi), "description":"payment"}]')
and then you can join the two results and sort them by "time":
jq --argjson invoices "$invoices" --argjson sendpays "$sendpays" -n '$invoices + $sendpays | sort_by(.time)'