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