-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontract-address.cabal
51 lines (43 loc) · 1 KB
/
contract-address.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
cabal-version: 2.4
name: contract-address
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
license: Apache-2.0
author: Nabin (htps://github.com/nabin6246)
maintainer: Nabin
-- A copyright notice.
-- copyright:
-- category:
-- extra-source-files: CHANGELOG.md
library plutus-example
exposed-modules:
Plutus.Contracts.V1.Simple
hs-source-dirs: plutus
build-depends:
base -any
, plutus-tx
, plutus-ledger-api
, plutus-tx-plugin
executable print-address
main-is: Main.hs
hs-source-dirs: test
build-depends:
base -any
, aeson
, bytestring
, serialise
, http-types
, text
, text-conversions
, cardano-api
, cardano-ledger-shelley
, cardano-ledger-core
, cardano-ledger-shelley-ma
, cardano-ledger-alonzo
, plutus-ledger-api
, plutus-example