11-21-2024
BSV
$66.86
Vol 202.45m
-0.25%
BTC
$98275
Vol 113303.14m
4.8%
BCH
$484.3
Vol 2156.65m
11.12%
LTC
$89.47
Vol 1385.48m
6.96%
DOGE
$0.38
Vol 9621.23m
2.79%
Getting your Trinity Audio player ready...

This post was first published on Medium.

Following our series #1 and #2, we demonstrate how to construct non-custodial vaults, to provide enhanced security for stored bitcoins. They are typically used to protect against theft by requiring a time delay to access the funds. We can think of vault smart contracts as special accounts whose keys can be neutralized if they fall into the hands of attackers. Vaults are Bitcoin’s decentralized version of calling your bank to report a stolen credit card, rendering the attacker’s transactions null and void. This disincentives key theft in the first place, as attackers know they cannot get away with theft.

Digital asset vault

How Vaults Work

Funds locked in a vault contract can be accessed using either of two keys: a vault key, which is intended to be kept online and stored in a hot wallet, and a recovery key, which is kept securely offline in a cold wallet and used only for recovery. Typically, the vault key is used to create transactions that spend coins from the vault. Regardless of which key is used, any funds spent from the vault must pass through a time lock that holds the funds for a fixed period, such as 24 hours. This mechanism ensures that if a malicious actor obtains the vault key, they must broadcast a time-locked transaction on the blockchain before gaining access to the funds. This gives the vault owner a 24-hour window to detect the unauthorized movement of their funds and take action. During the time lock period, the contract allows the funds to be redirected to another address using the recovery key.

To spend bitcoins from a vault, two sequential steps are required:

  1. Issue a withdrawal request to move coins out of the vault through a transaction known as an unvault.
  2. Wait for a predefined period (called the unvaulting period), such as 24 hours, after the first transaction is mined before moving the coins out in a subsequent transaction.

The first transaction indicates an attempt to transfer the coins and gives the owner a chance to block the second transaction that would complete the transfer. Step 1 is similar to transferring money from a savings account to a checking account before spending it, while step 2 provides a 24-hour window to revert an unauthorized payment made from the checking account.

Implementation

The implementation of the vault mechanism using sCrypt involves three smart contracts: Trigger, Complete, and Cancel. Each is a leaf in the vault taproot as shown below.

Deposit TX screenshot
Credit: Bitlayer

Trigger

Using the covenant trick (Line 16–17), we validate the trigger transactions

  • contain two inputs and two outputs.
  • the amount in the first input matches the amount in the first output.
  • the address of the first input is identical to the address of the first output.

Complete

The Complete transactions must satisfy the following properties:

  • having two inputs and one output
  • the previous transaction is a Trigger transaction and contains the destination address in the second output. We parse the content of the previous transaction in line 20–28
  • the amount in the first output of the previous transaction matches the single output amount in the current transaction.

Cancel

Cancel transactions must ensure

  • there are exactly two inputs and one output
  • the amount of the first input matches the amount of the output.

A single run results in the following transactions:

The full code of our vault implementation can be found on GitHub. It has been previously implemented on Bitcoin SV, which has a similar but different set of opcodes.

Script versions

There are alternative implementations in bare scripts, like purrfect_vault from Taproot Wizards. One major benefit of using sCrypt for implementing these vaults is its readability and maintainability. Traditional scripts are often difficult to read and modify.

Trigger in Script

Watch: Tokens on Bitcoin? One Sat Ordinals and sCrypt

Recommended for you

David Case gets technical with Bitcoin masterclass coding sessions
Whether you're a coding pro or a novice, David Case's livestream sessions on the X platform are not to be...
November 21, 2024
NY Supreme Court’s ruling saves BTC miner Greenidge from closing
However, the judge also ruled that Greenidge must reapply for the permit and that the Department of Environmental Conservation has...
November 20, 2024
Advertisement
Advertisement
Advertisement