nft-folder-blockchain-connector-besu
Version:
A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.
7 lines (6 loc) • 440 B
TypeScript
import { ValidationArguments, ValidationOptions, ValidatorConstraintInterface } from 'class-validator';
export declare class BlockchainAddressValidator implements ValidatorConstraintInterface {
validate(value: string): boolean;
defaultMessage(args: ValidationArguments): string;
}
export declare function IsValidBlockchainAddress(validationOptions?: ValidationOptions): (object: NonNullable<unknown>, propertyName: string) => void;