mirror of
				https://github.com/Instadapp/trustwallet-assets.git
				synced 2024-07-29 22:37:31 +00:00 
			
		
		
		
	* Make non-mandatory action interface elements optional. * Remove one unused import * Scripts main renamed to entrypoint. * Script common rename to generic * Move generic scripts from action to generic. * Move chain-specific scripts to blockchain. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Terra } from "../generic/blockchains";
 | 
						|
import { getChainValidatorsAssets } from "../generic/repo-structure";
 | 
						|
import { ActionInterface, CheckStepInterface } from "../generic/interface";
 | 
						|
import { isLowerCase } from "../generic/types";
 | 
						|
 | 
						|
export class TerraAction implements ActionInterface {
 | 
						|
    getName(): string { return "Terra chain"; }
 | 
						|
 | 
						|
    getSanityChecks(): CheckStepInterface[] {
 | 
						|
        return [
 | 
						|
            {
 | 
						|
                getName: () => { return "Terra validator assets must have correct format"},
 | 
						|
                check: async () => {
 | 
						|
                    const errors: string[] = [];
 | 
						|
                    const assets = getChainValidatorsAssets(Terra);
 | 
						|
                    const prefix = "terravaloper1";
 | 
						|
                    const expLength = 51;
 | 
						|
                    assets.forEach(addr => {
 | 
						|
                        if (!(addr.startsWith(prefix))) {
 | 
						|
                            errors.push(`Address ${addr} should start with '${prefix}'`);
 | 
						|
                        }
 | 
						|
                        if (addr.length != expLength) {
 | 
						|
                            errors.push(`Address ${addr} should have length ${expLength}`);
 | 
						|
                        }
 | 
						|
                        if (!isLowerCase(addr)) {
 | 
						|
                            errors.push(`Address ${addr} should be in lowercase`);
 | 
						|
                        }
 | 
						|
                    });
 | 
						|
                    return [errors, []];
 | 
						|
                }
 | 
						|
            },
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |