-
Notifications
You must be signed in to change notification settings - Fork 3
/
Clarinet.toml
39 lines (31 loc) · 1.16 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
[project]
name = "stx-semi-fungible-token"
authors = []
description = ""
telemetry = false
requirements = []
costs_version = 2
[contracts.fractional-nft]
path = "contracts/examples/fractional-nft.clar"
depends_on = ["sip013-semi-fungible-token-trait", "sip013-transfer-many-trait"]
[contracts.fractional-sip009-sft]
path = "contracts/examples/fractional-sip009-sft.clar"
depends_on = ["sip013-semi-fungible-token-trait", "sip013-transfer-many-trait"]
[contracts.semi-fungible-token]
path = "contracts/semi-fungible-token.clar"
depends_on = ["sip013-semi-fungible-token-trait", "sip013-transfer-many-trait"]
[contracts.sip010-ft-trait]
path = "contracts/test/sip010-ft-trait.clar"
depends_on = []
[contracts.sip013-semi-fungible-token-trait]
path = "contracts/sip013-semi-fungible-token-trait.clar"
depends_on = []
[contracts.sip013-transfer-many-trait]
path = "contracts/sip013-transfer-many-trait.clar"
depends_on = []
[contracts.test-sip010]
path = "contracts/test/test-sip010.clar"
depends_on = ["sip010-ft-trait"]
[contracts.wrapped-sip010-sft]
path = "contracts/examples/wrapped-sip010-sft.clar"
depends_on = ["sip013-semi-fungible-token-trait", "sip013-transfer-many-trait"]