-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move compiled scripts files to geniusyield-dex-api package
- Loading branch information
1 parent
0470c77
commit af7c356
Showing
10 changed files
with
35 additions
and
55 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
cabal-version: 3.6 | ||
name: geniusyield-dex-api | ||
cabal-version: 3.6 | ||
name: geniusyield-dex-api | ||
|
||
-- PVP summary: +-+------- breaking API changes | ||
-- | | +----- non-breaking API additions | ||
-- | | | +--- code changes with no API change | ||
version: 0.1.0.0 | ||
version: 0.1.0.0 | ||
synopsis: API code to interact with GeniusYield DEX. | ||
description: | ||
API code to interact with GeniusYield DEX. Learn more about GeniusYield by visiting https://www.geniusyield.co/. | ||
|
||
synopsis: API code to interact with GeniusYield DEX. | ||
description: API code to interact with GeniusYield DEX. Learn more about GeniusYield by visiting https://www.geniusyield.co/. | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: GeniusYield | ||
maintainer: [email protected] | ||
copyright: 2023 GYELD GMBH | ||
build-type: Simple | ||
category: Blockchain, Cardano, Validator | ||
extra-doc-files: CHANGELOG.md, README.md | ||
extra-source-files: compiled-scripts/minting-policy, compiled-scripts/partial-order | ||
tested-with: GHC ==9.2.8 | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: GeniusYield | ||
maintainer: [email protected] | ||
copyright: 2023 GYELD GMBH | ||
build-type: Simple | ||
category: Blockchain, Cardano, Validator | ||
extra-doc-files: | ||
CHANGELOG.md | ||
README.md | ||
|
||
tested-with: GHC ==9.2.8 | ||
data-dir: data | ||
data-files: | ||
compiled-scripts/minting-policy.txt | ||
compiled-scripts/partial-order-config.uplc | ||
compiled-scripts/partial-order.txt | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -57,15 +65,19 @@ library | |
GeniusYield.Scripts | ||
GeniusYield.Scripts.Common | ||
GeniusYield.Scripts.Dex | ||
GeniusYield.Scripts.Dex.Data | ||
GeniusYield.Scripts.Dex.Nft | ||
GeniusYield.Scripts.Dex.PartialOrder | ||
GeniusYield.Scripts.Dex.PartialOrderConfig | ||
GeniusYield.Scripts.Dex.PartialOrderConfig.Internal | ||
GeniusYield.Scripts.Dex.PartialOrderNft | ||
|
||
build-depends: | ||
, base ^>=4.16.4.0 | ||
, aeson | ||
, base ^>=4.16.4.0 | ||
, bytestring | ||
, containers | ||
, file-embed | ||
, http-types | ||
, mtl | ||
, swagger2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,6 @@ maintainer: [email protected] | |
copyright: 2024 GYELD GMBH | ||
build-type: Simple | ||
category: Blockchain, Cardano | ||
data-dir: ./../data/ | ||
data-files: | ||
compiled-scripts/minting-policy.txt | ||
compiled-scripts/partial-order.txt | ||
|
||
extra-doc-files: | ||
CHANGELOG.md | ||
README.md | ||
|
@@ -66,7 +61,6 @@ library | |
GeniusYield.Server.Dex.Markets | ||
GeniusYield.Server.Dex.PartialOrder | ||
GeniusYield.Server.ErrorMiddleware | ||
GeniusYield.Server.Files | ||
GeniusYield.Server.Options | ||
GeniusYield.Server.RequestLoggerMiddleware | ||
GeniusYield.Server.Run | ||
|
@@ -91,7 +85,6 @@ library | |
, deriving-aeson | ||
, envy | ||
, fast-logger | ||
, file-embed | ||
, fmt | ||
, geniusyield-dex-api | ||
, geniusyield-orderbot | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters