Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Release: v3.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Jan 9, 2019
1 parent 590fc97 commit 7f8f915
Show file tree
Hide file tree
Showing 9 changed files with 228,302 additions and 228,161 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Release v3.30.0

### New
- Add new badges for google and apple stores, Add ONE and new TUSD token []()
- Include token information in signTx request to MEWconnect [#2200](https://github.com/kvhnuke/etherwallet/pull/2200)
- correct address details not getting received on firefox [#2205](https://github.com/kvhnuke/etherwallet/pull/2205)
- Remove etc_Epool node [#2203](https://github.com/kvhnuke/etherwallet/pull/2203)
- Remove etc_Epool node [#2203](https://github.com/kvhnuke/etherwallet/pull/2203)
- Add NDX and FMF tokens [#2199](https://github.com/kvhnuke/etherwallet/pull/2199)

Expand Down
227 changes: 117 additions & 110 deletions app/scripts/controllers/decryptWalletCtrl.js

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions app/scripts/controllers/txStatusCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ var txStatusCtrl = function($scope) {
var txToObject = function(tx) {
var txStatus = $scope.txStatus;
if (tx) {
console.log('txToObject')
console.log(tx)
var curNode = JSON.parse(globalFuncs.localStorage.getItem('curNode', null));
curNode = nodes.nodeList[curNode.key]
$scope.txInfo = {
Expand Down
4 changes: 0 additions & 4 deletions app/scripts/controllers/walletBalanceCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,9 @@ var walletBalanceCtrl = function($scope, $sce, $rootScope) {
var autoTokens = globalFuncs.localStorage.getItem('autoLoadTokens')
$scope.autoLoadTokens = autoTokens ? JSON.parse(autoTokens) : [];

console.log(token.balance)
console.log(token.contractAddress)

if ( parseInt(token.balance) > 0 ) {
$scope.autoLoadTokens.push( token.contractAddress );
globalFuncs.localStorage.setItem( 'autoLoadTokens', JSON.stringify($scope.autoLoadTokens) );
console.log(token)
}
});
}
Expand Down
10 changes: 9 additions & 1 deletion app/scripts/directives/walletDecryptDrtv.html
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,15 @@ <h4> <!-- todo re-add translation property -->
</li>
<li class="u__protip">
<!-- Todo add path -->
<span> Don't have MEWconnect? <br/> <a href="https://itunes.apple.com/us/app/mewconnect/id1391097156" target="_blank" rel="noopener noreferrer"> <img src="images/appstore.png" height="50" width="170"> </a>
<p>
Don't have MEWconnect?
</p>
<a href="https://itunes.apple.com/us/app/mewconnect/id1391097156" target="_blank" rel="noopener noreferrer">
<img src="images/appstore.svg" height="50">
</a>
<a href="http://play.google.com/store/apps/details?id=com.myetherwallet.mewconnect" target="_blank" rel="noopener noreferrer">
<img src="images/google-play.svg" height="50">
</a>
</li>
</ul>
<div class="form-group"
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/kyber.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ kyberFuncs.prototype.getBalance = async function (_token, userAddress, callback)
return i.type
})

console.log(data.data)
// console.log(data.data)
// was returning a number rounded, thus
// data.data = ethUtil.solidityCoder.decodeParams(outTypes, data.data.replace('0x', ''))[0].toNumber();
data.data = ethUtil.solidityCoder.decodeParams(outTypes, data.data.replace('0x', ''))[0].toString()
Expand Down
14 changes: 13 additions & 1 deletion app/scripts/tokens/ethTokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -4235,6 +4235,12 @@
"decimal": 8,
"type": "default"
},
{
"address": "0x4d807509aece24c0fa5a102b6a3b059ec6e14392",
"symbol": "ONE",
"decimal": 18,
"type": "default"
},
{
"address": "0xb23be73573bc7e03db6e5dfc62405368716d28a8",
"symbol": "ONEK",
Expand Down Expand Up @@ -5953,7 +5959,13 @@
},
{
"address": "0x8dd5fbce2f6a956c3022ba3663759011dd51e73e",
"symbol": "TUSD",
"symbol": "TUSD (Old)",
"decimal": 18,
"type": "default"
},
{
"address": "0x0000000000085d4780B73119b644AE5ecd22b376",
"symbol": "TUSD (New)",
"decimal": 18,
"type": "default"
},
Expand Down

0 comments on commit 7f8f915

Please sign in to comment.