SettleMint

Glossary

Definitions of key DALP architecture terms, token standards, identity concepts, operating components, and settlement primitives.

DALP architecture terms map to concrete product boundaries: tokens, identities, compliance rules, settlement flows, execution components, and EVM chain connectivity. Use this glossary when a term appears in an architecture page and you need the exact platform meaning.

Related pages: Architecture map, System context, ERC-3643 compliance standard, and SMART Protocol integration (ERC-3643).

How to use this glossary

Start with the term table when you need a definition. Use the standards table when you need to map a DALP concept to an Ethereum or identity standard. Follow the next-step links when you need the architecture page that explains the term in context.

Platform and token model

TermDefinition
DALPDigital Asset Lifecycle Platform. SettleMint's platform for issuing, managing, and servicing tokenized financial instruments across their full lifecycle.
SMART ProtocolSettleMint Adaptable Regulated Token. The protocol framework for regulated token behavior, compliance modules, and identity interfaces based on ERC-3643.
ERC-3643Ethereum standard for regulated tokens with conditional transfers based on investor eligibility and identity verification. DALP uses ERC-3643 concepts through SMART Protocol asset contracts.
Asset typeA base deployable asset type such as bond, equity, fund, stablecoin, deposit, real-estate, or precious-metal. DALP uses the type to route asset creation to the matching factory and validation rules.
Asset classA higher-level product grouping used by the asset catalogue and templates. System asset classes include fixed-income, equity, funds, cash, real-assets, and structured.
Asset factory type IDThe on-chain factory identifier used when DALP deploys an asset. Most IDs match asset types, and dalp-asset is a synthetic factory type for generic asset creation rather than a standalone asset class.
Factory patternDeployment pattern where factory contracts create new asset, addon, or infrastructure contract instances from approved configuration. Factories are registered so DALP can deploy assets consistently.
Denomination assetThe settlement currency or token configured for an asset's financial operations, such as distributions, offerings, yield claims, or redemptions.
Token featureRuntime-configurable token capability registered through the Configurable extension. Features can be added after deployment when the asset policy and deployed contracts support them.
AddonOperational contract capability that extends assets beyond the core SMART Protocol. Addons are registered through the Addon Registry and include Airdrop, Vault, XvP Settlement, Token Sale (DAIO), and Yield.

Identity and compliance terms

TermDefinition
OnchainIDOn-chain identity framework implementing ERC-734 key management and ERC-735 claim management. OnchainID stores verifiable claims about users and entities. Deep dive: Claims and identity.
Identity RegistryPer-system contract that maps wallet addresses to OnchainID identity contracts. The registry manages verification status and supports wallet recovery workflows.
Trusted IssuerAn approved issuer of verifiable claims for specific claim topics. Trusted issuers are registered in the Trusted Issuers Registry, and more than one issuer can cover the same topic. Deep dive: Claims and identity.
Claim TopicA category of verifiable attestation, such as KYC status, nationality, accreditation, or another eligibility rule. Tokens reference claim topics to express required participant claims.
ClaimA signed statement recorded on a participant's OnchainID for one claim topic. A claim only counts toward eligibility when its issuer is trusted for that topic and its signature validates. Deep dive: Claims and identity.
Compliance ModuleA pluggable on-chain rule evaluated during regulated token operations. Examples include country allow or block lists, identity verification, transfer limits, and time-based lockups. Multiple modules compose into an asset's compliance policy.
EOAExternally owned account. A blockchain account controlled directly by a private key, as opposed to a smart account governed by contract logic. A participant signs with an EOA, and identity and compliance still apply to the participant, not the account type.

Execution and chain infrastructure

TermDefinition
Key ManagementSecure cryptographic key storage component. Key Management abstracts custody backends such as local encrypted keys, DFNS MPC wallets, Fireblocks vaults, and hardware security modules.
Transaction SignerExecution component that prepares transactions, estimates gas, assigns nonces, delegates signing to the custody provider, and manages broadcast and confirmation.
Workflow EngineDurable workflow layer for long-running platform operations such as signing, broadcasting, retrying, and reconciling blockchain outcomes.
Virtual ObjectA keyed durable state machine in the Workflow Engine. A virtual object preserves workflow state across process restarts for operations such as signing and multi-step execution.
Dead Letter QueueHolding area for operations that exhaust retry attempts in the Workflow Engine. Operators investigate these items before retrying or closing them.
Ledger IndexService that listens to on-chain events from SMART Protocol contracts, translates them into structured data, and persists them to the application database.
BroadcastMulti-network connectivity layer for EVM RPC access. Broadcast abstracts network-specific details such as gas models and confirmation depth behind DALP's chain access layer.
Feeds SystemMarket data infrastructure that provides price and FX rate feeds through a central FeedsDirectory. The feeds system is Chainlink-compatible and supports global and token-specific feeds.

