merge liquidity and liquidation bot
This commit is contained in:
parent
af351b9cfc
commit
ad0c709809
10 changed files with 173 additions and 198 deletions
11
services/txnBot/generateKey.js
Normal file
11
services/txnBot/generateKey.js
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue