-
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.
* Update .gitignore * Move Wallet to the left of the page * Add tokens to the assetList * Style assets * Close wallet button * Fix main content size when wallet is closed * Remove classic dependency, use Coingecko as price source * Show 24h change * Show assets on multiple chains Still beta and the code needs an huge cleanup * Update Wallet styles * Calculate networth * Add asset details page * Add asset action buttons * Add receive page * Add send and receive page (#125) * treat CW20 as native tokens * add Send Page * handle tx loading * Show asset on amount input * minor fix: atom key and ledger bluetooth * Update close button styles * Add interchain station governance (#128) * Add interchain governance * cleanup, change back button * remove contract page * Fix governance * fix ts-errors * apply new history design (#131) * Replace station.js with feather.js * Update design for the extension * fix background color * Fix send and receive page * remove password input if simulation error * Fix wallet modal styles * Cleanup and fix ledger error * Interchain connection * Fix txContext for interchain station * Show connected wallet even if it is a ledger * Fix: asset list bugs and layout (#35) * fix: various asset list bugs * fix: design add tokens button and move * fix: use react icon instead of + character * Fix fee calculation if gas price is 0 * Feat: fix asset bug on send page (#140) * fix: new asset selection estimation bug * fix: chain selection on UI * rem: eslint * Fix "testnet" banner position * Fix blank page on add/remove cw20 assets * fix denom resolution inside max and fee form * Fix ChainSelector * Replace "Connect to Terra blockchain" with "Connect to Station" * add interchain wallet info * Update manifest.json (#37) * upd: banner * if wallet is multisig enable only Terra * Support both coinType 118 and 330 (#41) * Support multiple cointypes * Support multiple ledger apps * update ledger connection flow * added the welcome modal to extension (#40) * Better Ledger connection flow Co-authored-by: Joshua Brigati <[email protected]> * Fix bluetooth integration * Better Ledger icons * Update themes * Change ledger icon on the header * Fix extension layout * changed colors for themes (#42) * minor color fix * Convert chain selector to dropdown * Test networks and disable the non-available ones * anti-phishing feature * Network loading changes based on the theme * fix blacklisted domain detection * Update to manifest v3 * Fix initial loading * Cleanup * Add CoinGecko attribution * Fix/interchain history (#183) * Fetch multiple events for txhistory * Show tx sign mode * Remove test <p> * Improve send page validation * Implement address book * Fix receive page width * Fix: copy changes (#184) * upd: copy changes * Fix Co-authored-by: Alessandro Candeago <[email protected]> * Fix staking TxMessage * Fix < 0.01$ balance * Fix send page default chain * currency symbol moved to front (#186) * Update constants.ts * added back button next to Page header (#187) * Support classic (#189) * Add classic * Classic fix * Decimal divider * Fix classic implementation * Fix classic prices * Support LocalTerra * Add preconfigured wallets * Don't show offline page if connected to localterra * Fix network errors * Stake graph update (#190) * changed stake page graph data to display amounts and values from delegations on chain filter * added back button to some staking pages * Feat/upd langs (#168) * upd: copy * upd: lang dicts * misc bugs * Fix Italian transaltion * Update French translation * Spanish transaltions (#177) * Update de.json * Update pl.json * Fix translations * Translate more words * Minor fix * Update polish translation * Updated chinese translations * disable untranslated languages Co-authored-by: Alessandro Candeago <[email protected]> Co-authored-by: emidev98 <[email protected]> Co-authored-by: Terence Lim <[email protected]> * upd: welcome modal (#49) * upd welcome modal copy * rem: build copy * fix: copy * upd: langs from station webapp (#50) * upd: copy * Fix firefox build * Do not use dangerouslySetInnerHTML * made chain filter overflow wrap (#191) * Fix ESLint warning * Support ICS transfers (#193) * Fix ICS20 implementation * Fix header on small screens * hide wallet address button only on mobile * Fix wallet bar layout on mobile * Fix AddressBook button * Fix LedgerIcon on manage wallets Co-authored-by: plubber <[email protected]> Co-authored-by: plubber <[email protected]> Co-authored-by: Joshua Brigati <[email protected]> Co-authored-by: Joshua Brigati <[email protected]> Co-authored-by: emidev98 <[email protected]> Co-authored-by: Terence Lim <[email protected]>
- Loading branch information
1 parent
68d4c0f
commit fdaccb8
Showing
374 changed files
with
27,768 additions
and
7,863 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -19,3 +19,9 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.prettierrc | ||
|
||
# build files | ||
*.tgz | ||
*.zip |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,3 +1,27 @@ | ||
module.exports = function override(config, env) { | ||
return config; | ||
return { | ||
...config, | ||
optimization: { | ||
splitChunks: { | ||
minSize: 20000, | ||
maxSize: 4000000, | ||
minChunks: 1, | ||
maxAsyncRequests: 30, | ||
maxInitialRequests: 30, | ||
enforceSizeThreshold: 50000, | ||
cacheGroups: { | ||
vendor: { | ||
test: /[\\/]node_modules[\\/]/, | ||
name: 'vendors', | ||
chunks: 'all' | ||
}, | ||
default: { | ||
minChunks: 2, | ||
priority: -20, | ||
reuseExistingChunk: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Station Wallet", | ||
"version": "4.0.0", | ||
"background": { | ||
"scripts": ["background.js"], | ||
"persistent": true | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"js": ["contentScript.js"], | ||
"run_at": "document_start", | ||
"all_frames": true | ||
} | ||
], | ||
"browser_action": { | ||
"default_popup": "index.html", | ||
"default_icon": "icon-32.png" | ||
}, | ||
"options_ui": { | ||
"page": "index.html" | ||
}, | ||
"web_accessible_resources": ["inpage.js", "index.html"], | ||
"icons": { | ||
"128": "icon-128.png", | ||
"180": "icon-180.png" | ||
}, | ||
"permissions": ["storage"], | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" | ||
} |
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 |
---|---|---|
@@ -1,16 +1,22 @@ | ||
const path = require("path"); | ||
const path = require("path") | ||
const webpack = require("webpack") | ||
|
||
module.exports = { | ||
mode: process.env.NODE_ENV || 'development', | ||
mode: process.env.NODE_ENV || "development", | ||
devtool: "inline-source-map", | ||
bail: true, | ||
entry: { | ||
contentScript: path.join(__dirname, "contentScript.js"), | ||
background: path.join(__dirname, "background.js"), | ||
inpage: path.join(__dirname, "inpage.js") | ||
inpage: path.join(__dirname, "inpage.js"), | ||
}, | ||
plugins: [ | ||
new webpack.DefinePlugin({ | ||
global: {}, | ||
}), | ||
], | ||
output: { | ||
path: path.join(__dirname, "..", "build"), | ||
filename: "[name].js" | ||
} | ||
}; | ||
filename: "[name].js", | ||
}, | ||
} |
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
Oops, something went wrong.