Data Trigger#

This page is intended to provide a brief description of how data triggers work in the initial version of Dash Platform. The design will likely undergo changes in the future.

Overview#

Although data contracts provide much needed constraints on the structure of the data being stored on Dash Platform, there are limits to what they can do. Certain system data contracts may require server-side validation logic to operate effectively. For example, DPNS must enforce some rules to ensure names remain DNS compatible. Dash Platform Protocol (DPP) supports this application-specific custom logic using Data Triggers.

Attention

Given a number of technical considerations (security, masternode processing capacity, etc.), data triggers are not considered a platform feature at this time. They are currently hard-coded in Dash Platform Protocol and only used in system data contracts.

Details#

Since all application data is submitted in the form of documents, data triggers are defined in the context of documents. To provide even more granularity, they also incorporate the document action so separate triggers can be created for the CREATE, REPLACE, or DELETE actions.

As an example, DPP contains several data triggers for DPNS. The domain document has added constraints for creation, replacing, deleting, transferring, purchasing, and updating prices:

Data Contract

Document

Action(s)

Trigger Description

DPNS

domain

CREATE

Enforces DNS compatibility, validate provided hashes, and restrict top-level domain (TLD) registration

—-

—-

—-

—-

DPNS

domain

REPLACE

Prevents updates to any DPNS document type

DPNS

domain

DELETE

Prevents deletion of any DPNS document type

DPNS

domain

TRANSFER

Prevents transfer of any DPNS document type

DPNS

domain

PURCHASE

Prevents purchase of any DPNS document type

DPNS

domain

UPDATE_PRICE

Prevents price updates on any DPNS document type

Note

The REPLACE, DELETE, TRANSFER, PURCHASE, and UPDATE_PRICE rows for DPNS all link to the same shared reject trigger, which DPNS reuses to disallow those actions on domain documents.

In addition to DPNS, DPP ships data triggers for a small set of other system contracts:

Data Contract

Document

Action(s)

Trigger Description

DashPay

contactRequest

CREATE

Enforces DashPay-specific rules on outgoing contact requests

—-

—-

—-

—-

Withdrawals

withdrawal

CREATE/REPLACE/DELETE

Enforces withdrawal status transitions and prevents direct external mutation of withdrawal documents

Feature flags

(various)

Protocol-version updates

Restricts feature flag changes to the authorized feature-flag identity

When document state transitions are received, DPP checks if there is a trigger associated with the document type and action. If a trigger is found, DPP executes the trigger logic. Successful execution of the trigger logic is necessary for the document to be accepted and applied to the platform state.