# Equities

Source: https://docs.settlemint.com/docs/business/executive-overview/use-cases/equities
Model common shares, preferred shares, and employee equity awards on DALP with holder eligibility, transfer controls, template-specific governance features, and balance snapshots for shareholder records.



Equity instruments on DALP are share-like assets for common shares, preferred shares, and employee equity awards. Use DALP to model the token, enforce holder eligibility, record transfers, and attach voting or balance-snapshot features where the selected template includes them. Corporate-law treatment, shareholder-register status, tax, issuer approvals, and cash movement remain external operating responsibilities.

**Who should read this:** Corporate secretaries, legal teams, investor relations teams, and architects deciding whether a share-like instrument fits DALP.

## Business challenge [#business-challenge]

A company that manages many shareholders needs more than a token minting screen. The issuer defines the share-like instrument and decides who can hold it. The issuer also records transfers, supports governance where configured, and keeps operational evidence for audits and reporting.

Traditional share administration often spreads these duties across legal records, investor spreadsheets, transfer-agent workflows, payment systems, and voting tools. DALP provides a controlled EVM execution layer for the instrument and its lifecycle events. The platform does not replace legal counsel, approval processes, payment rails, or the institution's formal shareholder register unless those responsibilities are explicitly integrated into the target operating model.

![Tokenized equities with on-chain compliance.](/docs/screenshots/equity/equity-listing.webp)

## DALP equity pattern [#dalp-equity-pattern]

<Mermaid
  chart="`
flowchart TB
  TERMS[Share terms and corporate policy]
  TEMPLATE[Equity template]
  TOKEN[Equity token]
  ELIGIBILITY[Holder eligibility controls]
  FEATURES[Voting and balance snapshots]
  LIFECYCLE[Mint, transfer, freeze, recover, and burn operations]
  RECORDS[Indexed holder and transaction records]
  EXTERNAL[Legal register, tax, payments, and corporate approvals]

  TERMS --> TEMPLATE
  TEMPLATE --> TOKEN
  TOKEN --> ELIGIBILITY
  TOKEN --> FEATURES
  TOKEN --> LIFECYCLE
  LIFECYCLE --> RECORDS
  TERMS --> EXTERNAL
  RECORDS --> EXTERNAL

  style TERMS fill:#8571d9,stroke:#654bad,stroke-width:2px,color:#fff
  style TEMPLATE fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style TOKEN fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style ELIGIBILITY fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style FEATURES fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style LIFECYCLE fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style RECORDS fill:#5fc9bf,stroke:#3a9d96,stroke-width:2px,color:#fff
  style EXTERNAL fill:#b661d9,stroke:#8a3fb3,stroke-width:2px,color:#fff

`"
/>

## What DALP supports [#what-dalp-supports]

| Area                | DALP responsibility                                                                                                                                                       | External responsibility                                                                                                     |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Instrument setup    | Create a share-like asset from the equity profile, including standard token parameters and configured metadata.                                                           | Define the legal share class, rights, approvals, charter treatment, and offering restrictions.                              |
| Holder eligibility  | Apply configured identity, country, and investor-count compliance modules where the deployment requires them.                                                             | Decide the eligible investor policy and maintain the off-chain KYC, sanctions, and legal review process.                    |
| Voting              | Attach voting-power behavior when the selected configuration includes the module. Holders delegate voting power, and DALP can report current and historical voting power. | Define resolutions, quorum, proxy rules, class rights, and the legally binding effect of each vote.                         |
| Shareholder records | Use historical balances and indexed token activity as operational evidence for holder views and reconciliation.                                                           | Decide whether and how those records update the official shareholder register.                                              |
| Lifecycle controls  | Use role-gated minting, burning, pausing, freezing, forced transfer, and recovery operations where granted roles and selected modules allow them.                         | Approve corporate events, court orders, lost-wallet policy, and required notices before operators act.                      |
| Distributions       | Use configured token features or integrations only when the selected deployment supports the required distribution workflow.                                              | Fund cash or tokenized-cash payments, calculate tax treatment, approve payment files, and reconcile external payment rails. |

## Implementation shape [#implementation-shape]

An equity deployment starts with the legal and operational design, then maps that design into the DALP asset configuration.

1. Define the share class, supply model, decimals, symbol, reference currency, and legal owner.
2. Select the equity profile or closest configurable asset template.
3. Configure holder eligibility rules, trusted issuers, claim topics, country controls, and investor-count limits where they apply.
4. Attach voting power and historical-balance behavior when the share programme needs governance or record-date snapshots.
5. Grant only the roles required for asset operation, supply management, emergency controls, and compliance administration.
6. Test minting, transfers, restricted transfers, voting delegation, balance snapshots, and any distribution workflow before production use.

![Equity token details with company information and voting rights parameters.](/docs/screenshots/equity/equity-detail-1.webp)

## Operating boundaries [#operating-boundaries]

DALP records token lifecycle activity on EVM infrastructure and exposes indexed records for platform views, APIs, and reconciliation. The platform does not by itself determine whether a token is a legal share, replace required filings, remove transfer-agent duties in every jurisdiction, or prove that an external cash payment has happened.

Treat the DALP record as the execution and evidence layer. The institution remains responsible for mapping that layer to legal registers, payment instructions, custody arrangements, tax reporting, investor communications, and regulator-facing evidence packs.

## Production checklist [#production-checklist]

Before using DALP for a share-like instrument, confirm:

* The instrument fits the current equity profile: common equity, preferred equity, or employee equity awards.
* The legal share class and shareholder rights are final before token deployment.
* Holder eligibility rules match the offering policy and the selected compliance modules.
* Voting behavior is required and configured, or explicitly out of scope for the programme.
* Balance snapshots support the intended record-date and reconciliation process.
* Role assignments follow least privilege for supply, emergency controls, recovery, and compliance administration.
* External systems cover payments, tax, corporate approvals, and official shareholder-register updates.

## Read next [#read-next]

* [Instrument profiles](/docs/architects/architecture/components/asset-contracts/instrument-profiles) explains the equity profile and its token features.
* [Tokenization modeling](/docs/architects/architecture/concepts/tokenization-modeling) shows how templates, features, compliance modules, and lifecycle operations fit together.
* [Equity tokenization in the console](/docs/operators/user-guides/runbooks/equity-tokenization) walks through a UI-led equity scenario.
* [Equity tokenization through APIs](/docs/developers/developer-guides/runbooks/equity-tokenization) gives the API-led version of the same scenario.
