-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removed several electron references * basic sign in working * added scripts for backend * fixed missing tmdataloading on tabparameters * update to latest tendermint lib * added ssl cert creation readme * correct wait for connection on app start * updated webpack dev server * import genesis at build time * fixed tmfield * added networks to dev server * fixed pageview * fixed bug on LiProposal * increased timeout for waiting for blocks to proof connection * refactor keystore * made analytics not global * cleanup package scripts and deps * fixes signin feedback * enable transactions in prod mode * removed config.toml * removed browserified dependencies * tests refactored * remove build test * override write to clipboard in test * override copy to clipboard in test for btncopy * fixed app menu test * add gos genesis * added proxy * removed network config folder getter script * added tests for keystore and wallet * added salt * remove e2e tests for now * removed dependency ref * reenable console error safe guard * fixed snapshots * fixed session import * switched proxy * add new generate_only logic * better start scripts * added skip rebuild * fixed send snapshot * moved to latest SDK * make not creating the nodes the default * working gen and post * remove mnemonic from wallet * stripped console log * fixed lcdClient + tests * fixed send tests * added send tests * remove caddy binary * reenable error handlers * removed navigator mock * fix session sign up * refactored waiting for node * made default gas a config value * fixed gas config * catch wrong password * fixed tmformmsg * added coverage for getKey * ignore some lines from coverage * increase coverage user.js * refactored request postprocessors * ignore coverage for network.js * added test for main * ignore coverage in google analytics script * disable e2e tests for now * fixed gas for proposal generation * Switch to photinos * fix outputs and add verbose mode * removed display of secondary accounts
- Loading branch information
Showing
131 changed files
with
5,495 additions
and
12,959 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
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,13 @@ | ||
localhost:8080 { | ||
cors | ||
|
||
header / { | ||
Access-Control-Allow-Origin "*" | ||
Access-Control-Allow-Methods "OPTIONS, HEAD, GET, POST, PUT, DELETE" | ||
Access-Control-Allow-Headers "*" | ||
} | ||
|
||
proxy / https://localhost:9070/ { | ||
insecure_skip_verify | ||
} | ||
} |
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 was deleted.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "Cosmos Voyager", | ||
"default_network": "game_of_stakes_3", | ||
"node_lcd": "http://localhost:8080", | ||
"node_rpc": "http://localhost:26657", | ||
"google_analytics_uid": "UA-51029217-3", | ||
"sentry_dsn": "https://4dee9f70a7d94cc0959a265c45902d84:cbf160384aab4cdeafbe9a08dee3b961@sentry.io/288169", | ||
"node_halted_timeout": 120000, | ||
"block_timeout": 10000, | ||
"default_gas": 500000 | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.