@btc-stamps/tx-builder - v0.1.7
    Preparing search index...

    Interface ProtectedAssetData

    Data structure for protected asset information

    interface ProtectedAssetData {
        identifier?: string;
        metadata?: any;
        properties?: Record<string, any>;
        type:
            | "ordinal"
            | "inscription"
            | "stamp"
            | "src20"
            | "counterparty"
            | "unknown";
        value?: number;
    }
    Index

    Properties

    identifier?: string

    Human-readable identifier for the asset

    metadata?: any

    Asset-specific metadata

    properties?: Record<string, any>

    Additional properties specific to the asset type

    type: "ordinal" | "inscription" | "stamp" | "src20" | "counterparty" | "unknown"

    Type of protected asset

    value?: number

    Estimated value of the asset (in satoshis)