UNPKG

@tatumio/celo-connector

Version:

Celo Connector for Tatum API

10 lines (7 loc) 220 B
import {IsNotEmpty, Length} from 'class-validator'; import {PathAddress} from './PathAddress'; export class PathAddressCurrency extends PathAddress { @IsNotEmpty() @Length(2, 50) public currency: string; }