(name: string, asHex: boolean)
| 1 | import { calculateWasmHash } from "./utils" |
| 2 | |
| 3 | const call = async (name: string, asHex: boolean) => { |
| 4 | const hash = await calculateWasmHash(name, asHex) |
| 5 | |
| 6 | console.log(hash) |
| 7 | } |
| 8 | |
| 9 | let name: string = "b3wallet" |
| 10 | let asHex: boolean = false |
no test coverage detected