Add Orchard spending key functionality #20

Merged
pitmutt merged 5 commits from rav001 into dev040 2024-03-05 21:13:15 +00:00
1 changed files with 16 additions and 0 deletions
Showing only changes of commit 53716685a8 - Show all commits

View File

@ -61,6 +61,22 @@ data ZcashNet
| RegTestNet
deriving (Eq, Prelude.Show, Read)
type AccountId = Int
-- ** Constants
-- | Types for coin types on the different networks
data CoinType
= MainNetCoin
| TestNetCoin
| RegTestNetCoin
getValue :: CoinType -> Word32
getValue c =
case c of
MainNetCoin -> 133
TestNetCoin -> 1
RegTestNetCoin -> 1
-- * RPC
-- | A type to model Zcash RPC calls
data RpcCall = RpcCall