diff --git a/ts/example1-admin.ts b/ts/example1-admin.ts index 11845c635..00ef0a945 100644 --- a/ts/example1-admin.ts +++ b/ts/example1-admin.ts @@ -3,6 +3,9 @@ import { Connection, Keypair, PublicKey } from '@solana/web3.js'; import fs from 'fs'; import { MangoClient } from './client'; +// +// An example for admins based on high level api i.e. the client +// async function main() { const options = Provider.defaultOptions(); const connection = new Connection( diff --git a/ts/example1-user.ts b/ts/example1-user.ts index 92ec33e21..1f3b8e65f 100644 --- a/ts/example1-user.ts +++ b/ts/example1-user.ts @@ -5,7 +5,7 @@ import { MangoAccount } from './accounts/types/mangoAccount'; import { MangoClient } from './client'; // -// An example based on high level api i.e. the client +// An example for users based on high level api i.e. the client // async function main() { const options = Provider.defaultOptions();