UNPKG

nft-folder-blockchain-connector-besu

Version:

A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.

11 lines (10 loc) 575 B
import { TokenBaseService } from './token-base.services'; import { BlockchainService } from 'src/shared/blockchain.service'; import { ConfigurationService } from 'src/configuration/configuration.service'; export declare class TokenBurnService extends TokenBaseService { protected readonly blockchainService: BlockchainService; protected readonly configurationService: ConfigurationService; constructor(blockchainService: BlockchainService, configurationService: ConfigurationService); burnToken(tokenId: number): Promise<void>; private verifyTokenBurn; }