Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data ClientConfig = ClientConfig {}
- class Monad m => RunTxClient m where
- runTx :: RawTransaction -> m ResultBroadcastTxCommit
- getNonce :: Address -> m Word64
- class HasTxClient m layoutC layoutD where
- data EmptyTxClient = EmptyTxClient
- defaultClientTxOpts :: ClientTxOpts
Documentation
class Monad m => RunTxClient m where Source #
runTx :: RawTransaction -> m ResultBroadcastTxCommit Source #
How to make a request.
Instances
class HasTxClient m layoutC layoutD where Source #
genClientT :: Proxy m -> Proxy layoutC -> Proxy layoutD -> ClientTxOpts -> ClientT m layoutC layoutD Source #
Instances
data EmptyTxClient Source #
Singleton type representing a client for an empty API.
Instances
Bounded EmptyTxClient Source # | |
Defined in Tendermint.Utils.TxClient.Class | |
Enum EmptyTxClient Source # | |
Defined in Tendermint.Utils.TxClient.Class succ :: EmptyTxClient -> EmptyTxClient # pred :: EmptyTxClient -> EmptyTxClient # toEnum :: Int -> EmptyTxClient # fromEnum :: EmptyTxClient -> Int # enumFrom :: EmptyTxClient -> [EmptyTxClient] # enumFromThen :: EmptyTxClient -> EmptyTxClient -> [EmptyTxClient] # enumFromTo :: EmptyTxClient -> EmptyTxClient -> [EmptyTxClient] # enumFromThenTo :: EmptyTxClient -> EmptyTxClient -> EmptyTxClient -> [EmptyTxClient] # | |
Eq EmptyTxClient Source # | |
Defined in Tendermint.Utils.TxClient.Class (==) :: EmptyTxClient -> EmptyTxClient -> Bool # (/=) :: EmptyTxClient -> EmptyTxClient -> Bool # | |
Show EmptyTxClient Source # | |
Defined in Tendermint.Utils.TxClient.Class showsPrec :: Int -> EmptyTxClient -> ShowS # show :: EmptyTxClient -> String # showList :: [EmptyTxClient] -> ShowS # |
defaultClientTxOpts :: ClientTxOpts Source #