forked from friedger/clarity-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClarinet.toml
54 lines (44 loc) · 1.4 KB
/
Clarinet.toml
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
[project]
name = "clarity-bitcoin"
description = ""
authors = []
telemetry = true
cache_dir = "./.cache"
[contracts.stx-account]
path = "contracts/helper-stx-account.clar"
clarity_version = 2
epoch = 2.1
[contracts.clarity-bitcoin]
path = "contracts/clarity-bitcoin.clar"
clarity_version = 2
epoch = 2.1
[contracts.clarity-bitcoin-helper]
path = "contracts/clarity-bitcoin-helper.clar"
clarity_version = 2
epoch = 2.1
[contracts.stx-oracle]
path = "contracts/stx-oracle.clar"
clarity_version = 2
epoch = 2.1
[contracts.helper]
path = "contracts/helper.clar"
clarity_version = 2
epoch = 2.1
[contracts.send-to-first-input]
path = "contracts/examples/send-to-first-input.clar"
clarity_version = 2
epoch = 2.1
[contracts.send-to-first-input-compact]
path = "contracts/examples/send-to-first-input-compact.clar"
clarity_version = 2
epoch = 2.1
[repl.analysis]
passes = ["check_checker"]
check_checker = { trusted_sender = false, trusted_caller = false, callee_filter = false }
# Check-checker settings:
# trusted_sender: if true, inputs are trusted after tx_sender has been checked.
# trusted_caller: if true, inputs are trusted after contract-caller has been checked.
# callee_filter: if true, untrusted data may be passed into a private function without a
# warning, if it gets checked inside. This check will also propagate up to the
# caller.
# More informations: https://www.hiro.so/blog/new-safety-checks-in-clarinet