mirror of https://github.com/lukechilds/vainjs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
482 B
18 lines
482 B
6 years ago
|
import test from 'ava';
|
||
|
import * as bitcoin from 'bitcoinjs-lib';
|
||
|
import Vain from '..';
|
||
|
|
||
|
test('Vain defaults to p2pkh if no address format is set', t => {
|
||
|
const options = {
|
||
|
prefix: 'A'
|
||
|
};
|
||
|
const vain = new Vain(options);
|
||
|
const {address, wif} = vain.generate();
|
||
|
|
||
|
const keyPair = bitcoin.ECPair.fromWIF(wif);
|
||
|
const {address: wifAddress} = bitcoin.payments.p2pkh({pubkey: keyPair.publicKey});
|
||
|
|
||
|
t.true(address.startsWith(`1${options.prefix}`));
|
||
|
t.is(address, wifAddress);
|
||
|
});
|