File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Current Master
4
4
5
+ - Temporarily disabled loading popular tokens by default to improve performance.
5
6
- Remove SEND token button until a better token sending form can be built, due to some precision issues.
6
7
- Fix precision bug in token balances.
7
8
- Cache token symbol and precisions to reduce network load.
Original file line number Diff line number Diff line change @@ -3,17 +3,19 @@ const h = require('react-hyperscript')
3
3
const inherits = require ( 'util' ) . inherits
4
4
const TokenTracker = require ( 'eth-token-tracker' )
5
5
const TokenCell = require ( './token-cell.js' )
6
- const contracts = require ( 'eth-contract-metadata' )
7
6
const normalizeAddress = require ( 'eth-sig-util' ) . normalize
8
7
9
8
const defaultTokens = [ ]
9
+ /*
10
+ const contracts = require('eth-contract-metadata')
10
11
for (const address in contracts) {
11
12
const contract = contracts[address]
12
13
if (contract.erc20) {
13
14
contract.address = address
14
15
defaultTokens.push(contract)
15
16
}
16
17
}
18
+ */
17
19
18
20
module . exports = TokenList
19
21
You can’t perform that action at this time.
0 commit comments