mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-07 03:53:59 +00:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
|
class TokenUtils {
|
||
|
constructor(tokenConfig){
|
||
|
this.name = tokenConfig.name || "";
|
||
|
this.symbol = tokenConfig.symbol || "";
|
||
|
this.minRelayFactor = tokenConfig.minRelayFactor || 1;
|
||
|
}
|
||
|
|
||
|
getFactor(){
|
||
|
// TODO get price from somewhere
|
||
|
return 100000;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports = TokenUtils;
|