Skip to content

Commit 0df6efc

Browse files
Testing jun11 (#217)
* profile popover hover fixes navabr profile address fixes * description, nam token transaction fee fixes. --------- Co-authored-by: poojachigitey <[email protected]>
1 parent a17dddb commit 0df6efc

File tree

8 files changed

+22
-4
lines changed

8 files changed

+22
-4
lines changed

public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/>
1010
<meta content="OmniFlix, OmniFlix Network, OmniFlix for Communities, OmniFlix insync, omniflix, Cosmos DAOs, Cosmos SDK DAO, Decentralized Autonomous Organizations, web3, cosmos, blockchain, tendermint, staking app, FLIX, OmniFlix staking, OmniFlix proposals, OmniFlix voting, OmniFlix OmniFlix inSync, OmniFlix inSync, OmniFlix, FLIX, FLIX staking, OmniFlix multi-send, OmniFlix multisend, FLIX multi-send, FLIX multisend, OmniFlix multisig, FLIX multisig"
1111
name="keywords">
12-
<meta content="OmniFlix inSync is an open source UI to enable staking and governance for a Cosmos SDK based app-chain. The Namada Staking dashboard is built in association with Cosmic Validator, a reliable, passionate and service oriented validator. OmniFlix being the technical partner of Cosmic Validator are long term trusted community members; and have received delegation from both Tendermint and the Interchain Foundation (ICF) as a reward for our continuous support and effort."
12+
<meta content="OmniFlix inSync for Namada Staking, Governance, Shielding, Transfers and more OmniFlix inSync is an open source UI to enable staking, governance, shielding, transfers and other functions in Namada. The UI is built in association with Cosmic Validator"
1313
name="description">
1414
<meta content="OmniFlix inSync for NAM Staking & Governance" property="og:site_name">
1515
<meta content="https://namada.omniflix.co" property="og:url">
@@ -19,7 +19,7 @@
1919
<meta content="720" property="og:image:height"/>
2020
<meta content="OmniFlix inSync for NAM Staking & Governance" property="og:image:alt"/>
2121
<meta content="OmniFlix inSync for NAM Staking & Governance" property="og:title">
22-
<meta content="OmniFlix inSync is an open source UI to enable staking and governance for a Cosmos SDK based app-chain. The Namada Staking dashboard is built in association with OmniFlix inSync for NAM Staking & Governance, a reliable, passionate and service oriented validator. OmniFlix being the technical partner of Cosmic Validator are long term trusted community members; and have received delegation from both Tendermint and the Interchain Foundation (ICF) as a reward for our continuous support and effort."
22+
<meta content="OmniFlix inSync for Namada Staking, Governance, Shielding, Transfers and more OmniFlix inSync is an open source UI to enable staking, governance, shielding, transfers and other functions in Namada. The UI is built in association with Cosmic Validator"
2323
property="og:description"/>
2424
<meta content="website" property="og:type"/>
2525

@@ -29,7 +29,7 @@
2929
<meta content="summary_large_image" name="twitter:card">
3030
<meta content="OmniFlix inSync for NAM Staking & Governance" name="twitter:image:alt">
3131
<meta content="OmniFlix inSync for NAM Staking & Governance" name="twitter:title">
32-
<meta content="OmniFlix inSync is an open source UI to enable staking and governance for a Cosmos SDK based app-chain. The Namada Staking dashboard is built in association with Cosmic Validator, a reliable, passionate and service oriented validator. OmniFlix being the technical partner of Cosmic Validator are long term trusted community members; and have received delegation from both Tendermint and the Interchain Foundation (ICF) as a reward for our continuous support and effort."
32+
<meta content="OmniFlix inSync for Namada Staking, Governance, Shielding, Transfers and more OmniFlix inSync is an open source UI to enable staking, governance, shielding, transfers and other functions in Namada. The UI is built in association with Cosmic Validator"
3333
name="twitter:description">
3434
<meta content="https://namada.omniflix.co/assets/logos/og_image1.png" name="twitter:image">
3535

src/containers/IBCTransfer/IBCUnShielding.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@ const IBCUnShielding = (props) => {
166166
txs.token = props.feeOption?.fees?.token;
167167
const tokenGasPrice = props.gasPrice.find((val) => val.token === props.feeOption?.fees?.token);
168168
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
169+
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
170+
txs.feeAmount = new BigNumber(0.000001);
171+
}
169172
}
170173
txs.gasLimit = new BigNumber(feeCalculation(props.gasEstimation))
171174
}

