diff --git a/examples/examples.ts b/examples/examples.ts new file mode 100644 index 0000000..d6d9afa --- /dev/null +++ b/examples/examples.ts @@ -0,0 +1,10 @@ +import { MaestroClient, Configuration } from '../dist'; + +let maestroClient = new MaestroClient( + new Configuration({ + apiKey: '', + network: 'Preprod', + }), +); + +maestroClient.blocks.blockLatest().then((x) => console.log(x.data));