1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/TestIdGenerator.ts

8 lines
183 B
TypeScript
Raw Normal View History

2019-02-14 12:37:52 +01:00
import { generateId } from "../src/utils/GeneratorHelpers"
2019-02-14 12:37:52 +01:00
export default class TestIdGenerator {
public static generatePrefixedId() {
2019-02-14 12:37:52 +01:00
return "0x" + generateId()
}
}