We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07bb61 commit 987fe03Copy full SHA for 987fe03
src/ethereum/ethEngine.js
@@ -63,6 +63,7 @@ export class EthereumEngine extends CurrencyEngine {
63
ethNetwork: EthereumNetwork
64
lastEstimatedGasLimit: LastEstimatedGasLimit
65
fetchCors: EdgeFetchFunction
66
+ otherMethods: Object
67
68
constructor(
69
currencyPlugin: EthereumPlugin,
@@ -89,6 +90,10 @@ export class EthereumEngine extends CurrencyEngine {
89
90
gasLimit: ''
91
}
92
this.fetchCors = fetchCors
93
+
94
+ this.otherMethods = {
95
+ getTokenInfo: this.getTokenInfo.bind(this)
96
+ }
97
98
99
updateBalance(tk: string, balance: string) {
0 commit comments