UNPKG

@protokol/nft-base-crypto

Version:

Transaction Builders For Base NFT Transaction Types

15 lines (14 loc) 543 B
import { Utils } from "@arkecosystem/crypto"; import { AbstractNFTTransaction } from "@protokol/core-nft-crypto"; import ByteBuffer from "bytebuffer"; export declare class NFTTransferTransaction extends AbstractNFTTransaction { static typeGroup: number; static type: number; static key: string; static version: number; protected static defaultStaticFee: Utils.BigNumber; static getAssetSchema(): Record<string, any>; serialize(): ByteBuffer; deserialize(buf: ByteBuffer): void; hasVendorField(): boolean; }