f-o-a-m / kepler

A Haskell framework that facilitates writing ABCI applications
https://kepler.dev
Apache License 2.0
34 stars 9 forks source link

Separate different roots, abstract away application setup #136

Closed martyall closed 4 years ago

martyall commented 4 years ago

fixes #132

fixes #108

Misc.

└── Tendermint
    └── SDK
        ├── Application
        │   ├── App.hs
        │   ├── Handlers.hs
        │   └── Module.hs
        ├── Application.hs
        ├── BaseApp
        │   ├── BaseApp.hs
        │   ├── CoreEff.hs
        │   ├── Errors.hs
        │   ├── Events.hs
        │   ├── Gas.hs
        │   ├── Logger
        │   │   └── Katip.hs
        │   ├── Logger.hs
        │   ├── Query
        │   │   ├── Class.hs
        │   │   ├── Client.hs
        │   │   ├── Delayed.hs
        │   │   ├── Router.hs
        │   │   ├── Store.hs
        │   │   └── Types.hs
        │   ├── Query.hs
        │   ├── Store
        │   │   ├── AuthTreeStore.hs
        │   │   ├── RawStore.hs
        │   │   └── Scope.hs
        │   └── Store.hs
        ├── BaseApp.hs
        ├── Codec.hs
        ├── Crypto.hs
        ├── Modules
        │   └── Auth.hs
        └── Types
            ├── Address.hs
            ├── Message.hs
            ├── Transaction.hs
            └── TxResult.hs