-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathlight-mode-test.cabal
61 lines (58 loc) · 1.64 KB
/
light-mode-test.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
cabal-version: 2.4
name: light-mode-test
version: 0.2024.9.3
synopsis: Explore feasability of light mode
description:
This prototype explores whether we can implement a "light mode"
for cardano-wallet which aims to make synchronisation faster by
using a less trusted source for blockchain data.
.
Here, we explore the feasability of http://blockfrost.io as
a data source. Specifically:
.
* Does the data source provide enough data so that we can implement all of 'NetworkLayer'?
.
* Does it suffice to change 'NetworkLayer' to use a 'BlockSummary'?
.
The "Light" module provides detailed answers to these questions.
.
The "Demo" module contains example code for running these answers.
bug-reports: https://github.com/cardano-foundation/cardano-wallet
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2021-2022 IOHK
license: Apache-2.0
category: Cardano
extra-source-files:
CHANGELOG.md
README.md
img/*.png
data-files:
data/addresses.txt
library
default-language:
Haskell2010
default-extensions:
OverloadedStrings
build-depends:
base
, blockfrost-api
, blockfrost-client
, blockfrost-client-core
, blockfrost-pretty
, containers
, random
, transformers
, time
, text
, say
exposed-modules:
Light
Demo
other-modules:
Light.ReadBlocks
Light.StakePools
Light.SubmitTx
Light.Types
hs-source-dirs:
src