Skip to content

Commit e9018e6

Browse files
committed
feat: Remove the code used for debugging NFT minting at a price of 0.1 SOL sent to SOLANA_ADMIN_PUBLIC_KEY
1 parent edcf0fa commit e9018e6

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

packages/plugin-nft-generation/src/provider/wallet/walletSolana.ts

+1-9
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,7 @@ export class WalletSolana {
157157
let transaction = new TransactionBuilder();
158158
elizaLogger.log("collection address", collectionAddress);
159159
const collectionAddressKey = publicKey(collectionAddress);
160-
// Add SOL transfer instruction (0.1 SOL)
161-
const receiverAddressKey = publicKey(adminPublicKey); // Replace with actual receiver address
162-
transaction = transaction.add(
163-
transferSol(umi, {
164-
source: umi.identity,
165-
destination: receiverAddressKey,
166-
amount: sol(0.1),
167-
})
168-
);
160+
169161
const info = {
170162
name,
171163
uri,

0 commit comments

Comments
 (0)