mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
import * as v4 from "uuid/v4"
|
|
|
|
export default class IdGenerator {
|
|
public static generateId(): string {
|
|
const id = `${v4()}${v4()}`
|
|
return id.replace(/-/g, "")
|
|
}
|
|
|
|
public static generatePrefixedId() {
|
|
return "0x" + this.generateId()
|
|
}
|
|
}
|