nft-folder-blockchain-connector-besu
Version:
A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.
8 lines (7 loc) • 316 B
TypeScript
import { TokenInformationDto } from 'src/token/dto/token.information.dto';
export declare class SegmentReadDto {
segmentAddress: string;
segmentName: string;
tokenInformation: TokenInformationDto[];
constructor(segmentAddress: string, segmentName: string, tokenInformation: TokenInformationDto[]);
}