Skip to content

Commit

Permalink
Add rent stub doc
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots committed May 20, 2020
1 parent 5c8ee4f commit e6239f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* [Command-line Reference](cli/usage.md)
* [Solana Clusters](clusters.md)
* [Develop Applications](apps/README.md)
* [Accounts and Rent](apps/rent.md)
* [Example: Web Wallet](apps/webwallet.md)
* [Example: Tic-Tac-Toe](apps/tictactoe.md)
* [Drones](apps/drones.md)
Expand Down
1 change: 1 addition & 0 deletions docs/src/apps/rent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Accounts and Rent
7 changes: 4 additions & 3 deletions docs/src/integrations/exchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ generate a Solana keypair using any of our [wallet tools](../wallet-guide/cli.md

We recommend using a unique deposit account for each of your users.

Solana accounts are charged rent on creation and once per epoch, but they can be
made rent-exempt if they contain 2-years worth of rent in SOL. In order to find
the minimum rent-exempt balance for your deposit accounts, query the
Solana accounts are charged [rent](../apps/rent.md) on creation and once per
epoch, but they can be made rent-exempt if they contain 2-years worth of rent in
SOL. In order to find the minimum rent-exempt balance for your deposit accounts,
query the
[`getMinimumBalanceForRentExemption` endpoint](../apps/jsonrpc-api.md#getminimumbalanceforrentexemption):

```bash
Expand Down

0 comments on commit e6239f9

Please sign in to comment.