From ef605c84c651df12d7eeddd7d52ec4f682333b2d Mon Sep 17 00:00:00 2001 From: Wojciech Date: Sun, 10 Mar 2024 11:13:30 +0100 Subject: [PATCH] decrease eth airdroped in testnet --- src/store/sagas/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/sagas/wallet.ts b/src/store/sagas/wallet.ts index 4b8d8b1..82f9c48 100644 --- a/src/store/sagas/wallet.ts +++ b/src/store/sagas/wallet.ts @@ -175,7 +175,7 @@ export function* transferAirdropSOL(): Generator { SystemProgram.transfer({ fromPubkey: airdropAdmin.publicKey, toPubkey: wallet.publicKey, - lamports: 3000000 + lamports: 30000 }) ) const connection = yield* call(getConnection)