This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace json view to react-json-view * simplify storing validators * put vp distribution calculation in async function * enable modules * remove tx indexing from block * get self delegation every 50 blocks * add try catch for bech32 conversion * update display error code * display staking ratio * update validator search condition * fix home validator list and genesis params * fix account delegation validator name * change the BondStatus from 2 to 3 * show minting * update validator status value * fix: update more status code changes (#357) * fix total supply amount * update tx elements structures * update version * refactor getting validator for v0.40 * get validator self delegation * display validator list * set uptime label to slashing window * replace legecy api * add grpc and cosmos protobuf * replace with imporable-eng grpc-web * update packages * add grpc unary function * update chain status request with grpc * update block update * update meteor to 2.0 * update validator address index * block not show proposer * save tx data correctly * get the tendermint hex address * fix propser name * fix precommits storage * update validator field names * fix get uptime * add new fields to settings.json * only save validator data at start or after number of blcoks * remove some comments of the old LCD * update validator delegations * update delegations * updat proposal list * update version * fix save validator height * check if validator set value exists before assigning value * update cosmos protobuf * revert updating validators with RPC and validator hex address * fix chain status active validators * revert back using legacy api /tx endpoint for transactions * using legacy /tx endpoint * change LCD to API * update default_settings.json * index tx with grpc gateway * fix transaction row * update transations and message types * get proposal with grpc gateway * fix ui of proposals * update block tx tabs * update delegator reward message type * update balance apis * update validator delegation names * update tx event search * update indexes * update power history values * fix vp distribution * fix initial power change value * update version * temperary disable inflation and annual provision query * reduce community pool to human readable number * remove gov proposer query * update version * console log object * fix transactions not being saved * save proposal correctly * save missing flag to tx if index is missing * update version * remove custom grpc call in chain state update * update npm packages * disable getting all validator delegations * revert grpc to use sdk grpc gateway api * update validator ui with correct field names * update home page validator list field name * remove unused components * display voting power with tokens * sorting with number of tokens * update label to show bonded tokens for inactive validators * update language * remove cosmos-protobuf-js * update meteor packages * added jailed until * update language * update power distribution * reduce update validator info * fix self delegation address * update validator account field names * update version * remove uncessary flag * fix account page query * update operatorAddress variable name * fix validator name query in Account component * fix delegation rewards * remove console log * update version * handle unbonded validator if not in database * only start and update height to update validator info * validator info can be updated every block but not delegation * only update validator self delegation at start or update interval * don't update validator info every block * upload ledger login message and settings * change validator update schedule * update version * fix lint * update proposal status * fix ledger tx skeleton * fixed ledger button validator proptypes * fixed unmatched bonding status in ledger buttons * update validator bond status * fixed delegate message * fixed ledger redelegation * update version * get correct votes and tally results * fix gov proposal chart * remove gov buttons until * update changelog Co-authored-by: Michael FIG <[email protected]>
- Loading branch information
1 parent
603bd84
commit 3ca6d57
Showing
60 changed files
with
1,204 additions
and
900 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 |
---|---|---|
|
@@ -10,10 +10,10 @@ [email protected] # The database Meteor supports right now | |
[email protected] # Reactive variable for tracker | ||
[email protected] # Meteor's client-side reactive programming library | ||
|
||
[email protected].1 # CSS minifier run for production mode | ||
[email protected].2 # CSS minifier run for production mode | ||
[email protected] # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers | ||
ecmascript@0.14.4 # Enable ECMAScript2015+ syntax in app code | ||
ecmascript@0.15.0 # Enable ECMAScript2015+ syntax in app code | ||
[email protected] # Server-side component of the `meteor shell` command | ||
|
||
[email protected] # Leaner CSS language | ||
|
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 +1 @@ | ||
METEOR@1.12 | ||
METEOR@2.0 |
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,4 @@ | ||
export const goTimeToISOString = (time) => { | ||
const millisecond = parseInt(time.seconds+time.nanos.toString().substring(0,3)); | ||
return (new Date(millisecond)).toISOString() | ||
} |
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.