-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClarinet.toml
More file actions
48 lines (40 loc) · 1.27 KB
/
Clarinet.toml
File metadata and controls
48 lines (40 loc) · 1.27 KB
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
[project]
name = "tipstream"
description = "A micro-tipping platform built on the Stacks blockchain"
authors = ["Mosas2000"]
telemetry = false
cache_dir = "./.cache"
requirements = []
[contracts.tipstream]
path = "contracts/tipstream.clar"
clarity_version = 2
epoch = 3.0
[contracts.tipstream-v2]
path = "contracts/tipstream-v2.clar"
clarity_version = 2
epoch = 3.0
[contracts.tipstream-traits]
path = "contracts/tipstream-traits.clar"
clarity_version = 2
epoch = 3.0
[contracts.tipstream-token]
path = "contracts/tipstream-token.clar"
clarity_version = 2
epoch = 3.0
[contracts.tipstream-multisig]
path = "contracts/tipstream-multisig.clar"
clarity_version = 2
epoch = 3.0
[repl]
costs_version = 3
parser_version = 2
[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