Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Byron-Rewrite node's integration #1303

Merged
merged 17 commits into from
Jan 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,70 +1,2 @@
packages:
lib/*/*.cabal

package cardano-crypto
tests: False
benchmarks: False

package contra-tracer
tests: False
benchmarks: False

package iohk-monitoring
tests: False
benchmarks: False

package lobemo-backend-aggregation
tests: False
benchmarks: False

package lobemo-backend-monitoring
tests: False
benchmarks: False

package ekg-prometheus-adapter
tests: False
benchmarks: False

package zip
tests: False
benchmarks: False
flags: +disable-bzip2

source-repository-package
type: git
location: https://github.com/input-output-hk/cardano-crypto
tag: 3c5db489c71a4d70ee43f5f9b979fcde3c797f2a

source-repository-package
type: git
location: https://github.com/input-output-hk/iohk-monitoring-framework
tag: b4643defabb23b3d78f4b690a01bb6a41a3cd203
subdir: contra-tracer

source-repository-package
type: git
location: https://github.com/input-output-hk/iohk-monitoring-framework
tag: b4643defabb23b3d78f4b690a01bb6a41a3cd203
subdir: iohk-monitoring

source-repository-package
type: git
location: https://github.com/input-output-hk/iohk-monitoring-framework
tag: b4643defabb23b3d78f4b690a01bb6a41a3cd203
subdir: plugins/backend-aggregation

source-repository-package
type: git
location: https://github.com/input-output-hk/iohk-monitoring-framework
tag: b4643defabb23b3d78f4b690a01bb6a41a3cd203
subdir: plugins/backend-monitoring

source-repository-package
type: git
location: https://github.com/CodiePP/ekg-prometheus-adapter
tag: 1a258b6df7d9807d4c4ff3e99722223d31a2c320

source-repository-package
type: git
location: https://github.com/mrkkrp/zip
tag: 5a39029cebc9ad5b16ed6a5f2f495714b34b02f8
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ let
cardano-wallet-cli
cardano-wallet-core
cardano-wallet-core-integration
cardano-wallet-byron
cardano-wallet-jormungandr
cardano-wallet-launcher
cardano-wallet-test-utils
Expand Down
99 changes: 99 additions & 0 deletions lib/byron/cardano-wallet-byron.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
name: cardano-wallet-byron
version: 2020.1.21
synopsis: Wallet backend protocol-specific bits implemented using byron nodes
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
maintainer: [email protected]
copyright: 2020 IOHK
license: Apache-2.0
category: Web
build-type: Simple
cabal-version: >=1.10

flag development
description: Disable `-Werror`
default: False
manual: True

library
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-Wall
-Wcompat
-fwarn-redundant-constraints
if (!flag(development))
ghc-options:
-Werror
build-depends:
base
, async
, bytestring
, cardano-binary
, cardano-crypto
, cardano-crypto-wrapper
, cardano-ledger
, cardano-wallet-core
, cardano-wallet-launcher
, cborg
, contra-tracer
, cryptonite
, deepseq
, either
, fmt
, io-sim-classes
, iohk-monitoring
, memory
, network
, network-mux
, ouroboros-consensus
, ouroboros-network
, serialise
, text
, text-class
, time
, transformers
, typed-protocols
, typed-protocols-cbor
, warp
hs-source-dirs:
src
exposed-modules:
Cardano.Wallet.Byron
Cardano.Wallet.Byron.Compatibility
Cardano.Wallet.Byron.Network
Cardano.Wallet.Byron.Transaction
Cardano.Wallet.Byron.Transaction.Size

executable cardano-wallet-byron
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-threaded -rtsopts
-Wall
-O2
if (!flag(development))
ghc-options:
-Werror
build-depends:
base
, cardano-wallet-byron
, cardano-wallet-cli
, cardano-wallet-core
, cardano-wallet-launcher
, iohk-monitoring
, network
, optparse-applicative
, text
, text-class
hs-source-dirs:
exe
main-is:
cardano-wallet-byron.hs
Loading