@unspent/phi
Version:
a collection of anyone can spend contracts
24 lines (19 loc) • 659 B
text/typescript
import { RegTestWallet, UtxoI } from "mainnet-js";
export async function getAnAliceWallet(amount: number): Promise<RegTestWallet> {
const alice = await RegTestWallet.fromId(process.env["ALICE_ID"]!);
const height = await alice.provider.getBlockHeight();
let utxos = await alice.getUtxos();
utxos = utxos.filter((u) => (height - u.height!) > 100)
let randomUtxo = utxos[Math.floor(Math.random() * utxos.length)]
let newAlice = await RegTestWallet.newRandom();
await alice.send([
{
cashaddr: newAlice.getDepositAddress(),
value: amount,
unit: "satoshis",
},
], {
utxoIds: [randomUtxo]
});
return newAlice
}