From 236690d71557b1a6eb1e6b386e5661374d4836bd Mon Sep 17 00:00:00 2001 From: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com> Date: Fri, 22 Jan 2021 23:30:03 -0600 Subject: [PATCH] chore: cleanup --- src/models/lending/obligation.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/models/lending/obligation.ts b/src/models/lending/obligation.ts index 5ed3522..f247919 100644 --- a/src/models/lending/obligation.ts +++ b/src/models/lending/obligation.ts @@ -69,19 +69,6 @@ export const healthFactorToRiskColor = (health: number) => { return ""; }; -/// Initializes a new loan obligation. -/// /// -/// 0. `[]` Deposit reserve account. /// 0. `[]` Deposit reserve account. -/// 1. `[writable]` Borrow reserve account. /// 1. `[]` Borrow reserve account. -/// 2. `[writable]` Obligation /// 2. `[writable]` Obligation -/// 3. `[writable]` Obligation token mint /// 3. `[writable]` Obligation token mint -/// 4. `[writable]` Obligation token output /// 4. `[writable]` Obligation token output -/// 5. `[]` Obligation token owner /// 5. `[]` Obligation token owner -/// 6. `[]` Lending market account. /// 6. `[]` Lending market account. -/// 7. `[]` Derived lending market authority. /// 7. `[]` Derived lending market authority. -/// 8. `[]` Clock sysvar /// 8. `[]` Clock sysvar -/// 9. `[]` Rent sysvar /// 9. `[]` Rent sysvar -/// 10 '[]` Token program id /// 10 '[]` Token program id export const initObligationInstruction = ( depositReserve: PublicKey, borrowReserve: PublicKey,