Library with functions to interact with the Zcash blockchain
Go to file
pitmutt 9dddb42bb3
Merge pull request 'Implement fee calculator' (#81) from rav001 into dev040
Reviewed-on: #81
2024-05-08 18:51:34 +00:00
librustzcash-wrapper Implement fee calculator 2024-05-08 13:49:39 -05:00
src Implement fee calculator 2024-05-08 13:49:39 -05:00
test Upgrade of Zcash Rust crates 2024-04-29 10:27:45 -05:00
.gitignore Update `.gitignore` 2024-02-25 17:50:47 -06:00
CHANGELOG.md Add transparent key derivation 2024-05-01 14:24:18 -05:00
LICENSE Update license to MIT 2024-01-18 12:55:23 -06:00
README.md Update install instructions 2024-02-25 16:14:04 -06:00
Setup.hs Increase verbosity of Rust compile 2024-03-03 15:29:50 -06:00
block.json Add tests for JSON parsers 2023-08-21 09:57:45 -05:00
cabal.project Upgrade `HexString` 2024-03-12 16:02:35 -05:00
cabal.project.freeze Upgrade `HexString` 2024-03-12 16:02:35 -05:00
configure Update installation package 2024-02-25 15:22:53 -06:00
tx.json Add tests for JSON parsers 2023-08-21 09:57:45 -05:00
zcash-haskell.cabal Add Read instance to Rseed 2024-04-30 19:14:30 -05:00
zebrablock.json Zebra Raw Tx deserialization (#44) 2024-03-26 14:56:10 +00:00
zebrahexblock.json Zebra Raw Tx deserialization (#44) 2024-03-26 14:56:10 +00:00
zebratx.json Zebra Raw Tx deserialization (#44) 2024-03-26 14:56:10 +00:00

README.md

zcash-haskell

A Haskell library to interact with the Zcash blockchain.

Installation

  • Install Rust and Cargo
  • Install cbuild:
    cargo install cargo-c
    
  • Install c2hs:
    stack install c2hs
    
  • Set up the paths to locate the static library:
    ./configure
    
  • Compile the Rust and Haskell portions:
    cabal build
    

Use

Add these dependencies to your stack.yaml:

  - git: https://git.vergara.tech/Vergara_Tech/zcash-haskell.git
    commit: fef3d3af35a09db718cddb8fc9166b2d2691a744
  - git: https://git.vergara.tech/Vergara_Tech/haskell-foreign-rust.git
    commit: 787c2e813eb3a5d16c375d4b37dfefbd2adcdf05
  - git: https://github.com/well-typed/borsh.git
    commit: d2fcfa159e0a844b1ec5e8ed3e232d4b380fa831
  - aeson-2.1.2.1@sha256:5b8d62a60963a925c4d123a46e42a8e235a32188522c9f119f64ac228c2612a7,6359
  - vector-0.13.0.0@sha256:fa5cac81a17a5af388716792e8b99c24b3b66770086756d0d8b23f8272a0244c,9112

Add zcash-haskell to your package.yaml as needed.