-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip: back button manage wallet pages * fix chain list overlapping (#184) * Fix for non-persistent service worker * fix: vesting token component * fix: send button disable * feat: back buttons manage pages * fix: property undefined chainID error * fix: convert object error * fixed styling for some back arrows including Manage Wallets modal and extension Pages * removed commented out icons * fix: non-whitelisted tokens * fix: build error * Show signbytes content * fix: tokens with : * Update SignBytes design * Fix/send bank denom (#201) * feat: fix send bank token on same chain * feat: wallet switch close modal (#202) * feat: wallet switch close modal * fix: navigate back to wallet upon wallet switch * chore: merge main (#206) * fix: lunc display (#204) * fix: decouple ibc lunc from luna * fix: ibc luna (#205) * fix: ibc luna * chore: merge main (#211) * fix: lunc display (#204) * fix: decouple ibc lunc from luna * fix: ibc luna (#205) * fix: ibc luna * fix: luna send (#207) * fix: LUNC & LUNA decoupling on testnet, mainnet, localterra * fix: Error message upon failed price endpoint response * fix: Vesting token display --------- Co-authored-by: Michael Merz <mwmerz@protonmail.com> --------- Co-authored-by: Michael Merz <mwmerz@protonmail.com> * Show disabled network name and icon (#214) * Use new IBC channels (#217) * Use new IBC channels (for direct chain-to-chain transfers) * cleanup imports * Remove axelar tokens warning * fix ibc path detection for multi-hop ibc denoms * fix send back feature * ST-580: add dev mode on extension (#216) * Add dev settings on the extension * remove reference to contract page * fix auto-merge error * Fix asset list (#219) * fix ibc lunc * fix LUNC detection * fix undefined chainID * same changes as web * fix: main merge conflict (#221) * fix: lunc display (#204) * fix: decouple ibc lunc from luna * fix: ibc luna (#205) * fix: ibc luna * fix: luna send (#207) * fix: LUNC & LUNA decoupling on testnet, mainnet, localterra * fix: Error message upon failed price endpoint response * fix: Vesting token display --------- Co-authored-by: Michael Merz <mwmerz@protonmail.com> --------- Co-authored-by: Michael Merz <mwmerz@protonmail.com> * Update dependencies (#213) * Update feather.js, remove wallet-provider * fix: remove log * remove unused imports --------- Co-authored-by: Manuel Alessandro Collazo <collazo.manuel6@gmail.com> * Fix/improve persistent worker (#212) * remove reconnect listener, restore alarm * fix: light theme. bg color for mobile and full page (#222) * feat: St 543 implement amplitude (#218) * wip: amplitude tracking revisions * feat: track latest tx event * fix: add versioning to amplitude client * fix: versioning --------- Co-authored-by: Michael Merz <mwmerz@protonmail.com> * fix: testnet finder links (#225) * fix ibc token denoms (#226) * fix lock wallet crash (#230) * ST-596: fix ics20 send back (#229) * Fix ICS20 send back * fix ICS20 denom calculation * Copy SendBack page from web * fix gas adjustment for ibc transfers * fix ics20 gas error (#231) * fix ics20 gas error * lower gas adjustment * fix kujira factory IBC tokens (#233) * fix kujira factory IBC tokens * fix send back and use prefix to detect kujira * chore: update version (#238) --------- Co-authored-by: Manuel Alessandro Collazo <collazo.manuel6@gmail.com> Co-authored-by: Alessandro Candeago <54709706+alecande11@users.noreply.github.com> Co-authored-by: Terence Lim <terencelimz@gmail.com> Co-authored-by: Joshua <joshua.brigati@gmail.com> Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com>
- Loading branch information
1 parent
2932923
commit 8f41438
Showing
109 changed files
with
1,300 additions
and
1,345 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { useDevMode } from "utils/localStorage" | ||
import SettingsSelectorToggle from "components/layout/SettingsSelectorToggle" | ||
import { FlexColumn, GasAdjustment } from "components/layout" | ||
import { TooltipIcon } from "components/display" | ||
import { DevModeTooltip } from "./DevModeTooltips" | ||
|
||
const AdvancedSettings = () => { | ||
const { devMode, changeDevMode } = useDevMode() | ||
const options = [ | ||
{ value: "devMode", selected: devMode, label: "Developer Mode" }, | ||
] | ||
|
||
return ( | ||
<FlexColumn gap={10}> | ||
<SettingsSelectorToggle | ||
onChange={changeDevMode} | ||
extra={<TooltipIcon content={<DevModeTooltip />} />} | ||
options={options} | ||
/> | ||
<GasAdjustment /> | ||
</FlexColumn> | ||
) | ||
} | ||
|
||
export default AdvancedSettings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { useTranslation } from "react-i18next" | ||
|
||
export const DevModeTooltip = () => { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<article> | ||
<h1>{t("Developer mode enables the following")}:</h1> | ||
<ul> | ||
<li>{t("Copy token addresses from your wallet")}</li> | ||
</ul> | ||
</article> | ||
) | ||
} | ||
export const GasAdjustmentTooltip = () => { | ||
const { t } = useTranslation() | ||
return ( | ||
<article> | ||
<p> | ||
{t( | ||
"Set a gas adjustment coefficient in case none is specified by the chain" | ||
)} | ||
</p> | ||
</article> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,7 @@ | |
.button__container { | ||
width: 100%; | ||
} | ||
|
||
.advanced { | ||
margin-top: 30px; | ||
} |
Oops, something went wrong.