-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
58 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,36 @@ | ||
# Hold Template | ||
|
||
## Description | ||
|
||
Hodl time locks let’s user set specific time intervals, with a maximum of 24 months, during which their bitcoin remains locked. | ||
|
||
The hodl time lock feature prevents impulsive selling during market fluctuations and allows users to stick to their investment strategy. | ||
|
||
|
||
## Vault Configuration Example | ||
|
||
TODO | ||
|
||
## Inputs | ||
|
||
* Signer key (extended descriptor) | ||
* Timestamp or Block Height if using an absolute timelock (`after`), number of confirmed blocks if using relative timelock (`older`) | ||
|
||
## Miniscript | ||
|
||
``` | ||
and(pk(Key1),after(TimestampOrBlockHeight)) | ||
``` | ||
|
||
## Output Descriptor | ||
``` | ||
|
||
``` | ||
tr(InternalKey,and_v(v:pk(Key1),after(TimestampOrBlockHeight))) | ||
``` | ||
|
||
### Example | ||
|
||
Example Output Descriptor | ||
``` | ||
|
||
``` | ||
tr(e3e5c4a66d85841b9cea26793ef640bf7c1d26e759ae0296e643a16dad606c02,and_v(v:pk([7356e457/86'/1'/784923']tpubDCvLwbJPseNux9EtPbrbA2tgDayzptK4HNkky14Cw6msjHuqyZCE88miedZD86TZUb29Rof3sgtREU4wtzofte7QDSWDiw8ZU6ZYHmAxY9d/0/*),older(10000)))#e4gyn573 | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,42 @@ | ||
# Collaborative Custody Template | ||
|
||
## Description | ||
|
||
Collaborative custody allows users to configure the number of co-signers and the threshold required to access the vault’s bitcoin. | ||
|
||
Users can choose a 2 of 3, 3 of 5, or a custom configuration, this feature ensures that multiple trusted parties agree before a transaction takes place. It's an ideal solution for shared ownership and collaborative arrangements. | ||
|
||
## Vault Configuration Example | ||
|
||
TODO | ||
|
||
## Inputs | ||
|
||
* Threshold | ||
* List of Signers (extended descriptor) | ||
|
||
## Miniscript | ||
|
||
``` | ||
thresh( | ||
<threshold>, | ||
pk(key_1), | ||
pk(key_2), | ||
pk(key_3), | ||
... | ||
) | ||
``` | ||
|
||
## Output Descriptor | ||
``` | ||
|
||
``` | ||
tr(InternalKey,thresh(3,pk(K1),s:pk(K2),s:pk(K3))) | ||
``` | ||
|
||
### Example | ||
|
||
Example Output Descriptor | ||
``` | ||
|
||
``` | ||
tr(885db1e89516e0f0adc15ff8389320a01270a54f3b8ea4ecc705472904fc9a7e,multi_a(2,[7356e457/86'/1'/784923']tpubDCvLwbJPseNux9EtPbrbA2tgDayzptK4HNkky14Cw6msjHuqyZCE88miedZD86TZUb29Rof3sgtREU4wtzofte7QDSWDiw8ZU6ZYHmAxY9d/0/*,[4eb5d5a1/86'/1'/784923']tpubDCLskGdzStPPo1auRQygJUfbmLMwujWr7fmekdUMD7gqSpwEcRso4CfiP5GkRqfXFYkfqTujyvuehb7inymMhBJFdbJqFyHsHVRuwLKCSe9/0/*))#g52crz77 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,36 @@ | ||
# Social Recovery Template | ||
# Social Recovery Template / Inheritance | ||
|
||
## Description | ||
|
||
Social recovery keeps you in full and exclusive control of your bitcoin while enabling a recovery path in case you lose your keys. After a predefined number of months set by the user, an m of n multisig of trusted co-signers is able to move the user funds | ||
|
||
Between 20%-25% of all bitcoin has been lost forever by owners who lost their keys. This security feature helps you have a plan B, leveraging trusted connections like friends, family, or colleagues to regain access to your Bitcoin | ||
|
||
## Vault Configuration Example | ||
|
||
TODO | ||
|
||
## Inputs | ||
|
||
* Signer keys (extended descriptor): 1 + N for recovery | ||
* Timestamp or block height if using an absolute timelock (`after`), number of confirmed blocks if using relative timelock (`older`) | ||
|
||
## Miniscript | ||
|
||
``` | ||
or(1@pk(Key1),1@and(thresh(2,pk(RecoveryKey1),pk(RecoveryKey2)),after(TimestampOrBlockHeight))) | ||
``` | ||
|
||
## Output Descriptor | ||
``` | ||
|
||
``` | ||
tr(Key1,and_v(v:multi_a(2,RecoveryKey1,RecoveryKey2),after(TimestampOrBlockHeight))) | ||
``` | ||
|
||
### Example | ||
|
||
Example Output Descriptor | ||
``` | ||
|
||
``` | ||
tr([7356e457/86'/1'/784923']tpubDCvLwbJPseNux9EtPbrbA2tgDayzptK4HNkky14Cw6msjHuqyZCE88miedZD86TZUb29Rof3sgtREU4wtzofte7QDSWDiw8ZU6ZYHmAxY9d/0/*,and_v(v:multi_a(2,[4eb5d5a1/86'/1'/784923']tpubDCLskGdzStPPo1auRQygJUfbmLMwujWr7fmekdUMD7gqSpwEcRso4CfiP5GkRqfXFYkfqTujyvuehb7inymMhBJFdbJqFyHsHVRuwLKCSe9/0/*,[f3ab64d8/86'/1'/784923']tpubDCh4uyVDVretfgTNkazUarV9ESTh7DJy8yvMSuWn5PQFbTDEsJwHGSBvTrNF92kw3x5ZLFXw91gN5LYtuSCbr1Vo6mzQmD49sF2vGpReZp2/0/*),after(840000))) | ||
``` |