From 069c576f09894c2f00954b276bc749022a114731 Mon Sep 17 00:00:00 2001 From: Evgenii Akentev Date: Fri, 27 May 2022 15:50:40 +0400 Subject: [PATCH] [chain-index]: export all servant client functions --- plutus-chain-index-core/src/Plutus/ChainIndex/Client.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plutus-chain-index-core/src/Plutus/ChainIndex/Client.hs b/plutus-chain-index-core/src/Plutus/ChainIndex/Client.hs index 087693f8be..9f5a870efc 100644 --- a/plutus-chain-index-core/src/Plutus/ChainIndex/Client.hs +++ b/plutus-chain-index-core/src/Plutus/ChainIndex/Client.hs @@ -7,17 +7,23 @@ module Plutus.ChainIndex.Client( handleChainIndexClient -- * Servant client functions , healthCheck + , collectGarbage + , getDatum , getValidator , getMintingPolicy , getStakeValidator + , getRedeemer + + , getTxOut + , getTx , getUnspentTxOut , getIsUtxo , getUtxoSetAtAddress , getUtxoSetWithCurrency + , getTxs , getTxoSetAtAddress , getTip - , collectGarbage ) where import Control.Monad.Freer (Eff, LastMember, Member, sendM, type (~>))