UNPKG

@tatumio/erc20-connector

Version:

ERC20 Connector for Tatum API

13 lines (10 loc) 292 B
import { IsNotEmpty, Length } from "class-validator"; import { PathChain } from "./PathChain"; export class PathTokenIdContractAddressChain extends PathChain { @IsNotEmpty() @Length(42, 62) public contractAddress: string; @IsNotEmpty() @Length(1, 256) public tokenId: string; }