-
Notifications
You must be signed in to change notification settings - Fork 237
Prep: release v2.14.0 #768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
b533d21
feat: add nibiru and nibiru testnet networks
ruslan-sh-r e38a7c4
fix: restore readme
ruslan-sh-r 56a2bb1
feat: routescan provider
ruslan-sh-r cf3b326
Merge branch 'feat/nibiru-network' into feat/add-nibiru-network
kvhnuke fb5c184
Merge pull request #748 from ruslan-sh-r/feat/add-nibiru-network
kvhnuke 8271a8f
fix: merge conflicts
kvhnuke 65d7109
fix: fantom node
kvhnuke 3d13b84
feat: allow rbtc swaps using changelly
ahsan-javaiid 7056766
devop: package updates
kvhnuke f3f2afe
fix: remove unused parameter from mnemonicToMiniSecret
kvhnuke a5be057
Merge branch 'devop/package-updates-2-14' into fix/nodes
kvhnuke 32caaf3
fix: remove OKC network references from asset handlers and configs
kvhnuke 720ed80
fix: update Astar network node URL to use OnFinality API
kvhnuke ff17c94
fix: update Palm network node URL to use Infura API
kvhnuke 03aa877
fix: remove references to Proof of Play Apex network from various files
kvhnuke 0f3b501
fix: remove ZChains network references and associated files
kvhnuke 7a00693
Merge branch 'devop/package-updates-2-14' into feat/nibiru-network
kvhnuke ef2c2d6
fix: update XLayer network node URL to use OKX RPC
kvhnuke bf1d1d2
fix: remove trailing slashes from NetworkEndpoints URLs
kvhnuke a77e69f
fix: improve error handling in getAddressActivity function
kvhnuke f1a2229
Merge pull request #766 from enkryptcom/fix/nodes
kvhnuke 43df733
Merge pull request #750 from enkryptcom/feat/nibiru-network
kvhnuke 5602f3b
Merge pull request #767 from ahsan-javaiid/rbtc-swaps
kvhnuke d4c8da7
fix: improve readability and add condition for getExchangeAmount resp…
kvhnuke d366167
feat: update version to 2.14.0 and add Nibiru network to new features
kvhnuke 2fbdf58
fix: correct chainID for Story network from '0x5EF' to '0x5ea'
kvhnuke f8cc79c
refactor: remove XLayer network support from asset handlers and types
kvhnuke 9130c31
feat: add provider names to swap
gamalielhere 41bd3d3
devop: update packages
kvhnuke 59f2363
feat: implement backup restoration and exclude specific signer types
kvhnuke 0e5d94c
refactor: remove Canto network support from dapp lists and asset hand…
kvhnuke 624f8dc
feat: update Kadena network integration and restore backup functionality
kvhnuke 93e5180
fix: handle empty data response in OKX provider
kvhnuke a104588
fix: cleanup and add provider logos
gamalielhere 859e386
devop: coderabbit recs
gamalielhere d6fe1e5
feat: add restricted popup
gamalielhere c729efe
fix: remove second loop
gamalielhere ca8ebfd
feat: add geolock
gamalielhere deb7190
fix: copy
gamalielhere 45936d7
fix: update copy
gamalielhere 475bb3e
feat: update more info
gamalielhere 305d41f
Refactor code structure for improved readability and maintainability
kvhnuke d2f8958
Merge branch 'feat/provider-names' into feat/restricted-popup
kvhnuke 319ad1b
Refactor Vue components for improved readability and maintainability
kvhnuke 4269203
feat: implement geo-restriction handling in BackgroundHandler and imp…
kvhnuke b316433
feat: enhance UI structure and styling in App.vue and lock-screen-pas…
kvhnuke 3c1b112
feat: improve markup and styling in index.vue and App.vue for better …
kvhnuke 6fa4721
Merge pull request #771 from enkryptcom/feat/restricted-popup
kvhnuke 581e162
Merge pull request #769 from enkryptcom/feat/provider-names
kvhnuke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,32 @@ | ||
| const isGeoRestricted = async (): Promise<boolean> => { | ||
| return fetch('https://partners.mewapi.io/o/ipcomply') | ||
| .then(async res => { | ||
| if (res.ok) { | ||
| const json = await res.json(); | ||
| return json.isRestricted; | ||
| } | ||
| return false; | ||
| }) | ||
| .catch(() => false); | ||
| }; | ||
|
|
||
| const walletCache: Record<string, boolean> = {}; | ||
| const isWalletRestricted = async (walletAddress: string): Promise<boolean> => { | ||
| if (walletCache[walletAddress] !== undefined) | ||
| return walletCache[walletAddress]; | ||
| const result = await fetch( | ||
| `https://partners.mewapi.io/o/walletscreen?address=${walletAddress}`, | ||
| ) | ||
| .then(async res => { | ||
| if (res.ok) { | ||
| const { isRestricted } = await res.json(); | ||
| return isRestricted; | ||
| } | ||
| return false; | ||
| }) | ||
| .catch(() => false); | ||
| walletCache[walletAddress] = result; | ||
| return result; | ||
| }; | ||
|
|
||
| export { isGeoRestricted, isWalletRestricted }; |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| import { NetworkNames } from '@enkryptcom/types'; | ||
|
|
||
| const newNetworks: NetworkNames[] = []; | ||
| const newNetworks: NetworkNames[] = [NetworkNames.Nibiru]; | ||
| const newSwaps: NetworkNames[] = []; | ||
|
|
||
| export { newNetworks, newSwaps }; |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.