No console output yet. Run your code to see results here.
// Import the Electrum Blockchain Adapter from XO Stack.
import { BlockchainElectrum } from '@xocash/stack';

// Instantiate and start the Electrum Blockchain Adapter.
const blockchain = await BlockchainElectrum.from();

// Fetch a transaction.
const tx = await blockchain.fetchTransaction('a23bbd321067fd039da53f007b26f62591e58e6554b0488d83534c032dbca38b');

// Log it to the console.
console.log('Transaction:', tx);