Module

Cardano.Provider

Re-exports from Cardano.Provider.Affjax

#request

request :: forall a. Request a -> Aff (Either Error (Response a))

Makes an HTTP request.

The example below performs a GET request to the URL /resource and interprets the response body as JSON.

import Affjax.ResponseFormat (json)
...
request (defaultRequest { url = "/resource", method = Left GET, responseFormat = json})

For common cases helper functions can often be used insteAX of request . For instance, the above example is equivalent to the following.

get json "/resource"

Re-exports from Cardano.Provider.Error

#ClientError

data ClientError

Constructors

Instances

#pprintServiceError

#pprintClientError

Re-exports from Cardano.Provider.ServerConfig

#ServerConfig

type ServerConfig = { host :: Host, path :: Maybe String, port :: UInt, secure :: Boolean }

#Host

type Host = String

Re-exports from Cardano.Provider.TxEvaluation

#RedeemerPointer

type RedeemerPointer = { redeemerIndex :: UInt, redeemerTag :: RedeemerTag }

#OgmiosTxOutRef

type OgmiosTxOutRef = { index :: UInt, txId :: String }

#OgmiosTxOut

type OgmiosTxOut = { address :: OgmiosAddress, datum :: Maybe String, datumHash :: Maybe String, script :: Maybe ScriptRef, value :: Value }

#OgmiosTxIn

type OgmiosTxIn = { index :: Int, txId :: OgmiosTxId }

#OgmiosTxId

#OgmiosScript

#OgmiosDatum

#OgmiosAddress

#ExecutionUnits

type ExecutionUnits = { memory :: BigNum, steps :: BigNum }

#showRedeemerPointer

Re-exports from Cardano.Provider.Type

#Provider

type Provider = { doesTxExist :: TransactionHash -> AffE Boolean, evaluateTx :: Transaction -> Map OgmiosTxOutRef OgmiosTxOut -> Aff TxEvaluationR, getChainTip :: AffE Tip, getCurrentEpoch :: Aff BigNum, getDatumByHash :: DataHash -> AffE (Maybe PlutusData), getEraSummaries :: AffE EraSummaries, getOutputAddressesByTxHash :: TransactionHash -> AffE (Array Address), getPoolIds :: AffE (Array PoolPubKeyHash), getPubKeyHashDelegationsAndRewards :: NetworkId -> StakePubKeyHash -> AffE (Maybe DelegationsAndRewards), getScriptByHash :: ScriptHash -> AffE (Maybe ScriptRef), getTxAuxiliaryData :: TransactionHash -> Aff (Either GetTxMetadataError AuxiliaryData), getUtxoByOref :: TransactionInput -> AffE (Maybe TransactionOutput), getValidatorHashDelegationsAndRewards :: NetworkId -> ScriptHash -> AffE (Maybe DelegationsAndRewards), submitTx :: Transaction -> AffE TransactionHash, utxosAt :: Address -> AffE UtxoMap }

#AffE

type AffE (a :: Type) = Aff (Either ClientError a)

Modules