Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to the new CCV specs #20

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: bigspider/bitcoin_matt
steps:
- name: Prepare Configuration File
Expand All @@ -20,24 +20,32 @@ jobs:
- name: Run MATT-enabled bitcoind
run: |
bitcoind -regtest --daemon
- name: Set up dependencies
run: |
apt-get update
apt-get install -y libssl-dev libffi-dev
apt-get install -y python3-venv
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Clone
uses: actions/checkout@v4
- name: Install pip and pytest
- name: Install dependencies
run: |
apt-get update
apt-get install -y python3-pip
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Install pymatt
run: |
pip install .
shell: bash
- name: Create test wallet
run: bash ./examples/init.sh
- name: Run tests and capture output
run: pytest -vv
run: |
source venv/bin/activate
pytest -vv
shell: bash
- name: Upload test output as artifact
uses: actions/upload-artifact@v4
with:
Expand Down
19 changes: 16 additions & 3 deletions matt/contracts.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import hashlib

from abc import ABC, abstractmethod
from dataclasses import dataclass
from enum import Enum
Expand All @@ -11,6 +13,19 @@
from .btctools.segwit_addr import encode_segwit_address


def tweak_embed_data(key: bytes, data: bytes) -> Optional[Tuple[bytes, Optional[bool]]]:
"""
Tweaks a key with the sha256 hash of the data, returning the tweaked key and whether the result had to be negated.
If the data is empty, the key is returned as is.
"""

if len(data) == 0:
return key, None

data_tweak = hashlib.sha256(key + data).digest()
return tweak_add_pubkey(key, data_tweak)


class AbstractContract:
pass

Expand Down Expand Up @@ -317,9 +332,7 @@ def get_taptree_merkle_root(self) -> bytes:
return self.get_tr_info(b'\0'*32).merkle_root

def get_tr_info(self, data: bytes) -> TaprootInfo:
assert len(data) == 32

internal_pubkey, _ = tweak_add_pubkey(self.naked_internal_pubkey, data)
internal_pubkey, _ = tweak_embed_data(self.naked_internal_pubkey, data)

return script.taproot_construct(internal_pubkey, self.get_scripts())

Expand Down
Loading