merge liquidity and liquidation bot

This commit is contained in:
JulesCrown 2024-09-17 11:23:43 +02:00
parent af351b9cfc
commit ad0c709809
10 changed files with 173 additions and 198 deletions

View file

@ -0,0 +1,11 @@
const { Wallet } = require('ethers');
// Generate a random wallet
const wallet = Wallet.createRandom();
// Extract the private key and address
const privateKey = wallet.privateKey;
const address = wallet.address;
console.log('Private Key:', privateKey);
console.log('Address:', address);