UNPKG

@tatumio/celo-connector

Version:

Celo Connector for Tatum API

15 lines (11 loc) 268 B
import {IsInt, IsNotEmpty, Max, MaxLength, Min} from 'class-validator'; export class GeneratePrivateKey { @IsNotEmpty() @MaxLength(500) public mnemonic: string; @IsNotEmpty() @IsInt() @Min(0) @Max(2147483647) public index: number; }