mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-03-01 11:10:28 +00:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
|
// @flow
|
||
|
import BaseNode from './base';
|
||
|
|
||
|
export default class RPCNode extends BaseNode {
|
||
|
endpoint: string;
|
||
|
constructor(endpoint: string) {
|
||
|
super();
|
||
|
this.endpoint = endpoint;
|
||
|
}
|
||
|
}
|