I've created two addresses using the nodejs javascript library 'bitcoinjs-lib' version 5.2.0. In both cases if I enter them into blockchain.com, they show a zero balance with zero transactions. I would expect no result to come back at all, and if I change one character in the middle of the address I get what I would have expected from the beginning, 'no address found'. Is this library compromised?
Code snippet for the curious:
const bitcoin = require('bitcoinjs-lib');
// Generate a new key pair
const keyPair = bitcoin.ECPair.makeRandom();
const privateKey = keyPair.toWIF();
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey });
console.log('Private Key:', privateKey);
console.log('Address:', address);