Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit bcbed1d

Browse files
tjkynert-nelson
authored andcommitted
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.
1 parent b2fad8a commit bcbed1d

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

token-lending/README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,12 @@ This is optional! You can skip these steps and use the [Token Lending CLI](./cli
9090

9191
1. Score yourself some sweet SOL:
9292
```shell
93-
solana airdrop -k owner.json 10
94-
solana airdrop -k owner.json 10
95-
solana airdrop -k owner.json 10
93+
# Note: airdrop requests are limited to 2 sol per request and 24 sol per account per day
94+
solana airdrop -k owner.json 2
95+
solana airdrop -k owner.json 2
96+
solana airdrop -k owner.json 2
97+
solana airdrop -k owner.json 2
98+
solana airdrop -k owner.json 2
9699
```
97100
You'll use this for transaction fees, rent for your program accounts, and initial reserve liquidity.
98101

@@ -111,11 +114,11 @@ This is optional! You can skip these steps and use the [Token Lending CLI](./cli
111114
```shell
112115
spl-token wrap \
113116
--fee-payer owner.json \
114-
10.0 \
117+
5.0 \
115118
-- owner.json
116119

117-
# Wrapping 10 SOL into AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY
120+
# Wrapping 5 SOL into AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY
118121
```
119122
You'll use this for initial reserve liquidity. Note the SPL Token account pubkey (e.g. `AJ2sgpgj6ZeQazPPiDyTYqN9vbj58QMaZQykB9Sr6XY`).
120123

121-
1. Use the [Token Lending CLI](./cli/README.md) to create a lending market and add reserves to it.
124+
1. Use the [Token Lending CLI](./cli/README.md) to create a lending market and add reserves to it.

0 commit comments

Comments
 (0)