updated airdrop request values

The current example of requesting an airdrop of 10 sol three times results in failed transactions due to the current airdrop limit of 2 sol per request and 24 sol per account per day. This PR updates the example to work within those constraints.
This commit is contained in:
T.J. Kyner 2022-04-04 15:32:29 -04:00 committed by Trent Nelson
parent b2fad8a078
commit bcbed1d5f3
1 changed files with 9 additions and 6 deletions

View File

@ -90,9 +90,12 @@ This is optional! You can skip these steps and use the [Token Lending CLI](./cli
1. Score yourself some sweet SOL:
```shell
solana airdrop -k owner.json 10
solana airdrop -k owner.json 10
solana airdrop -k owner.json 10
# Note: airdrop requests are limited to 2 sol per request and 24 sol per account per day
solana airdrop -k owner.json 2
solana airdrop -k owner.json 2
solana airdrop -k owner.json 2
solana airdrop -k owner.json 2
solana airdrop -k owner.json 2
```
You'll use this for transaction fees, rent for your program accounts, and initial reserve liquidity.
@ -111,11 +114,11 @@ This is optional! You can skip these steps and use the [Token Lending CLI](./cli
```shell
spl-token wrap \
--fee-payer owner.json \
10.0 \
5.0 \
-- owner.json
# Wrapping 10 SOL into AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY
# Wrapping 5 SOL into AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY
```
You'll use this for initial reserve liquidity. Note the SPL Token account pubkey (e.g. `AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY`).
1. Use the [Token Lending CLI](./cli/README.md) to create a lending market and add reserves to it.
1. Use the [Token Lending CLI](./cli/README.md) to create a lending market and add reserves to it.