mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-16 23:26:45 +00:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import { Keypair } from "@solana/web3.js";
|
|
import bs58 from "bs58";
|
|
|
|
export const keypair = Keypair.generate();
|
|
|
|
console.log(keypair.publicKey.toString());
|
|
console.log(bs58.encode(keypair.secretKey));
|