-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClarinet.toml
More file actions
21 lines (18 loc) · 742 Bytes
/
Clarinet.toml
File metadata and controls
21 lines (18 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "bitcoin-bridge"
description = ""
authors = []
telemetry = true
cache_dir = "./.cache"
# [contracts.counter]
# path = "contracts/counter.clar"
[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