Browse Source

claim interest modal native newly create address info

v0.25
pbca26 7 years ago
parent
commit
29c419ad4c
  1. 6
      react/src/components/dashboard/claimInterestModal/claimInterestModal.render.js
  2. 3
      react/src/components/main/walletMain.js
  3. 2
      react/src/translate/en.js

6
react/src/components/dashboard/claimInterestModal/claimInterestModal.render.js

@ -47,6 +47,12 @@ export const _ClaimInterestTableRender = function() {
<p>
<strong>{ translate('CLAIM_INTEREST.TIP') }:</strong> { translate('CLAIM_INTEREST.TIP_DESC') }
</p>
{ this.props.ActiveCoin &&
this.props.ActiveCoin.mode === 'native' &&
<p>
<strong>{ translate('CLAIM_INTEREST.NOTICE') }:</strong> { translate('CLAIM_INTEREST.NATIVE_INTEREST_CHANGE_DESC') }
</p>
}
</div>
{ this.state.totalInterest > 0 &&
<div className="text-left padding-top-10 padding-bottom-10">

3
react/src/components/main/walletMain.js

@ -14,7 +14,10 @@ class WalletMain extends React.Component {
type="text"
id="js-copytextarea" />
<Dashboard />
{ /*
<DexMain />
*/
}
<AddCoin />
<Login />
<Toaster {...this.props.toaster} />

2
react/src/translate/en.js

@ -28,7 +28,9 @@ export const _lang = {
'LOADING': 'Loading interest data',
'NO_DATA': 'No data',
'TIP': 'Tip',
'NOTICE': 'Notice',
'TIP_DESC': 'don\'t attempt to claim interest smaller than 0.01 KMD. A fee you have to pay for transaction will be more or equal to the interest amount.',
'NATIVE_INTEREST_CHANGE_DESC': 'It\'s likely that interest is going to be credited as a separate transaction to a newely created KMD address. This is how native implements interest claiming.',
},
'ABOUT': {
'AGAMA_WALLET': 'Agama Wallet',

Loading…
Cancel
Save