Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Airdrop to id address before mint setup #7

Merged
merged 2 commits into from
Oct 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ const setup = async () => {
await connection.requestAirdrop(alicePublicKey, LAMPORTS_PER_SOL * 10);
console.log("Requesting SOL for Bob...");
await connection.requestAirdrop(bobPublicKey, LAMPORTS_PER_SOL * 10);
console.log("Requesting SOL for Id...");
await connection.requestAirdrop(IdPublicKey, LAMPORTS_PER_SOL * 10);

const [mintX, aliceTokenAccountForX, bobTokenAccountForX] = await setupMint(
"X",
Expand Down