Infrastructure overview
The infrastructure layer coordinates the execution services that preserve DALP workflows, prepare EVM transactions, route signing, submit chain operations, index events, route RPC traffic, and provide trusted feed data behind the platform interfaces.
DALP infrastructure services turn accepted platform requests into EVM operations that can be signed, submitted, confirmed, indexed, and observed. The layer sits below the Asset Console and Unified API. Infrastructure owns the technical execution path after DALP has selected the asset, participant, compliance route, signer route, and chain context.
Architecture reviewers, security reviewers, and operators answer one question here: which service owns each part of the execution path, and where does that responsibility stop? For task steps, use the linked component and flow pages.
Scope
Reviewers get the mental model for DALP infrastructure before they inspect the component references. The page covers four review paths:
- workflow continuity from accepted platform request to terminal outcome
- signer and custody routing without turning DALP into the custody provider
- EVM connectivity, transaction submission, event indexing, and read-model freshness
- external feed values as configured workflow inputs
It does not document business approval rules, legal commitments, custody-provider controls, RPC-provider service levels, or non-EVM networks.
Execution path at a glance
The request path has two review boundaries. Platform services check whether an operation is valid for the asset, participant, policy, and chain context. Infrastructure services carry out the EVM execution work and report the result back to platform read models.
Each step can involve different deployment providers. The infrastructure layer keeps the DALP responsibility clear while still allowing operators to choose custody, RPC, observability, and feed-source implementations.
How the services fit together
The infrastructure layer is the execution backbone between DALP's business-facing platform and the EVM networks it operates on. A user request becomes a managed workflow. The platform validates the business context. Infrastructure services preserve progress, prepare the chain operation, request signatures through the configured custody path, submit the transaction, and update application read models after chain events are indexed.
The separation gives client teams two review paths. Product and compliance teams can focus on the Asset Console, Unified API, identity model, asset rules, and workflows. Technology, security, and operations teams can review signing, EVM connectivity, retries, read-model freshness, and deployment-specific providers.
Decision path for reviewers
Start with the operation you need to explain, then open the detail page for the service that owns that part of the operation.
| Review question | Read next | What the page defines |
|---|---|---|
| How does DALP keep a multi-step operation alive? | Execution Engine | Workflow orchestration, retry handling, failure recovery, and how lifecycle operations continue across infrastructure steps. |
| How are transactions prepared and sent? | Contract Runtime, then Transaction Signer | ABI encoding, contract calls, state queries, gas handling, nonce coordination, signing, and broadcasting. |
| Where are signing keys controlled? | Key Guardian, plus Account abstraction when smart accounts are in scope | Local, custody-provider, HSM-backed, and ERC-4337 signing paths, including which component controls key material and smart-account execution. |
| How does DALP reach EVM networks? | Chain Gateway and EVM RPC Node | RPC routing, upstream configuration, failover, direct JSON-RPC access, transaction submission, state queries, and supported EVM connectivity patterns. |
| How do chain events become application state? | Chain Indexer | Event ingestion, event-to-domain translation, historical blockchain state, and queryable read models for applications and integrations. |
| How are external prices and values supplied? | Feeds system | Price and foreign-exchange feed types, subject scopes, feed resolution, and where feed values enter DALP workflows. |
The detail pages are the public reference set for the overview above. Component names remain visible because those names are the stable documentation entry points. The surrounding tables describe public responsibilities instead of exposing deployment-specific internals.
Review sequence
Read the page in this order when you need a fast architecture review:
- Use the execution path diagram to place the operation.
- Use the decision table to choose the component reference.
- Use the ownership table to separate DALP behavior from operator and provider responsibilities.
- Use the related pages for detailed flows or component contracts.
Operating model
Operators configure and monitor infrastructure services. End users and integrations do not call infrastructure components directly. They use the Asset Console, Unified API, CLI, SDK, or documented integration endpoints.
That split keeps the user-facing workflow stable while operators can change custody backends, RPC providers, deployment topology, feed sources, and observability wiring behind it.

Ownership and limits
| Area | DALP infrastructure covers | Operator or provider owns | Not covered |
|---|---|---|---|
| Workflow execution | Coordinating infrastructure steps, retrying supported operations, and preserving progress. | Deployment sizing, operational runbooks, monitoring response, and incident escalation. | Business approval rules, legal sign-off, or asset-policy decisions. |
| Signing and custody | Preparing signing requests and routing them through the configured signer path. | Custody-provider configuration, HSM operation, key ceremonies, access policies, and contractual custody commitments. | A blanket custody guarantee or replacement for the selected custody provider's controls. |
| EVM connectivity | Routing contract calls, transaction submission, reads, retries, and failover through configured EVM access. | RPC provider selection, private-network access, endpoint credentials, throughput planning, and network availability commitments. | Non-EVM networks, bridge guarantees, settlement finality promises, or RPC-provider SLAs. |
| Indexed state and feed data | Turning supported chain events into read models and resolving configured feed values. | Feed-source contracts, data-vendor controls, source freshness monitoring, and deployment-specific reconciliation procedures. | Legal valuation, market-data licensing commitments, or external source accuracy promises. |
Component responsibilities
| Responsibility | Infrastructure services involved | What client reviewers should understand |
|---|---|---|
| Workflow continuity | Execution Engine, Transaction Signer | Multi-step lifecycle requests are coordinated, retried, and resumed without exposing raw infrastructure steps to users. |
| Signing and custody | Key Guardian, Transaction Signer, Account abstraction | Signing routes can use local signing, custody providers, HSM-backed signing, or ERC-4337 execution paths. |
| EVM network access | Contract Runtime, Chain Gateway, EVM RPC Node | Contract calls, transaction submission, RPC routing, failover, and chain reads are handled below the platform interfaces. |
| Queryable state and external values | Chain Indexer, Feeds system | Chain events become application read models, while feed data remains an operator-controlled input for workflows that need trusted external values. |
What stays outside this layer
Infrastructure services do not replace the platform's identity, compliance, asset, or policy model. The services execute the operation after the platform has selected the asset, participant, compliance path, signer route, and chain context.
Infrastructure services also do not make legal, custody, RPC-provider, or availability promises by themselves. Those commitments depend on the selected deployment architecture, custody backend, network providers, monitoring setup, and contractual operating model.
Related architecture pages
- Component catalog for the full platform inventory
- Platform layer for the interfaces that call into infrastructure services
- Key flows for cross-service operation sequences
System Factory
How DALP creates a system for an organization, keeps assets scoped to that system, and uses the token factory registry to isolate multi-tenant reads.
Execution Engine
The DALP Execution Engine coordinates long-running asset lifecycle operations with workflow-runtime-backed workflows, persisted workflow progress, signer routing, transaction state transitions, and stalled-workflow metrics.