fix: update keybaseId to keybaseUsername

This commit is contained in:
Tyera Eulberg
2019-07-18 09:40:34 -06:00
committed by Michael Vines
parent 408e8e7500
commit f46faee251
3 changed files with 6 additions and 6 deletions

View File

@@ -25,20 +25,20 @@ type ConfigKey = {|
* @property {string} name validator name
* @property {?string} website optional, validator website
* @property {?string} details optional, extra information the validator chose to share
* @property {?string} keybaseId optional, used to identify validators on keybase.io
* @property {?string} keybaseUsername optional, used to identify validators on keybase.io
*/
export type Info = {|
name: string,
website?: string,
details?: string,
keybaseId?: string,
keybaseUsername?: string,
|};
const InfoString = struct({
name: 'string',
website: 'string?',
details: 'string?',
keybaseId: 'string?',
keybaseUsername: 'string?',
});
/**