import { BN } from '@project-serum/anchor'; import { AccountMeta, PublicKey, Transaction, TransactionInstruction, TransactionSignature, } from '@solana/web3.js'; import { MangoClient } from '../../client'; import { Bank } from './bank'; import { I80F48, I80F48Dto } from './I80F48'; export class MangoAccount { public tokens: TokenAccount[]; public serum3: Serum3Account[]; static from( publicKey: PublicKey, obj: { group: PublicKey; owner: PublicKey; delegate: PublicKey; tokens: unknown; serum3: Object; perps: unknown; beingLiquidated: number; isBankrupt: number; accountNum: number; bump: number; reserved: number[]; }, ) { return new MangoAccount( publicKey, obj.group, obj.owner, obj.delegate, obj.tokens as { values: TokenAccountDto[] }, obj.serum3 as { values: Serum3AccountDto[] }, obj.perps, obj.beingLiquidated, obj.isBankrupt, obj.accountNum, obj.bump, obj.reserved, ); } constructor( public publicKey: PublicKey, public group: PublicKey, public owner: PublicKey, public delegate: PublicKey, tokens: { values: TokenAccountDto[] }, serum3: { values: Serum3AccountDto[] }, perps: unknown, beingLiquidated: number, isBankrupt: number, accountNum: number, bump: number, reserved: number[], ) { this.tokens = tokens.values.map((dto) => TokenAccount.from(dto)); this.serum3 = serum3.values.map((dto) => Serum3Account.from(dto)); } findToken(tokenIndex: number): TokenAccount | undefined { return this.tokens.find((ta) => ta.tokenIndex == tokenIndex); } getNativeDeposit(bank: Bank): I80F48 { const ta = this.findToken(bank.tokenIndex); return bank.depositIndex.mul(ta?.indexedValue!); } getNativeBorrow(bank: Bank): I80F48 { const ta = this.findToken(bank.tokenIndex); return bank.borrowIndex.mul(ta?.indexedValue!); } } export class TokenAccount { static from(dto: TokenAccountDto) { return new TokenAccount( I80F48.from(dto.indexedValue), dto.tokenIndex, dto.inUseCount, ); } constructor( public indexedValue: I80F48, public tokenIndex: number, public inUseCount: number, ) {} } export class TokenAccountDto { constructor( public indexedValue: I80F48Dto, public tokenIndex: number, public inUseCount: number, public reserved: number[], ) {} } export class Serum3Account { static Serum3MarketIndexUnset = 65535; static from(dto: Serum3AccountDto) { return new Serum3Account( dto.openOrders, dto.marketIndex, dto.baseTokenIndex, dto.quoteTokenIndex, ); } constructor( public openOrders: PublicKey, public marketIndex: number, public baseTokenIndex: number, public quoteTokenIndex: number, ) {} } export class Serum3AccountDto { constructor( public openOrders: PublicKey, public marketIndex: number, public baseTokenIndex: number, public quoteTokenIndex: number, public reserved: number[], ) {} } export async function createMangoAccount( client: MangoClient, groupPk: PublicKey, ownerPk: PublicKey, accountNumber: number, ): Promise { const tx = new Transaction(); const ix = await createMangoAccountIx( client, groupPk, ownerPk, accountNumber, ); tx.add(ix); return await client.program.provider.send(tx); } /** * * @deprecated */ export async function createMangoAccountIx( client: MangoClient, groupPk: PublicKey, ownerPk: PublicKey, accountNumber: number, ): Promise { return await client.program.methods .createAccount(accountNumber) .accounts({ group: groupPk, owner: ownerPk, payer: ownerPk, }) .signers() .instruction(); } export async function closeMangoAccount( client: MangoClient, accountPk: PublicKey, ownerPk: PublicKey, ): Promise { const tx = new Transaction(); const ix = await closeMangoAccountIx(client, accountPk, ownerPk); tx.add(ix); return await client.program.provider.send(tx); } export async function closeMangoAccountIx( client: MangoClient, accountPk: PublicKey, ownerPk: PublicKey, ): Promise { return await client.program.methods .closeAccount() .accounts({ account: accountPk, owner: ownerPk, solDestination: ownerPk, }) .instruction(); } export async function getMangoAccount( client: MangoClient, address: PublicKey, ): Promise { return MangoAccount.from( address, await client.program.account.mangoAccount.fetch(address), ); } export async function getMangoAccountsForGroup( client: MangoClient, groupPk: PublicKey, ): Promise { return ( await client.program.account.mangoAccount.all([ { memcmp: { bytes: groupPk.toBase58(), offset: 8, }, }, ]) ).map((pa) => MangoAccount.from(pa.publicKey, pa.account)); } /** * @deprecated */ export async function getMangoAccountsForGroupAndOwner( client: MangoClient, groupPk: PublicKey, ownerPk: PublicKey, ): Promise { return ( await client.program.account.mangoAccount.all([ { memcmp: { bytes: groupPk.toBase58(), offset: 8, }, }, { memcmp: { bytes: ownerPk.toBase58(), offset: 40, }, }, ]) ).map((pa) => { return MangoAccount.from(pa.publicKey, pa.account); }); } /** * @deprecated */ export async function deposit( client: MangoClient, groupPk: PublicKey, mangoAccountPk: PublicKey, bankPk: PublicKey, vaultPk: PublicKey, tokenAccountPk: PublicKey, ownerPk: PublicKey, healthRemainingAccounts: PublicKey[], amount: number, ): Promise { const tx = new Transaction(); const ix = await depositIx( client, groupPk, mangoAccountPk, bankPk, vaultPk, tokenAccountPk, ownerPk, healthRemainingAccounts, amount, ); tx.add(ix); return await client.program.provider.send(tx); } /** * @deprecated */ export async function depositIx( client: MangoClient, groupPk: PublicKey, mangoAccountPk: PublicKey, bankPk: PublicKey, vaultPk: PublicKey, tokenAccountPk: PublicKey, ownerPk: PublicKey, healthRemainingAccounts: PublicKey[], amount: number, ): Promise { return await client.program.methods .deposit(new BN(amount)) .accounts({ group: groupPk, account: mangoAccountPk, bank: bankPk, vault: vaultPk, tokenAccount: tokenAccountPk, tokenAuthority: ownerPk, }) .remainingAccounts( healthRemainingAccounts.map( (pk) => ({ pubkey: pk, isWritable: false, isSigner: false } as AccountMeta), ), ) .instruction(); } /** * @deprecated */ export async function withdraw( client: MangoClient, groupPk: PublicKey, mangoAccountPk: PublicKey, bankPk: PublicKey, vaultPk: PublicKey, tokenAccountPk: PublicKey, ownerPk: PublicKey, healthRemainingAccounts: PublicKey[], amount: number, allowBorrow: boolean, ): Promise { const tx = new Transaction(); const ix = await withdrawIx( client, groupPk, mangoAccountPk, bankPk, vaultPk, tokenAccountPk, ownerPk, healthRemainingAccounts, amount, allowBorrow, ); tx.add(ix); return await client.program.provider.send(tx); } /** * @deprecated */ export async function withdrawIx( client: MangoClient, groupPk: PublicKey, mangoAccountPk: PublicKey, bankPk: PublicKey, vaultPk: PublicKey, tokenAccountPk: PublicKey, ownerPk: PublicKey, healthRemainingAccounts: PublicKey[], amount: number, allowBorrow: boolean, ): Promise { return await client.program.methods .withdraw(new BN(amount), allowBorrow) .accounts({ group: groupPk, account: mangoAccountPk, bank: bankPk, vault: vaultPk, tokenAccount: tokenAccountPk, tokenAuthority: ownerPk, }) .remainingAccounts( healthRemainingAccounts.map( (pk) => ({ pubkey: pk, isWritable: false, isSigner: false } as AccountMeta), ), ) .instruction(); }