1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
Return-Path: <dp@simplexum.com>
Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138])
by lists.linuxfoundation.org (Postfix) with ESMTP id 0B395C0052
for <bitcoin-dev@lists.linuxfoundation.org>;
Wed, 25 Nov 2020 11:11:13 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
by whitealder.osuosl.org (Postfix) with ESMTP id E570986DCD
for <bitcoin-dev@lists.linuxfoundation.org>;
Wed, 25 Nov 2020 11:11:12 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
Received: from whitealder.osuosl.org ([127.0.0.1])
by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id eHjzPCJvGv5z
for <bitcoin-dev@lists.linuxfoundation.org>;
Wed, 25 Nov 2020 11:11:11 +0000 (UTC)
X-Greylist: from auto-whitelisted by SQLgrey-1.7.6
Received: from mail.ruggedbytes.com (mail.ruggedbytes.com [88.99.30.248])
by whitealder.osuosl.org (Postfix) with ESMTPS id 9525786DCB
for <bitcoin-dev@lists.linuxfoundation.org>;
Wed, 25 Nov 2020 11:11:11 +0000 (UTC)
Received: from mail.ruggedbytes.com (localhost [127.0.0.1])
by mail.ruggedbytes.com (Postfix) with ESMTPS id A18C0260023D
for <bitcoin-dev@lists.linuxfoundation.org>;
Wed, 25 Nov 2020 11:11:08 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simplexum.com;
s=mail; t=1606302668;
bh=EpTEgoHWbuyjg8732WvUSwATpGUDD1MizU02ojc3+WU=;
h=Date:From:To:Subject;
b=kyYcJQYOyetBzBz5LR6AH2i0nmDQnhXmzjdz1t9FgGJPmUdvsyJpsH//WScRGbIUe
+Yp4Hi1LeARSb/ZztoqlCZmtDjSDLU7FMnlQ6I45t3NKAtdoniNpeWuJQ86urO/f3u
QHjKV4x94mQGtC2cW33WJRgxEhVdepW8YwsB0s40=
Date: Wed, 25 Nov 2020 12:15:55 +0100
From: Dmitry Petukhov <dp@simplexum.com>
To: bitcoin-dev@lists.linuxfoundation.org
Message-ID: <20201125121555.49565b3c@simplexum.com>
Organization: simplexum.com
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-Mailman-Approved-At: Wed, 25 Nov 2020 11:35:49 +0000
Subject: [bitcoin-dev] Formal specification of Miniscript in Alloy
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>,
<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>,
<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Nov 2020 11:11:13 -0000
I have created a formal specification of Miniscript [1] using
the specification language of Alloy analyzer [2]
Link: https://github.com/dgpv/miniscript-alloy-spec
Possible uses for the spec:
- Implementing Miniscript libraries, as additional reference that might
be easier to navigate than prose spec
- Generating test cases for implementations, although currently this
will be a manual process due to the tools limitation (can be overcome
with GUI automation)
- Checking the implementation against the spec, by writing a program
that would generate Alloy .als files from the data structures of the
implementation, and then checking these files in Alloy
- Extending or amending Miniscript, if the need arise. Having
extenstions and changes checked (with bounds) against a spec should
help catch inconsistencies
- Exploring the properties of Miniscript
If you have an interest in Miniscript, please consider looking at the
spec and share your ideas.
The spec may contain mistakes, as it was not yet checked against any
implementation, it was only checked for consistency using its own
predicates, with the scope of up to 8 nodes.
If you notice a mistake or inconsistency, please submit an issue on
github (or communicate this in other ways)
[1] http://bitcoin.sipa.be/miniscript/
[2] https://alloytools.org/
|