mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-03-02 19:50:38 +00:00
9 lines
212 B
TypeScript
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')}`;
|
|
}
|
|
}
|