This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstaking-pool-sc.cabal
104 lines (101 loc) · 3.79 KB
/
staking-pool-sc.cabal
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Cabal-Version: 2.4
Name: CardanoStakingPool
Version: 0.1.0.0
Author: P2P Solutions Ltd.
Maintainer: laurynas@adafinance.io
Build-Type: Simple
library
hs-source-dirs: src
exposed-modules: MainToken
, Utils.OffChain
, Utils.ScriptContext
, Staking
, Staking.Types
, Staking.OnChain
, Staking.OffChain
, Staking.Validator
, Staking.Tokens
, Staking.Business
, Staking.Business.User
, Staking.Business.Pool
, Staking.Business.Types
build-depends: aeson
, base ^>= 4.14.1.0
, containers
, data-default
, freer-extras
, playground-common
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-tx-plugin
, plutus-tx
, plutus-use-cases
, prettyprinter
, text
, lens
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas
-fno-omit-interface-pragmas -fno-strictness
-fno-spec-constr -fno-specialise -fno-warn-orphans
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: BCExplorer
, Tests.BusinessTests
, Tests.TestUtils
, Tests.Tests
, Tests.Attacks.AttackUtils
, Tests.Attacks.Claim
, Tests.Attacks.Compound
, Tests.Attacks.Deposit
, Tests.Attacks.Feed
, Tests.Attacks.Withdraw
, Tests.OnChain.Claim
, Tests.OnChain.Compound
, Tests.OnChain.Deposit
, Tests.OnChain.Feed
, Tests.OnChain.Withdraw
, Tests.OffChain.Claim
, Tests.OffChain.Compound
, Tests.OffChain.Deposit
, Tests.OffChain.Feed
, Tests.OffChain.Register
, Tests.OffChain.Start
, Tests.OffChain.Unregister
, Tests.OffChain.Withdraw
-- , Tests.OffChain.UseCaseTests
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas
-fno-omit-interface-pragmas -fno-strictness
-fno-spec-constr -fno-specialise
build-depends: base ^>=4.14.1.0
, aeson
, ansi-terminal
, containers
, data-default
, freer-extras
, playground-common
, plutus-pab
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-tx-plugin
, plutus-tx
, plutus-use-cases
, prettyprinter
, text
, freer-simple
, lens <= 4.19.2
, plutus-core
, bytestring
, tasty
, tasty-hunit
, QuickCheck
, tasty-quickcheck
, text
, prettyprinter
, strict-containers
, P2PStakingPool
, foldl