SettleMint
Source verification

Smart contract source verification and deployment auditability

Overview of how DALP makes deployed EVM contracts reviewable through deployment records, bytecode checks, upgrade history, and audit evidence, with links to the detail pages for each evidence surface.

DALP contract auditability connects the addresses running on an EVM network to the expected DALP contract system and to the state transitions operators see in the platform. DALP supports that review through deployment records, bytecode presence checks, post-migration verification, upgrade evidence, indexed events, and off-chain workflow records.

This page is the entry to the auditability model. The detail pages cover each evidence surface in depth:

  • Deployment evidence — the address manifest, the bytecode-presence check, and the change controls operators preserve.
  • Bytecode verification — source-verification vs runtime-verification, and the open-source vs proprietary contract source answer.
  • Upgrade history — provenance, upgrade authority, proxy patterns, directory pointers, and timelock or cancellation controls.
  • Audit evidence — vulnerability-control, formal-assurance, and full audit-report answer shapes.

Who this is for

ReaderDecision this page supports
Technology architectDecide which deployment evidence to collect before accepting a DALP environment
Security auditorCheck whether deployed contracts, addresses, roles, and migration state can be inspected
OperatorUnderstand which evidence belongs in an environment evidence pack
Integration leadKnow where on-chain evidence ends and where platform workflow evidence begins

The evidence model has a clear limit: block explorers, address manifests, bytecode checks, migration reads, and indexed events support technical review, but they do not replace a formal smart contract audit, customer approval record, or contractual assurance process. Treat the page as an explanation of what evidence exists and who controls each artifact, not as a substitute for the environment's security review.

Use this page with the security overview, transaction signing flow, and operability model when you assemble an environment review pack.

Auditability schematic

The schematic separates the review surfaces that can otherwise get blended together in an evidence pack. Deployment records tell auditors what to expect, RPC reads show what exists on the selected chain, verification reads test DALP wiring, indexed events connect accepted work back to submitted transactions, and the environment evidence pack preserves the result.

Rendering diagram...

Evidence model

A DALP deployment has four evidence layers.

Evidence layerWhat it provesWhere it is checked or read
Deployment recordWhich DALP modules were deployed for the environment and which addresses existThe deployment address manifest created by the deployment process
Deployed bytecodeThe recorded addresses contain EVM bytecode on the selected networkRPC bytecode reads against the configured network
System wiringCore system, directory, registry, compliance, and token links are coherentPost-deployment or post-migration verification reads from the contracts
Operational state evidenceThe platform view matches accepted, queued, signed, submitted, and indexed workExecution records, transaction status, chain events, indexer reads, logs

These layers answer different questions. A recorded address is not enough on its own. A non-empty bytecode response proves that code exists at an address, but it does not prove the whole system is wired correctly. Wiring checks prove the expected DALP relationships are present. Operational evidence shows how a business action moved through the platform and onto the chain.

Review flow

The review flow turns the schematic into a practical checklist. Review the evidence in this order so each check narrows the next one:

  1. Start with the deployment record. Confirm the network, chain identifier, directory, system factory, and supporting addresses expected for the environment.
  2. Read bytecode at the recorded core addresses. An eth_getCode response of 0x means no code is deployed at that address on the selected network, so the address record cannot be trusted until the environment is repaired or redeployed.
  3. Run post-deployment or post-migration verification. These checks read contract state, migration version, registry links, interface support, and token readability instead of trusting the manifest alone.
  4. Compare upgrade and administrator authority. Review owner, administrator, system-manager, and custody-policy records for accounts that can administer or upgrade contracts.
  5. Reconcile a sample business action. Start with the platform request or transaction request ID for queued work, then match the terminal workflow status, transaction hash, indexed event, and final platform read for the same action.

For asynchronous writes, the transaction request ID is the first audit handle. Poll it until DALP exposes a terminal queue state and, for successful on-chain work, a transaction hash or receipt you can reconcile against indexed events. See Transaction tracking for the request-ID-to-hash lookup pattern.

This flow keeps source verification, runtime checks, and operator approval evidence separate. It also gives auditors a stable way to explain a failure: wrong address record, missing bytecode, failed wiring check, unclear authority, or an operational action that cannot be reconciled end to end.

StepPass signalFailure signalDetail page
Deployment recordThe manifest names the expected network, chain identifier, modules, and addressesThe manifest is missing, names the wrong network, or cannot be tied to the accepted releaseDeployment evidence
Bytecode presenceRequired addresses return non-empty EVM bytecodeA required address returns 0x or the RPC read targets the wrong networkBytecode verification
Post-migration verificationVersion, registry, interface, and token-readability checks passThe directory, registry, interface support, or migration version does not match the environmentOperability model
Authority reviewOwner, administrator, system-manager, and custody-policy records are archivedAn upgrade path exists without a matching approval or key-owner recordUpgrade history
Action reconciliationRequest ID, workflow status, transaction hash, event, and platform read agreeThe platform state cannot be traced from the request ID to the submitted transaction or eventAudit evidence

