diff --git a/apps/marginfi-v2-docs/src/app/faqs/page.mdx b/apps/marginfi-v2-docs/src/app/faqs/page.mdx index 340850b2d1..4e6cf0fda2 100644 --- a/apps/marginfi-v2-docs/src/app/faqs/page.mdx +++ b/apps/marginfi-v2-docs/src/app/faqs/page.mdx @@ -15,6 +15,8 @@ In this guide, we will answer commonly asked questions regarding the marginfi pr at . +## + ## How are interest rates calculated? {{ tag: '', label: '' }} Interest rates are calculated based on market demand for borrowing and lending. For lenders, the interest rate increases with higher market utilization (more borrowing). For borrowers, the rate consists of a base rate plus additional fees. We currently use a simple interest model where interest accrues linearly over time, rather than compounding. diff --git a/apps/marginfi-v2-docs/src/app/rust-sdk/page.mdx b/apps/marginfi-v2-docs/src/app/rust-sdk/page.mdx index d3f15b8410..5f0f96b025 100644 --- a/apps/marginfi-v2-docs/src/app/rust-sdk/page.mdx +++ b/apps/marginfi-v2-docs/src/app/rust-sdk/page.mdx @@ -1,7 +1,7 @@ export const metadata = { - title: 'Rust (CLI) SDK', + title: '(Rust) CLI', description: - 'On this page, we’ll learn how to get started with the marginfi Rust CLI.', + 'On this page, we’ll learn how to get started with the marginfi CLI.', } # The marginfi Rust CLI @@ -9,13 +9,17 @@ export const metadata = { With the marginfi , you can interact with the marginfi protocol directly from your terminal, taking advantage of its borrowing and lending services. Built in Rust, this command-line interface simplifies the process of managing your marginfi activities. Whether you want to create a new bank, make deposits to existing banks, or perform other operations, the marginfi CLI provides a streamlined experience. {{ className: 'lead' }} - Access the Rust (CLI) SDK source code using . + Access the (Rust) CLI source code using . --- ## Installation {{ tag: '', label: '' }} + + If you are not using a Mac or Linux machine, we recommend installing everything via . + + To get started, install the latest stable Rust toolchain and set it to default: ```bash diff --git a/apps/marginfi-v2-docs/src/components/Navigation.tsx b/apps/marginfi-v2-docs/src/components/Navigation.tsx index 960522a74c..56b3fdb34f 100644 --- a/apps/marginfi-v2-docs/src/components/Navigation.tsx +++ b/apps/marginfi-v2-docs/src/components/Navigation.tsx @@ -266,12 +266,12 @@ export const navigation: Array = [ { title: 'Progressive Web App', href: '/pwa' }, ], }, - { - title: 'White Papers', - links: [ - { title: '$YBX', href: '/ybx' }, - ], - }, + // { + // title: 'White Papers', + // links: [ + // { title: '$YBX', href: '/ybx' }, + // ], + // }, ] export function Navigation(props: React.ComponentPropsWithoutRef<'nav'>) {