This repository has been archived by the owner on Mar 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
cardano-wallet.cabal
624 lines (599 loc) · 14.8 KB
/
cardano-wallet.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
name: cardano-wallet
version: 2.0.0
synopsis: The Wallet Backend for a Cardano node.
description: Please see README.md
homepage: https://github.com/input-output-hk/cardano-wallet
author: IOHK Engineering Team
maintainer: operations@iohk.io
copyright: 2018 IOHK
license: MIT
license-file: LICENSE
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
default-language:
Haskell2010
default-extensions:
DataKinds
DefaultSignatures
FlexibleContexts
FlexibleInstances
MonadFailDesugaring
MultiParamTypeClasses
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ghc-options:
-Wall
-Werror
-Wcompat
-fwarn-redundant-constraints
build-depends:
base
, acid-state
, aeson
, aeson-options
, aeson-pretty
, async
, base58-bytestring
, beam-core
, beam-migrate
, beam-sqlite
, bifunctors
, binary
, bytestring
, cardano-crypto
, cardano-sl
, cardano-sl-binary
, cardano-sl-chain
, cardano-sl-client
, cardano-sl-core
, cardano-sl-core-test
, cardano-sl-crypto
, cardano-sl-db
, cardano-sl-infra
, cardano-sl-mnemonic
, cardano-sl-networking
, cardano-sl-node
, cardano-sl-node-ipc
, cardano-sl-util
, cardano-sl-utxo
, cereal
, clock
, conduit
, containers
, cryptonite
, data-default
, data-default-class
, directory
, exceptions
, filepath
, foldl
, formatting
, generics-sop
, http-api-data
, http-client
, http-types
, ixset-typed
, lens
, memory
, mtl
, mwc-random
, neat-interpolation
, optparse-applicative
, QuickCheck
, reflection
, resourcet
, retry
, safecopy
, safe-exceptions
, serokell-util
, servant
, servant-client
, servant-client-core
, servant-server
, servant-swagger
, servant-swagger-ui
, servant-swagger-ui-core
, servant-swagger-ui-redoc
, sqlite-simple
, sqlite-simple-errors
, stm
, stm-chans
, strict
, strict-concurrency
, swagger2
, tar
, text
, time
, time-units
, transformers
, universum
, unliftio-core
, unordered-containers
, uuid
, vector
, wai
, wai-middleware-throttle
, warp
, zlib
hs-source-dirs:
src
exposed-modules:
Cardano.Wallet.API
Cardano.Wallet.API.Indices
Cardano.Wallet.API.Internal
Cardano.Wallet.API.Internal.Handlers
Cardano.Wallet.API.Request
Cardano.Wallet.API.Request.Filter
Cardano.Wallet.API.Request.Pagination
Cardano.Wallet.API.Request.Parameters
Cardano.Wallet.API.Request.Sort
Cardano.Wallet.API.Response
Cardano.Wallet.API.Response.Filter.IxSet
Cardano.Wallet.API.Response.JSend
Cardano.Wallet.API.Response.Sort.IxSet
Cardano.Wallet.API.Types
Cardano.Wallet.API.Types.UnitOfMeasure
Cardano.Wallet.API.V1
Cardano.Wallet.API.V1.Accounts
Cardano.Wallet.API.V1.Addresses
Cardano.Wallet.API.V1.Errors
Cardano.Wallet.API.V1.Generic
Cardano.Wallet.API.V1.Handlers
Cardano.Wallet.API.V1.Handlers.Accounts
Cardano.Wallet.API.V1.Handlers.Addresses
Cardano.Wallet.API.V1.Handlers.Info
Cardano.Wallet.API.V1.Handlers.Settings
Cardano.Wallet.API.V1.Handlers.Transactions
Cardano.Wallet.API.V1.Handlers.Wallets
Cardano.Wallet.API.V1.Headers
Cardano.Wallet.API.V1.Info
Cardano.Wallet.API.V1.Parameters
Cardano.Wallet.API.V1.ReifyWalletError
Cardano.Wallet.API.V1.Settings
Cardano.Wallet.API.V1.Swagger
Cardano.Wallet.API.V1.Swagger.Example
Cardano.Wallet.API.V1.Transactions
Cardano.Wallet.API.V1.Types
Cardano.Wallet.API.V1.Wallets
Cardano.Wallet.Action
Cardano.Wallet.Client
Cardano.Wallet.Client.Http
Cardano.Wallet.Kernel
Cardano.Wallet.Kernel.Accounts
Cardano.Wallet.Kernel.Actions
Cardano.Wallet.Kernel.AddressPool
Cardano.Wallet.Kernel.AddressPoolGap
Cardano.Wallet.Kernel.Addresses
Cardano.Wallet.Kernel.Ed25519Bip44
Cardano.Wallet.Kernel.BListener
Cardano.Wallet.Kernel.CoinSelection
Cardano.Wallet.Kernel.CoinSelection.FromGeneric
Cardano.Wallet.Kernel.CoinSelection.Generic
Cardano.Wallet.Kernel.CoinSelection.Generic.Fees
Cardano.Wallet.Kernel.CoinSelection.Generic.Grouped
Cardano.Wallet.Kernel.CoinSelection.Generic.LargestFirst
Cardano.Wallet.Kernel.CoinSelection.Generic.Random
Cardano.Wallet.Kernel.DB.AcidState
Cardano.Wallet.Kernel.DB.BlockContext
Cardano.Wallet.Kernel.DB.BlockMeta
Cardano.Wallet.Kernel.DB.Compression
Cardano.Wallet.Kernel.DB.HdWallet
Cardano.Wallet.Kernel.DB.HdRootId
Cardano.Wallet.Kernel.DB.HdWallet.Create
Cardano.Wallet.Kernel.DB.HdWallet.Delete
Cardano.Wallet.Kernel.DB.HdWallet.Derivation
Cardano.Wallet.Kernel.DB.HdWallet.Read
Cardano.Wallet.Kernel.DB.HdWallet.Update
Cardano.Wallet.Kernel.DB.InDb
Cardano.Wallet.Kernel.DB.Read
Cardano.Wallet.Kernel.DB.Resolved
Cardano.Wallet.Kernel.DB.Spec
Cardano.Wallet.Kernel.DB.Spec.Pending
Cardano.Wallet.Kernel.DB.Spec.Read
Cardano.Wallet.Kernel.DB.Spec.Update
Cardano.Wallet.Kernel.DB.Sqlite
Cardano.Wallet.Kernel.DB.TxMeta
Cardano.Wallet.Kernel.DB.TxMeta.Types
Cardano.Wallet.Kernel.DB.Updates
Cardano.Wallet.Kernel.DB.Util.AcidState
Cardano.Wallet.Kernel.DB.Util.IxSet
Cardano.Wallet.Kernel.DB.Util.Zoomable
Cardano.Wallet.Kernel.Diffusion
Cardano.Wallet.Kernel.Internal
Cardano.Wallet.Kernel.Invariants
Cardano.Wallet.Kernel.Keystore
Cardano.Wallet.Kernel.Migration
Cardano.Wallet.Kernel.Mode
Cardano.Wallet.Kernel.NodeStateAdaptor
Cardano.Wallet.Kernel.Pending
Cardano.Wallet.Kernel.Prefiltering
Cardano.Wallet.Kernel.Read
Cardano.Wallet.Kernel.Restore
Cardano.Wallet.Kernel.Submission
Cardano.Wallet.Kernel.Submission.Worker
Cardano.Wallet.Kernel.Transactions
Cardano.Wallet.Kernel.Types
Cardano.Wallet.Kernel.Util.Core
Cardano.Wallet.Kernel.Util.NonEmptyMap
Cardano.Wallet.Kernel.Util.Strict
Cardano.Wallet.Kernel.Util.StrictList
Cardano.Wallet.Kernel.Util.StrictNonEmpty
Cardano.Wallet.Kernel.Util.StrictStateT
Cardano.Wallet.Kernel.Wallets
Cardano.Wallet.NodeProxy
Cardano.Wallet.Server
Cardano.Wallet.Server.CLI
Cardano.Wallet.Server.Middlewares
Cardano.Wallet.Server.Plugins
Cardano.Wallet.Server.Plugins.AcidState
Cardano.Wallet.TypeLits
Cardano.Wallet.Types.UtxoStatistics
Cardano.Wallet.Util
Cardano.Wallet.WalletLayer
Cardano.Wallet.WalletLayer.ExecutionTimeLimit
Cardano.Wallet.WalletLayer.Kernel
Cardano.Wallet.WalletLayer.Kernel.Accounts
Cardano.Wallet.WalletLayer.Kernel.Active
Cardano.Wallet.WalletLayer.Kernel.Addresses
Cardano.Wallet.WalletLayer.Kernel.Conv
Cardano.Wallet.WalletLayer.Kernel.Internal
Cardano.Wallet.WalletLayer.Kernel.Transactions
Cardano.Wallet.WalletLayer.Kernel.Wallets
other-modules:
Paths_cardano_wallet
executable cardano-wallet-server
default-language:
Haskell2010
default-extensions:
DataKinds
DefaultSignatures
FlexibleContexts
FlexibleInstances
MonadFailDesugaring
MultiParamTypeClasses
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ghc-options:
-threaded -rtsopts
-Wall
-O2
build-depends:
base
, cardano-sl
, cardano-sl-util
, cardano-wallet
, universum
hs-source-dirs:
app/server
main-is:
Main.hs
executable cardano-wallet-generate-swagger
default-language:
Haskell2010
default-extensions:
FlexibleContexts
MonadFailDesugaring
NoImplicitPrelude
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TypeApplications
TypeOperators
ghc-options:
-threaded -rtsopts
-Wall
-fno-warn-orphans
-O2
build-depends:
base
, aeson
, bytestring
, cardano-sl-chain
, cardano-sl-util
, cardano-wallet
, optparse-applicative
, swagger2
, universum >= 0.1.11
hs-source-dirs:
app/generate-swagger
main-is:
Main.hs
test-suite unit
default-language:
Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
DeriveGeneric
FlexibleContexts
FlexibleInstances
GADTs
InstanceSigs
LambdaCase
MultiParamTypeClasses
MultiWayIf
NoImplicitPrelude
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
other-extensions:
DeriveAnyClass
GeneralizedNewtypeDeriving
UndecidableInstances
ghc-options:
-threaded -rtsopts
-Wall
-Werror
-O2
build-depends:
base
, acid-state
, aeson
, bytestring
, cardano-crypto
, cardano-sl
, cardano-sl-binary
, cardano-sl-chain
, cardano-sl-chain-test
, cardano-sl-client
, cardano-sl-core
, cardano-sl-core-test
, cardano-sl-crypto
, cardano-sl-db
, cardano-sl-infra
, cardano-sl-mnemonic
, cardano-sl-util
, cardano-sl-util-test
, cardano-sl-utxo
, cardano-wallet
, cereal
, conduit
, containers
, cryptonite
, data-default
, directory
, formatting
, hedgehog
, hspec
, hspec-core
, insert-ordered-containers
, lens
, mtl
, normaldistribution
, QuickCheck
, quickcheck-instances
, random
, safe-exceptions
, safecopy
, serokell-util
, servant
, servant-server
, servant-swagger
, string-conv
, swagger2
, tabl
, text
, time
, time-units
, universum
, unordered-containers
, vector
type:
exitcode-stdio-1.0
hs-source-dirs:
test/unit
main-is:
Main.hs
other-modules:
API.MarshallingSpec
API.RequestSpec
API.SwaggerSpec
Arbitrary
Golden.APILayout
Golden.APIV1Types
Golden.Ed25519Addresses
Golden.WalletError
Test.Infrastructure.Generator
Test.Infrastructure.Genesis
Test.Spec.Accounts
Test.Spec.AddressPool
Test.Spec.AddressPoolGap
Test.Spec.Addresses
Test.Spec.BlockMetaScenarios
Test.Spec.CoinSelection
Test.Spec.CoinSelection.Generators
Test.Spec.DeltaCompression
Test.Spec.Ed25519Bip44
Test.Spec.Fixture
Test.Spec.GetTransactions
Test.Spec.Kernel
Test.Spec.Keystore
Test.Spec.Models
Test.Spec.NewPayment
Test.Spec.Submission
Test.Spec.Translation
Test.Spec.TxMetaScenarios
Test.Spec.TxMetaStorage
Test.Spec.WalletWorker
Test.Spec.Wallets
UTxO.ToCardano.Interpreter
Util.Buildable
Util.Buildable.Hspec
Util.Buildable.QuickCheck
Util.Prefiltering
Wallet.Abstract
Wallet.Basic
Wallet.Incremental
Wallet.Inductive
Wallet.Inductive.Cardano
Wallet.Inductive.ExtWalletEvent
Wallet.Inductive.Generator
Wallet.Inductive.History
Wallet.Inductive.Interpreter
Wallet.Inductive.Invariants
Wallet.Inductive.Validation
Wallet.Prefiltered
Wallet.Rollback.Basic
Wallet.Rollback.Full
-- can be factored into a library later
Servant.JsendCompliance
test-suite nightly
default-language:
Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
DeriveGeneric
FlexibleContexts
FlexibleInstances
GADTs
InstanceSigs
LambdaCase
MultiParamTypeClasses
MultiWayIf
NoImplicitPrelude
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeFamilies
TypeOperators
ghc-options:
-threaded -rtsopts
-Wall
-Werror
-O2
build-depends:
base
, async
, cardano-sl-chain
, cardano-sl-core
, cardano-wallet
, formatting
, hspec
, hspec-core
, QuickCheck
, safe-exceptions
, serokell-util
, text
, universum
type:
exitcode-stdio-1.0
hs-source-dirs:
test/nightly
main-is:
Main.hs
other-modules:
TxMetaStorage
test-suite integration
default-language:
Haskell2010
default-extensions:
ConstraintKinds
DataKinds
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
NoImplicitPrelude
NoMonomorphismRestriction
OverloadedLabels
OverloadedStrings
QuasiQuotes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ghc-options:
-threaded -rtsopts
-Wall
-Werror
-O2
build-depends:
base
, QuickCheck
, servant-client
, aeson
, aeson-qq
, async
, bytestring
, cardano-sl
, cardano-sl-chain
, cardano-sl-client
, cardano-sl-cluster
, cardano-sl-core
, cardano-sl-crypto
, cardano-sl-mnemonic
, cardano-sl-util
, cardano-wallet
, containers
, cryptonite
, directory
, data-default
, filepath
, formatting
, generic-lens
, hspec
, hspec-core
, hspec-expectations-lifted
, http-api-data
, http-client
, http-types
, memory
, optparse-applicative
, servant-client-core
, template-haskell
, text
, universum
type:
exitcode-stdio-1.0
hs-source-dirs:
test/integration
main-is:
Main.hs
other-modules:
Test.Integration.Documentation
Test.Integration.Framework.Cluster
Test.Integration.Framework.DSL
Test.Integration.Framework.Request
Test.Integration.Framework.Scenario
Test.Integration.Scenario.Accounts
Test.Integration.Scenario.Addresses
Test.Integration.Scenario.EosWallets
Test.Integration.Scenario.Transactions
Test.Integration.Scenario.Wallets
Test.Integration.Scenario.Node