mango-v4/ts/example.ts

16 lines
527 B
TypeScript

import { Provider, Wallet } from '@project-serum/anchor';
import { Connection, Keypair } from '@solana/web3.js';
import { MangoClient } from './client';
async function main() {
const options = Provider.defaultOptions();
const connection = new Connection('https://api.devnet.solana.com', options);
const wallet = new Wallet(Keypair.generate());
const provider = new Provider(connection, wallet, options);
const client = await MangoClient.connect(provider, true);
// client.program.rpc.createAccount ...
}
main();