HenryNguyen5 b94bede473 Add "No Unused Params and Locals" Linting Rule (#297)
Add "No Unused Params and Locals" Linting Rule
2017-10-18 19:29:49 -07:00

9 lines
212 B
TypeScript

import { randomBytes } from 'crypto';
import RPCClient from '../rpc/client';
export default class InfuraClient extends RPCClient {
public id(): string {
return `0x${randomBytes(5).toString('hex')}`;
}
}