Happy to, but that's not a test net address. Should start with m or n
When i creating a new bitcoin key object and extracting the TESTNET address (using bitcoinjs-lib)
---
var bitcoin = require('bitcoinjs-lib');
var key = bitcoin.ECPair.makeRandom();
var address = key.getAddress(bitcoin.networks.testnet).toString();
console.log('new TESTNET address: ['+address+']');
=> with this code, i got "new TESTNET address: 12vd2s3tvsu3DyNr7PY3nMckwb2ZPFzpir "
I changed my code to:
var bitcoin = require('bitcoinjs-lib');
var key = bitcoin.ECPair.makeRandom({network: bitcoin.networks.testnet});
var address = key.getAddress().toString();
console.log('new TESTNET address: ['+address+']');
=> and i got "new TESTNET address: n49p5ct6GGSy6gfg3NPqcmqmxcoakY9s6v"
Thanks