import { v4 as uuidv4 } from 'uuid'; export function getNewTxId() { let id = `${uuidv4()}${uuidv4()}`; id = id.replace(/-/g, ''); return id.replace(/-/g, ''); }; export function getUUIDv4(){ return getNewTxId(); } export function getNativeUUIDv4(){ return uuidv4(); }