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

Commit

Permalink
Merge pull request #7 from 0xNilsOlav/patch-1
Browse files Browse the repository at this point in the history
Airdrop to `id` address before mint setup
  • Loading branch information
paul-schaaf authored Oct 10, 2021
2 parents 7798d5d + c6ff5d6 commit 684d23a
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit 684d23a

Please sign in to comment.