bolt4

Onion routing protocol, per BOLT #4 (docs.ppad.tech/bolt4).
git clone git://git.ppad.tech/bolt4.git
Log | Files | Refs | README | LICENSE

BOLT4.hs (678B)


      1 {-# OPTIONS_HADDOCK prune #-}
      2 
      3 -- |
      4 -- Module: Lightning.Protocol.BOLT4
      5 -- Copyright: (c) 2025 Jared Tobin
      6 -- License: MIT
      7 -- Maintainer: Jared Tobin <jared@ppad.tech>
      8 --
      9 -- BOLT4 onion routing for the Lightning Network.
     10 --
     11 -- This module re-exports the public interface from submodules.
     12 
     13 module Lightning.Protocol.BOLT4 (
     14     -- * Re-exports
     15     module Lightning.Protocol.BOLT4.Blinding
     16   , module Lightning.Protocol.BOLT4.Codec
     17   , module Lightning.Protocol.BOLT4.Prim
     18   , module Lightning.Protocol.BOLT4.Types
     19   ) where
     20 
     21 import Lightning.Protocol.BOLT4.Blinding
     22 import Lightning.Protocol.BOLT4.Codec
     23 import Lightning.Protocol.BOLT4.Prim
     24 import Lightning.Protocol.BOLT4.Types