Account abstraction terms

Account abstraction changes which account executes a transaction and how gas is paid. It does not change participant identity, asset policy, custody approval, or whether an operation is allowed. Deep dive: Account abstraction model.

TermDefinition
Account abstractionThe execution route that lets a participant transact through a smart account instead of a direct externally owned account call. DALP uses ERC-4337 for the substrate and ERC-7579 modules for the account. Deep dive: Account abstraction model.
Advanced accountsThe operator-facing name for account abstraction capabilities (gasless transactions, multi-approver accounts, recovery) in Organisation settings.
Smart accountThe ERC-7579 modular account contract used as the transaction executor. Its address is known counterfactually before deployment, and it deploys on chain with its first UserOperation.
UserOperationThe account abstraction transaction request that the smart account validates and the EntryPoint executes. Deep dive: UserOperations.
EntryPointThe ERC-4337 singleton contract (version 0.9) that validates and executes UserOperations. DALP account factories and accounts are bound to the configured EntryPoint.
BundlerThe service that accepts and simulates UserOperations and submits valid ones to the EntryPoint. DALP exposes an authenticated, organization-scoped bundler JSON-RPC endpoint covering discovery, UserOperation submission, and ERC-7677 paymaster methods. Deep dive: Bundlers.
PaymasterThe system add-on that sponsors gas for eligible UserOperations through its EntryPoint deposit, bounded by a signed sponsorship ticket. Deep dive: Paymasters and gas sponsorship.
Validator moduleAn ERC-7579 module that enforces a smart account's signing rules. DALP ships an ECDSA single-owner validator and a weighted multisig validator.
Gas reservesThe funds behind advanced accounts. The submission reserve covers getting transactions on-chain, and the sponsorship reserve funds gasless transactions.
Submission reserveThe reserve that funds transaction submission, backed by the bundler wallet balance. It is always needed when advanced accounts is on.
Sponsorship reserveThe reserve that funds gasless (sponsored) transactions, backed by the paymaster's EntryPoint deposit. It is meaningful only when gas sponsorship is enabled.
Nonce laneA lane in the ERC-4337 two-dimensional nonce space, keyed by validator and sub-key, that lets independent operations prepare in parallel while dependent operations stay ordered.

Settlement and distribution terms

TermDefinition
XvP SettlementCross-value proposition settlement addon for coordinating token exchanges between parties. DALP uses the primitive for delivery-versus-payment and payment-versus-payment token flows. Configured local legs complete together or the exchange does not complete.
DAIODigital Asset Initial Offering. Primary distribution mechanism for moving newly issued assets to verified investors with settlement, lock-up enforcement, and soft-cap refund mechanics.
AirdropToken distribution addon that delivers tokens to recipient addresses according to a configured strategy. Airdrop integrates with the compliance layer for eligibility checks.
VaultMulti-signature treasury management addon for holding and governing settlement currency or digital assets with configurable approval thresholds.

Standards referenced by the architecture

StandardFull nameUsage in DALP
ERC-20Fungible token standardBase token compatibility for SMART tokens
ERC-165Interface detectionProgrammatic capability queries on SMART tokens
ERC-734Key managementOn-chain identity key management in OnchainID
ERC-735Claim managementVerifiable claims on identity contracts
ERC-2771Meta-transactionsGasless transaction support through trusted forwarders
ERC-3643Regulated security tokensFoundation for SMART Protocol compliance architecture
ERC-4337Account abstractionSmart accounts, UserOperations, EntryPoint (v0.9), bundler, and paymaster substrate
ERC-7579Modular smart accountsValidator modules (ECDSA single-owner, weighted multisig) on DALP smart accounts

Next steps

  • System context shows how these terms relate to the platform architecture.
  • Asset model explains asset classes, templates, factories, and deployed assets.
  • Key flows shows these components in asset issuance, compliance transfer, treasury distribution, and settlement flows.
  • Components covers responsibilities for each major component.

On this page