mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
|
// see https://developer.trustwallet.com/add_new_asset
|
||
|
const StatusValues: string[] = [
|
||
|
'active',
|
||
|
'spam',
|
||
|
'abandoned'
|
||
|
];
|
||
|
|
||
|
export function isValidStatusValue(value: string): boolean {
|
||
|
if (!value) {
|
||
|
return false;
|
||
|
}
|
||
|
if (!StatusValues.find(e => e === value)) {
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|