Haskell SDK for the Maestro Dapp Platform
- Add
maestro-sdkto thebuild-dependsof your project. - Create a Maestro API key.
- Create environment for accessing the API:
import Maestro.Client.Env
myEnvPreprod <- mkMaestroEnv @'V0 "Your-API-Key" Preprod
myEnvMainnet <- mkMaestroEnv @'V0 "Your-API-Key" Mainnet- Example: chain tip
getChainTip myEnvPreprod -- Preprod
getChainTip myEnvMainnet -- MainnetOther endpoints in the General category can be exmained in the Maestro.Client.General Haddock module.
Meastro welcomes all contributors! Please see our contributing guidelines and code of conduct.