-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathClarinet.toml
More file actions
36 lines (31 loc) · 838 Bytes
/
Copy pathClarinet.toml
File metadata and controls
36 lines (31 loc) · 838 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
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "stackstream"
description = "Bitcoin-native payroll streaming protocol for DAOs on Stacks"
authors = []
telemetry = false
cache_dir = "./.cache"
# SIP-010 Trait - Fungible Token Standard
[contracts.sip-010-trait]
path = "contracts/traits/sip-010-trait.clar"
clarity_version = 3
epoch = "3.0"
# Mock SIP-010 Token for Testing
[contracts.mock-sip010-token]
path = "contracts/mocks/mock-sip010-token.clar"
clarity_version = 3
epoch = "3.0"
depends_on = ["sip-010-trait"]
# Core Stream Manager Contract
[contracts.stream-manager]
path = "contracts/stream-manager.clar"
clarity_version = 3
epoch = "3.0"
depends_on = ["sip-010-trait"]
# Stream Factory Contract
[contracts.stream-factory]
path = "contracts/stream-factory.clar"
clarity_version = 3
epoch = "3.0"
depends_on = ["stream-manager"]
[repl.analysis]
passes = []