src/containers/IBCTransfer/NamadaToIBCTransparentTransfer.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ const NamadaToIBCTransparentTransfer = (props) => {
156156
txs.token = props.feeOption?.fees?.token;
157157
const tokenGasPrice = props.gasPrice.find((val) => val.token === props.feeOption?.fees?.token);
158158
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
159+
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
160+
txs.feeAmount = new BigNumber(0.000001);
161+
}
159162
}
160163
txs.gasLimit = new BigNumber(feeCalculation(props.gasEstimation))
161164
}

src/containers/ShieldedAssets/ShieldDialog/ShieldedToTransparent.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ const ShieldedToTransparent = (props) => {
6868
txs.token = props.feeOption?.fees?.token;
6969
const tokenGasPrice = props.gasPrice.find((val) => val.token === props.feeOption?.fees?.token);
7070
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
71+
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
72+
txs.feeAmount = new BigNumber(0.000001);
73+
}
7174
}
7275
txs.gasLimit = new BigNumber(feeCalculation(props.gasEstimation))
7376
}

src/containers/ShieldedAssets/ShieldDialog/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ const ShieldDialog = (props) => {
6868
txs.token = props.feeOption?.fees?.token;
6969
const tokenGasPrice = props.gasPrice.find((val) => val.token === props.feeOption?.fees?.token);
7070
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
71+
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
72+
txs.feeAmount = new BigNumber(0.000001);
73+
}
7174
}
7275
txs.gasLimit = new BigNumber(feeCalculation(props.gasEstimation))
7376
}

src/containers/Stake/UnbondingTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class UnbondingTable extends Component {
105105
customBodyRender: (value, index) => {
106106
return (
107107
<div className="actions">
108-
{moment.unix(value?.withdrawTime).isBefore(moment())
108+
{moment.unix(value?.withdrawTime).isBefore(moment()) && value.canWithdraw
109109
? <WithDrawButton validator={value?.validator?.address}/>
110110
: <div className="voting_power">
111111
{getPendingTime(value?.withdrawTime)}

src/containers/Tokens/ShieldedTransferDialog/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ class ShieldedTransferDialog extends React.Component {
9191
txs.token = this.props.feeOption?.fees?.token;
9292
const tokenGasPrice = this.props.gasPrice.find((val) => val.token === this.props.feeOption?.fees?.token);
9393
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
94+
if (this.props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
95+
txs.feeAmount = new BigNumber(0.000001);
96+
}
9497
}
9598
txs.gasLimit = new BigNumber(feeCalculation(this.props.gasEstimation))
9699
}

src/containers/Tokens/TransparentTransferDialog/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ class TransparentTransferDialog extends React.Component {
7878
txs.token = this.props.feeOption?.fees?.token;
7979
const tokenGasPrice = this.props.gasPrice.find((val) => val.token === this.props.feeOption?.fees?.token);
8080
txs.feeAmount = new BigNumber(tokenGasPrice?.minDenomAmount);
81+
if (props.feeOption?.fees?.token === config.TOKEN_ADDRESS) {
82+
txs.feeAmount = new BigNumber(0.000001);
83+
}
8184
}
8285
txs.gasLimit = new BigNumber(feeCalculation(this.props.gasEstimation))
8386
}

0 commit comments

Comments
 (0)