From e33f292d8a67ee35b08c4b22ef0052c7f49c4979 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Sat, 25 Jan 2025 20:13:16 +0000 Subject: [PATCH] do not log kp --- src/utils/keypair.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils/keypair.ts b/src/utils/keypair.ts index 1b62f1f4..f65f6d98 100644 --- a/src/utils/keypair.ts +++ b/src/utils/keypair.ts @@ -4,13 +4,9 @@ import { Transaction, VersionedTransaction, } from "@solana/web3.js"; -import bs58 from "bs58"; export const keypair = Keypair.generate(); -console.log(keypair.publicKey.toString()); -console.log(bs58.encode(keypair.secretKey)); - export class Wallet { private _signer: Keypair;