What to include in an audit pack

For a production environment, collect the evidence in the order an auditor needs it:

  1. Network and chain identifier for the environment.
  2. Deployment address manifest for the DALP system and supporting contracts.
  3. Explorer source verification links where the selected network and explorer support them.
  4. Bytecode presence check for required contract addresses, including the chain ID and time the check was recorded.
  5. Version pinning evidence for the deployed release or customer-controlled source package.
  6. Complete independent security audit report for every token contract in scope, or the approved evidence channel that provides those reports for the environment.
  7. Audit scope statement covering contracts, source package, compiler settings, proxy or implementation addresses, and deployment inputs.
  8. Finding counts by severity, including Critical, High, Medium, Low, Informational, and accepted-risk findings.
  9. Remediation notes and retest confirmation for every Critical and High finding.
  10. Post-deployment or post-migration verification output for system wiring and migration version.
  11. Upgrade authorization records for any post-deployment contract changes.
  12. Owner, administrator, and system-manager role state for contracts that can be administered or upgraded.
  13. Transaction samples showing request acceptance, durable execution status, chain transaction hash, indexed events, and final platform reads.
  14. Token document records for asset files that need file-hash reconciliation, using the token document upload flow when the evidence belongs to the asset rather than a user's KYC profile.
  15. Backup and recovery evidence for the operated environment, using the backup and recovery guide to keep RTO, RPO, restore drills, and incident-response evidence tied to the deployment instead of treating them as generic product guarantees.
  16. Operator ownership notes for custody policy, RPC provider or node operation, backup retention, and incident response.

Keep environment keys, credentials, tenant identifiers, and private operational logs out of public documentation and shared screenshots. Keep proprietary source packages, full audit reports, and remediation work papers in the agreed review channel when they are not public or customer-controlled. Share sensitive evidence only through the approved channel for that environment.

Reserve and backing evidence

Reserve-backed, certificate-backed, and physical-asset-backed programmes need a second reconciliation path alongside contract source review. The contract evidence shows which token contracts and platform workflows executed. The reserve evidence shows whether the off-chain asset, custodian account, warehouse record, trustee report, or auditor attestation supports the token state.

Keep these two records connected but separate:

Review questionDALP evidenceExternal evidence owner
Which asset document was attached?Token document metadata, documentType, version group, visibility, upload timestamp, uploader, and fileHashIssuer, custodian, trustee, warehouse operator, verifier, or auditor
Does the document match the asset type?Asset-profile document types such as reserve_audit, attestation_report, assay_certificate, storage_receipt, and chain_of_custodyProgramme policy that decides which evidence type is acceptable for issuance, minting, redemption, or reconciliation
Did token state change after approval?Request ID, transaction status, transaction hash, token event history, holder state, and final platform readsApproval record that explains why the supply-changing action was allowed
Does the off-chain reserve still agree?DALP supply, token documents, lifecycle events, and reconciliation checkpointsReserve report, custody statement, bank record, warehouse record, or external audit file

A token document record is evidence that DALP stored and classified an asset file. It is not automatic proof that a reserve exists, that a custodian still holds it, or that an auditor approved it. For reserve or physical-asset programmes, reconcile the token document fileHash and document type against the external evidence pack before approving a supply-changing action.

Use token document uploads for the asset file workflow. Use Precious metals when the reserve evidence is assay, storage, custody-chain, or insurance material for a metal programme.

Responsibility split

AreaDALP providesOperator provides
Contract deployment processDeployment modules, address records, and verification scriptsEnvironment approval, selected network, and release evidence retention
Runtime bytecode checksRPC checks that required contract addresses contain bytecodeNetwork access, check evidence capture, and remediation when addresses are stale or unreachable
Migration verificationContract reads that check version, registry, implementation, and token stateDecision to run and archive verification output for the environment
Explorer source verificationSource and compiler configuration needed for verification when availableExplorer publishing workflow where the network supports it
Proprietary source accessPublic ABI, deployed address, version, audit availability, and agreed review materialApproval process for receiving restricted source or audit material
Upgrade governanceUpgradeable contract controls and role-readable authorization stateApproval records, custody controls, and key-owner records
Operational audit trailWorkflow state, transaction status, indexed events, and API-visible readsExternal audit-pack assembly, legal sign-off, and policy documentation
Reserve and backing evidenceToken document metadata, file hash, asset-profile document type, token state, and lifecycle event historyReserve reports, custody statements, warehouse records, trustee approvals, auditor attestations, and reconciliation policy

The practical rule is straightforward: use DALP evidence to prove what the platform deployed, recorded, and executed, then attach the operator-owned approvals and policies that explain why those actions were allowed.

Contract source and deployment evidence sit between architecture review and operations review. Use these pages as the next reading path:

On this page