35 lines
1.1 KiB
Haskell
35 lines
1.1 KiB
Haskell
|
{- Copyright 2022-2024 Vergara Technologies LLC
|
||
|
|
||
|
This file is part of Zcash-Haskell.
|
||
|
|
||
|
Zcash-Haskell is free software: you can redistribute it and/or modify it
|
||
|
under the terms of the GNU Lesser General Public License as published by the Free
|
||
|
Software Foundation, either version 3 of the License, or (at your option) any
|
||
|
later version.
|
||
|
|
||
|
Zcash-Haskell is distributed in the hope that it will be useful, but WITHOUT
|
||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
||
|
details.
|
||
|
|
||
|
You should have received a copy of the GNU Lesser General Public License along with
|
||
|
Zcash-Haskell. If not, see <https://www.gnu.org/licenses/>.
|
||
|
|
||
|
-}
|
||
|
{-# LANGUAGE OverloadedStrings #-}
|
||
|
|
||
|
-- |
|
||
|
-- Module : ZcashHaskell.Transparent
|
||
|
-- Copyright : 2022-2024 Vergara Technologies
|
||
|
-- License : LGPL-3
|
||
|
--
|
||
|
-- Maintainer : pitmutt@vergara.tech
|
||
|
-- Stability : experimental
|
||
|
-- Portability : unknown
|
||
|
--
|
||
|
-- Functions to interact with the transparent addresses in the Zcash blockchain
|
||
|
--
|
||
|
module ZcashHaskell.Transparent where
|
||
|
|
||
|
import qualified Data.ByteString as BS
|