@apocentre/bc-ur
Version:
A JS implementation of the Uniform Resources (UR) specification from Blockchain Commons
22 lines (18 loc) • 314 B
text/typescript
import Xoshiro from "./xoshiro";
(() => {
const rng = new Xoshiro(Buffer.from('Wolf'))
console.log(`🚀 ~ rng`, rng);
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
})();