Type alias WalletTemplateAddressData

WalletTemplateAddressData: WalletTemplateVariableBase & {
    description?: string;
    name?: string;
    type: "AddressData";
}

Type declaration

  • Optional description?: string

    A single-line, human readable description for this address data.

  • Optional name?: string

    A single-line, Title Case, human-readable name for this address data.

  • type: "AddressData"

    AddressData is the most low-level variable type. It must be collected and stored each time a script is generated (usually, a locking script). AddressData can include any type of data, and can be used in any way.

    For more persistent data, use WalletData.

Generated using TypeDoc