{"id":5241,"date":"2026-09-10T05:13:17","date_gmt":"2026-09-10T05:13:17","guid":{"rendered":"https:\/\/www.innblockchain.com\/academy\/?p=5241"},"modified":"2026-09-10T05:13:20","modified_gmt":"2026-09-10T05:13:20","slug":"eu-compliant-tokenized-securities-smart-contract-architecture","status":"publish","type":"post","link":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture","title":{"rendered":"EU-Compliant Tokenized Securities: Smart Contract Architecture"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Most EU compliance writing is organised one regulation at a time. That is the right shape for a lawyer and the wrong shape for a build, because the contracts do not divide that way. The document-anchoring contract answers the Prospectus Regulation, the fund regime and the market-abuse regime at once. The identity layer answers anti-money-laundering, digital-identity and investor-classification duties simultaneously. Read regulation by regulation, you write the same module down four times and still cannot tell how many contracts you are building.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So this article follows the way the system&#8217;s shape \u2014\u00a0<strong>organized<\/strong> <strong>by architecture layer, with regimes attaching to whichever layer governs them.<\/strong>\u00a0A layer exists because something has to be built, not because a Regulation has a name.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Scope: the issuer lane.<\/strong>&nbsp;The entity issuing and administering a tokenized security \u2014 including the moment it has the token admitted to trading on someone else&#8217;s venue, which is when the market-integrity layer switches on and not before. Venue operators and own-account dealers carry a larger obligation set not covered here.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"1_The_rule_that_decides_what_goes_on-chain\"><\/span><strong>1. The rule that decides what goes on-chain<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before any module, one test. It removes more work than it creates.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>An on-chain record earns its place only when an on-chain function gates on it.<\/strong>&nbsp;Some&nbsp;<code>require<\/code>,&nbsp;<code>revert<\/code>&nbsp;or branch has to read it and decide something. Holding every input needed to compute an answer is not a reason to compute it on-chain \u2014 only permission to, if something reads the result.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The rule of thumb that &#8220;a rule goes on-chain when the contract holds every input&#8221; is necessary and not sufficient, and the gap is where over-building lives. A notification threshold is the clean example: give a contract a price feed and it can aggregate a running total perfectly. It still does not belong on-chain, because crossing the threshold makes a transaction&nbsp;<strong>notifiable, never unlawful<\/strong>. Nothing gates. The contract could only emit an alert an indexer would raise anyway \u2014 pricing worse, unable to count business days, unable to correct an immutable total after a bad feed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>&#8220;The contract could decide this&#8221;<\/em>&nbsp;and&nbsp;<em>&#8220;a contract must decide this&#8221;<\/em>&nbsp;are different claims. Only the second buys on-chain state.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"The_carve-out_emitting_an_event_is_not_storing_state\"><\/span><strong>The carve-out: emitting an event is not storing state.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An event surface no contract reads is how off-chain surveillance and regulatory reporting receive ledger facts; market-abuse monitoring is unbuildable without it. The test bars\u00a0<em>state<\/em>\u00a0nothing reads, not events nothing reads.\u00a0<strong>The carve-out inverts for personal data.<\/strong>\u00a0Storage can be deleted; an event log cannot. So where an event describes a natural person it carries the wallet and an opaque hash and nothing else \u2014 tier, jurisdiction, person type, claim outcomes and declared covenants stay in storage, where deletion actually works. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The sharpest case is the internal person identifier that ties an investor&#8217;s wallets together: in storage, one erasure call removes every wallet under it; in a log, it states permanently that those addresses are one human. An event says\u00a0<em>that<\/em>\u00a0something happened to a wallet; storage says\u00a0<em>what<\/em>. And the indexer loses nothing, because the operator minted that identifier and holds the wallet-to-person table in its own database \u2014 the one copy of the linkage the operator can delete, which is why it is the copy that holds it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That gives three honest categories, and naming the third is part of the design:<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><tbody><tr><td><\/td><td><strong>What it Means<\/strong><\/td><td><strong>Example<\/strong><\/td><\/tr><tr><td><strong>On-chain<\/strong><\/td><td>The contract holds every input and a function reverts on it<\/td><td>Transfer eligibility; subscription ceilings; the denominator, timers and breach-state machine of a fund limit<\/td><\/tr><tr><td><strong>Partial<\/strong><\/td><td>The decision is on-chain, an input is fed in<\/td><td>Valuation figures and what the fund holds \u2014 the numerator of the same limit; working-day calendars; per-jurisdiction thresholds<\/td><\/tr><tr><td><strong>Off-chain<\/strong><\/td><td>Procedural, human, or addressed to the firm rather than the transfer<\/td><td>Customer due diligence itself; regulator filings; policy documents<\/td><\/tr><\/tbody><\/table><\/figure>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A design that claims everything is on-chain is not more compliant. It is less honest about where the failure modes are.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"2_Seven_capabilities_before_any_token_standard\"><\/span><strong>2. Seven capabilities, before any token standard<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Whether to build on the ERC-1400 family or ERC-3643 (T-REX)&nbsp;<strong>is the wrong question to start with, and it is not a compliance question.<\/strong>&nbsp;Every obligation here is satisfiable under either. The choice turns on the operator&#8217;s existing stack, vendor relationships, auditor familiarity and interoperability commitments \u2014 it changes which capabilities arrive pre-built and which are custom, and therefore the audit surface. It does not change the rulebook.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So this section specifies the architecture is specified as a\u00a0<strong>required capability set<\/strong>, then binds it to whichever standard you chosen:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">#<\/th><th class=\"has-text-align-left\" data-align=\"left\">Capability<\/th><th class=\"has-text-align-left\" data-align=\"left\">What forces it<\/th><\/tr><\/thead><tbody><tr><td>1<\/td><td><strong>Pre-validation transfer gate<\/strong>&nbsp;\u2014 every movement checked before it executes, with an opaque refusal reason, and every reason a wallet may not move held in&nbsp;<strong>one store under one flag<\/strong><\/td><td>Eligibility rules across every regime. Disclosing that a block was AML-driven is a criminal offence, so the revert stays generic \u2014 and a generic revert is decoration if a sanctions listing, a lapsed record and a suspicion block sit in three readable storage slots. One store makes the classes indistinguishable by construction<\/td><\/tr><tr><td>2<\/td><td><strong>Investor identity and classification record<\/strong>&nbsp;\u2014 wallet resolved to a&nbsp;<strong>person<\/strong>, and the person to a verified record carrying tier and jurisdiction<\/td><td>Investor classification, customer due diligence, digital-identity claims.&nbsp;<strong>Two hops, not one, and that is regulation talking:<\/strong>&nbsp;the prospectus exemptions count&nbsp;<em>people<\/em>&nbsp;per Member State and the right to erasure erases&nbsp;<em>a person<\/em>, so attributes stored per wallet let one human hold two jurisdictions and two classifications \u2014 and let an &#8220;erased&#8221; investor keep trading through a wallet the delete never reached<\/td><\/tr><tr><td>3<\/td><td><strong>Trusted attestation issuers, with revocable claims<\/strong>&nbsp;\u2014 third-party attestations revocable with immediate effect on transferability<\/td><td>Qualified trust-service and electronic-attestation regimes; periodic AML re-screening<\/td><\/tr><tr><td>4<\/td><td><strong>Rule modularity<\/strong>&nbsp;\u2014 rules added, removed and upgraded individually, each mappable to one Article<\/td><td>Fund limits change on their own schedule; the audit needs a one-to-one Article-to-function map<\/td><\/tr><tr><td>5<\/td><td><strong>Freeze, forced transfer and recovery<\/strong>&nbsp;\u2014 parcel-level freezes, forced transfers, lost-key recovery<\/td><td>Circuit-breakers, regulator-ordered remediation, seizure and transfer-to-estate orders.&nbsp;<strong>Wallet-level stops are not here<\/strong>&nbsp;\u2014 sanctions, suspicion, probate and court attachments live in the single store from capability 1, because a stop distinguishable by&nbsp;<em>where<\/em>&nbsp;it is stored discloses its class<\/td><\/tr><tr><td>6<\/td><td><strong>Partition and tranche segmentation<\/strong>&nbsp;\u2014 sub-balances with independent transfer rules<\/td><td>Side pockets, per-tranche lock-ups, the pending state a subscription sits in before it settles<\/td><\/tr><tr><td>7<\/td><td><strong>Investor covenants<\/strong>&nbsp;\u2014 what the investor&nbsp;<em>themselves<\/em>&nbsp;stated or acknowledged, bound to the hash of the document version it was given against, checkable at mint, send or receive independently<\/td><td>Key-information delivery, long-life fund warnings, declared-person registers, retail-access acknowledgements<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Capabilities_3_and_7_look_like_one_capability_and_are_not\"><\/span><strong>Capabilities 3 and 7 look like one capability and are not.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The third runs one direction: a third party attests something\u00a0<em>about<\/em>\u00a0the investor. The seventh runs the other: the investor attests something themselves \u2014\u00a0<em>I received this document, I am a declared person.<\/em>\u00a0The third is time-based and expires. The seventh binds to a\u00a0<strong>document version hash<\/strong>, so revising the document invalidates every outstanding acknowledgement the moment the new version is anchored \u2014 no sweep, no configuration, no chance to forget.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"3_The_layers_and_what_lives_in_each\"><\/span><strong>3. The layers, and what lives in each<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Layer<\/th><th class=\"has-text-align-left\" data-align=\"left\">Modules<\/th><th class=\"has-text-align-left\" data-align=\"left\">Principal regimes<\/th><\/tr><\/thead><tbody><tr><td><strong>Token and identity base<\/strong><\/td><td><code>SecurityToken<\/code>&nbsp;\u00b7&nbsp;<code>IdentityRegistry<\/code>&nbsp;\u00b7&nbsp;<code>TrustedIssuersRegistry<\/code>&nbsp;\/&nbsp;<code>ClaimTopicsRegistry<\/code><\/td><td>Investor classification \u00b7 anti-money-laundering \u00b7 digital identity<\/td><\/tr><tr><td><strong>Identity and eligibility<\/strong><\/td><td><code>ModularCompliance<\/code>&nbsp;and its rule modules \u00b7&nbsp;<code>RestrictedPartyRegistry<\/code>&nbsp;\/&nbsp;<code>RestrictedPartyGate<\/code>&nbsp;\u2014 the single wallet-stop store, read by the token and the payout path directly as well as through the gate \u00b7&nbsp;<code>CovenantRegistry<\/code><\/td><td>Anti-money-laundering \u00b7 targeted sanctions \u00b7 key-information delivery \u00b7 declared-person registers<\/td><\/tr><tr><td><strong>Fund-structure enforcement<\/strong><\/td><td><code>EltifConcentration<\/code>&nbsp;\u00b7&nbsp;<code>UcitsFiveTenForty<\/code>&nbsp;\u00b7&nbsp;<code>NavBorrowingCap<\/code>&nbsp;\u00b7&nbsp;<code>LmtGate<\/code>&nbsp;\u00b7&nbsp;<code>HoldingPeriodLock<\/code>&nbsp;\u00b7&nbsp;<code>ValuationOracle<\/code><\/td><td>Alternative-fund, UCITS and long-term-fund regimes<\/td><\/tr><tr><td><strong>Investor economics<\/strong><\/td><td><code>DistributionAgent<\/code>&nbsp;\u00b7&nbsp;<code>CouponSchedule<\/code>&nbsp;\u00b7&nbsp;<code>DistributionWaterfall<\/code>&nbsp;\u00b7&nbsp;<code>BuybackAgent<\/code><\/td><td>Market-abuse safe harbours \u00b7 fund distribution rules<\/td><\/tr><tr><td><strong>Market integrity<\/strong><\/td><td><code>PdmrClosedPeriodFreeze<\/code>&nbsp;\u00b7&nbsp;<code>PdmrRegister<\/code>&nbsp;\u00b7&nbsp;<code>MarketEventSchema<\/code>&nbsp;<em>(the event surface, not the reporting bridge)<\/em><\/td><td>Market Abuse Regulation<\/td><\/tr><tr><td><strong>Disclosure and document registry<\/strong><\/td><td><code>DocumentRegistry<\/code>&nbsp;\u00b7&nbsp;<code>SubscriptionEscrow<\/code><\/td><td><strong>Prospectus Regulation<\/strong>&nbsp;\u00b7 fund prospectus regimes \u00b7 key information documents \u00b7 market-abuse disclosure<\/td><\/tr><tr><td><strong>Governance and upgrade control<\/strong><\/td><td>Stock multisig \u2192&nbsp;<code>TimelockController<\/code>&nbsp;\u2192&nbsp;<code>ProxyAdmin<\/code>&nbsp;\u2192 proxy, deployed unmodified, the disclosure document&#8217;s hash carried in the timelock salt so change and document are bound on-chain \u00b7&nbsp;<code>DoraGovernor<\/code>&nbsp;\u2014 a protocol pause, an incident log and a key-rotation register, and nothing else.&nbsp;<strong>No custom contract sits on the upgrade path.<\/strong>&nbsp;The pause is read where it has to bite \u2014 the token&#8217;s holder-initiated transfers and mints, the fund modules&#8217; acquisition paths, payouts and buy-back purchases \u2014 and deliberately not by forced transfer, recovery, repayments, disposals or refunds. A pause nothing reads is an event with a different name<\/td><td>Prospectus supplement discipline \u2014 see \u00a7 4<\/td><\/tr><tr><td><strong>Data protection<\/strong><\/td><td>Almost no module. The constraint runs through all of them \u2014 minimise personal data on-chain, justify every field that remains, keep it out of event logs entirely \u2014 plus&nbsp;<strong>one contract<\/strong>: a&nbsp;<code>PersonErasure<\/code>&nbsp;coordinator that answers an erasure request in a single call, fanning out to every store holding residue about a person and erasing the identity registry last. Complete as to storage, silent as to history<\/td><td>General Data Protection Regulation<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Two properties of that table are where the page count goes when you organise by regulation instead.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"One_module_usually_answers_several_regimes\"><\/span><strong>One module usually answers several regimes.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>DocumentRegistry<\/code>\u00a0anchors an offer prospectus, a fund prospectus and annual report, market-abuse disclosures and a retail key information document. Scoped from any one regime it is under-built for the other three.\u00a0<code>IdentityRegistry<\/code>\u00a0is the same story.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"One_regime_usually_spans_several_modules\"><\/span><strong>One regime usually spans several modules.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A retail key-information duty touches\u00a0<code>DocumentRegistry<\/code>\u00a0for anchoring,\u00a0<code>CovenantRegistry<\/code>\u00a0for delivery acknowledgement, and is a fund-regime line item as well. There is no single place to read it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Every_obligation_here_is_removable_except_one_and_how_it_is_removed_is_a_design_rule\"><\/span><strong>Every obligation here is removable except one, and\u00a0<em>how<\/em>\u00a0it is removed is a design rule.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Which obligations an issuer owes is a scoping decision: anti-money-laundering rules bind\u00a0<em>obliged entities<\/em>\u00a0\u2014 investment firms, fund managers, payment institutions \u2014 and a bare securities issuer is not one until it holds a licence. A client owing less does not unwire the compliance engine; the reference is mandatory at construction and never null. They\u00a0<strong>empty the rule set<\/strong>\u00a0\u2014 one removal per Article, each logged. A nullable reference cannot tell\u00a0<em>&#8220;nobody wired it&#8221;<\/em>\u00a0from\u00a0<em>&#8220;not owed&#8221;<\/em>, and a half-finished deployment then waves every transfer through. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Targeted sanctions are the exception &#8211; they bind regardless of licence, which is why the token reads the wallet-stop store directly, above the removable module list, and not only through a module governance can drop with one call.\u00a0<strong>That read runs on every path that moves units, the agent-operated forced transfer included.<\/strong>\u00a0A control that binds irrespective of client type must not be reachable only through a list one\u00a0<code>removeModule<\/code>\u00a0call empties: with the module gone, an agent key would otherwise be able to place units on a listed person and call it a seizure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"4_How_many_of_each_%E2%80%94_the_question_that_decides_your_topology\"><\/span><strong>4. How many of each \u2014 the question that decides your topology<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The list above says which modules exist, not&nbsp;<strong>how many instances you deploy<\/strong>. For a platform running more than one asset that is the more expensive question. Some of it regulation decides; some is a genuine choice whose cost lands somewhere unexpected.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>One instance, platform-wide \u2014 regulation decides this:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Module<\/th><th class=\"has-text-align-left\" data-align=\"left\">What forces it<\/th><\/tr><\/thead><tbody><tr><td><code>IdentityRegistry<\/code>&nbsp;and its due-diligence claims<\/td><td>The anti-money-laundering trigger is the&nbsp;<strong>business relationship<\/strong>, not the product, and the refresh cadence is per-customer. Per-asset identity puts one investor on several refresh clocks and lets a lapse on one asset coexist with trading on another<\/td><\/tr><tr><td>Investor classification claim<\/td><td>Classification is per-client. One classification service, many regimes<\/td><\/tr><tr><td><code>TrustedIssuersRegistry<\/code>&nbsp;\/&nbsp;<code>ClaimTopicsRegistry<\/code><\/td><td>Revocation of a qualified attestation is final and must kill transferability&nbsp;<strong>everywhere at once<\/strong><\/td><\/tr><tr><td><code>RestrictedPartyRegistry<\/code><\/td><td>A listing is against a&nbsp;<strong>person<\/strong>. Per-asset, one list hit is several writes with a window between them in which the person is stopped on one asset and exiting through another. Probate holds and court attachments in the same store are person-scoped too: an estate is not per-asset<\/td><\/tr><tr><td><code>DoraGovernor<\/code>, the register of information, incident classification<\/td><td>Entity-level duties<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"One_instance_per_asset_%E2%80%94_because_the_parameters_are_that_assets\"><\/span><strong>One instance per asset \u2014 because the parameters are that asset&#8217;s:<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>SecurityToken<\/code>&nbsp;and its&nbsp;<code>ModularCompliance<\/code>&nbsp;instance \u00b7 the fund limit set (<code>EltifConcentration<\/code>,&nbsp;<code>UcitsFiveTenForty<\/code>,&nbsp;<code>NavBorrowingCap<\/code>,&nbsp;<code>LmtGate<\/code>,&nbsp;<code>HoldingPeriodLock<\/code>) \u00b7&nbsp;<code>SubscriptionEscrow<\/code>, per&nbsp;<em>offer<\/em>&nbsp;including its validity date \u00b7 prospectus, final terms and key-information entries \u00b7&nbsp;<code>PdmrClosedPeriodFreeze<\/code>, keyed to that issuer&#8217;s reporting calendar \u00b7 the distribution modules.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Genuinely_a_choice_%E2%80%94_decide_it_do_not_default_into_it\"><\/span><strong>Genuinely a choice \u2014 decide it, do not default into it:<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>DocumentRegistry<\/code>\u00a0(one namespaced registry, or one per asset) and the valuation feed.\u00a0<code>CovenantRegistry<\/code>\u00a0<strong>straddles by construction<\/strong>: each entry carries its own scope, and evaluating one reads a platform-wide investor tier\u00a0<em>and<\/em>\u00a0a per-asset offer configuration in the same check. It cannot sit on either side of the line.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Decide that middle bucket on upgrade cost, not on gas.<\/strong>\u00a0While an offer is open \u2014 from prospectus approval to the later of the offer closing or trading starting \u2014 a material change to disclosed contract behaviour needs a supplement approved and published before deployment.\u00a0<strong>A compliance module shared across several assets makes one upgrade a material change to several disclosed behaviours: several supplements, each with up to five working days of regulatory approval, each opening a three-working-day investor withdrawal window.<\/strong>\u00a0<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Upgrade windows already run in weeks for one asset. The duty does close \u2014 most upgrades in an instrument&#8217;s life fall after the offer and owe no supplement; market-abuse disclosure takes over once the venue admits the token to trading, and nothing does for a closed unlisted offer \u2014 but a multi-asset platform nearly always has\u00a0<em>some<\/em>\u00a0offer open, or a rolling base prospectus that re-enters the window each time it reopens, and a shared module ties every asset to whichever one is inside it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Shared_infrastructure_is_cheaper_to_build_and_materially_more_expensive_to_change\"><\/span><strong>Shared infrastructure is cheaper to build and materially more expensive to change.<\/strong>\u00a0<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Merging registries later is straightforward; splitting them after issuance is a re-issuance. And size the blast radius first: a shared identity layer means one lapsed due-diligence record freezes that investor across\u00a0<strong>every<\/strong>\u00a0asset \u2014 correct, but it has to fit your refresh workflow \u2014 while a per-asset layer produces exactly the lapse-on-one-live-on-another problem the rules exist to prevent. Neither is a safe default.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One constraint sits on top. A single identity registry readable by several compliance surfaces is a purpose-limitation question under data-protection law:&nbsp;<strong>do not treat a shared registry as neutral there because anti-money-laundering rules make it convenient.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"5_What_this_architecture_deliberately_does_not_do\"><\/span><strong>5. What this architecture deliberately does not do<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Three boundaries, each regularly assumed the other way.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>It does not claim there is no personal data on-chain \u2014 because the claim is false and will not survive a data-protection authority.<\/strong>\u00a0A wallet address bound to a verified investor\u00a0<em>is<\/em>\u00a0personal data, and so is every transfer it makes. The register is the product; it cannot be made anonymous. So: direct identifiers \u2014 names, addresses, dates of birth \u2014 never touch the chain, in storage or in an event. Every field beside the address is justified individually, because address plus jurisdiction plus identifier hash is a profile, and each addition moves re-identification closer to possible without the off-chain record. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And erasure is\u00a0<em>approximated<\/em>, not achieved \u2014 the off-chain record is deleted, its key destroyed, an on-chain coordinator sweeps every store that holds residue about the person, and the anchor becomes an orphan that resolves to no one.\u00a0<strong>That coordinator is complete as to storage and silent as to history<\/strong>: it reaches every deletable field and no event and no calldata, ever, which is why the rules about what may go in a log are worth obeying before the first emit rather than after. The erasure plan says &#8220;approximation&#8221; in those words, because an authority that reads &#8220;erased&#8221; and finds an immutable identifier treats the document as the problem.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>It does not compute business days.<\/strong>&nbsp;Statutory windows run in working days, and no contract knows that a given Thursday is a national holiday where it matters. Window timestamps are fed in against a real calendar, never derived from block time.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>It does not treat a compliance obligation as sufficient reason to build a contract.<\/strong>\u00a0An indexer, an archive, or a person with a name and a runbook discharges several genuine obligations here. Saying so is what makes the rest credible.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most EU compliance writing is organised one regulation at a time. That is the right shape for a lawyer and the wrong shape for a build, because the contracts do not divide that way. The document-anchoring contract answers the Prospectus Regulation, the fund regime and the market-abuse regime at once. The identity layer answers anti-money-laundering, [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":5243,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"1388","footnotes":""},"categories":[177,144],"tags":[190,189,191],"class_list":["post-5241","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-rwatokenization","category-tokenization","tag-eu-compliant-tokenized-securities","tag-smart-contract-architecture","tag-smart-contract-design","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>EU-Compliant Tokenized Securities Smart Contract Architecture<\/title>\n<meta name=\"description\" content=\"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EU-Compliant Tokenized Securities Smart Contract Architecture\" \/>\n<meta property=\"og:description\" content=\"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture\" \/>\n<meta property=\"og:site_name\" content=\"InnBlockchain\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/Innblockchain\/100083044795160\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-10T05:13:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-10T05:13:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1774\" \/>\n\t<meta property=\"og:image:height\" content=\"887\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Gayathri\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Innblockchain1\" \/>\n<meta name=\"twitter:site\" content=\"@Innblockchain1\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gayathri\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture\"},\"author\":{\"name\":\"Gayathri\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#\\\/schema\\\/person\\\/a1a1bc5885fb26b80e6cd52fa4e6e081\"},\"headline\":\"EU-Compliant Tokenized Securities: Smart Contract Architecture\",\"datePublished\":\"2026-09-10T05:13:17+00:00\",\"dateModified\":\"2026-09-10T05:13:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture\"},\"wordCount\":2641,\"publisher\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp\",\"keywords\":[\"eu-compliant tokenized securities\",\"smart contract architecture\",\"smart contract design\"],\"articleSection\":[\"RWA Tokenization\",\"Tokenization\"],\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"SearchResultsPage\"],\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture\",\"name\":\"EU-Compliant Tokenized Securities Smart Contract Architecture\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp\",\"datePublished\":\"2026-09-10T05:13:17+00:00\",\"dateModified\":\"2026-09-10T05:13:20+00:00\",\"description\":\"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp\",\"contentUrl\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp\",\"width\":1774,\"height\":887,\"caption\":\"EU-Compliant Tokenized Securities: Smart Contract Architecture\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/eu-compliant-tokenized-securities-smart-contract-architecture#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tokenization\",\"item\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/category\\\/tokenization\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"EU-Compliant Tokenized Securities: Smart Contract Architecture\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#website\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/\",\"name\":\"InnBlockchain Academy\",\"description\":\"Latest Blog &amp; News About Blockchain And Crypto\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#organization\",\"name\":\"InnBlockchain\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/test.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/InnBlockChain_Acadamy.png\",\"contentUrl\":\"https:\\\/\\\/test.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/InnBlockChain_Acadamy.png\",\"width\":960,\"height\":320,\"caption\":\"InnBlockchain\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/Innblockchain\\\/100083044795160\\\/\",\"https:\\\/\\\/x.com\\\/Innblockchain1\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/#\\\/schema\\\/person\\\/a1a1bc5885fb26b80e6cd52fa4e6e081\",\"name\":\"Gayathri\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/17787870143092-96x96.jpg\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/17787870143092-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/17787870143092-96x96.jpg\",\"caption\":\"Gayathri\"},\"description\":\"With a dedication to delivering organic content by simplifying complex concepts of Blockchain, and love to connect with your hearts and minds.\",\"url\":\"https:\\\/\\\/www.innblockchain.com\\\/academy\\\/author\\\/gayathri\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EU-Compliant Tokenized Securities Smart Contract Architecture","description":"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture","og_locale":"en_US","og_type":"article","og_title":"EU-Compliant Tokenized Securities Smart Contract Architecture","og_description":"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.","og_url":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture","og_site_name":"InnBlockchain","article_publisher":"https:\/\/www.facebook.com\/people\/Innblockchain\/100083044795160\/","article_published_time":"2026-09-10T05:13:17+00:00","article_modified_time":"2026-09-10T05:13:20+00:00","og_image":[{"width":1774,"height":887,"url":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp","type":"image\/webp"}],"author":"Gayathri","twitter_card":"summary_large_image","twitter_creator":"@Innblockchain1","twitter_site":"@Innblockchain1","twitter_misc":{"Written by":"Gayathri","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#article","isPartOf":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture"},"author":{"name":"Gayathri","@id":"https:\/\/www.innblockchain.com\/academy\/#\/schema\/person\/a1a1bc5885fb26b80e6cd52fa4e6e081"},"headline":"EU-Compliant Tokenized Securities: Smart Contract Architecture","datePublished":"2026-09-10T05:13:17+00:00","dateModified":"2026-09-10T05:13:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture"},"wordCount":2641,"publisher":{"@id":"https:\/\/www.innblockchain.com\/academy\/#organization"},"image":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage"},"thumbnailUrl":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp","keywords":["eu-compliant tokenized securities","smart contract architecture","smart contract design"],"articleSection":["RWA Tokenization","Tokenization"],"inLanguage":"en-US"},{"@type":["WebPage","SearchResultsPage"],"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture","url":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture","name":"EU-Compliant Tokenized Securities Smart Contract Architecture","isPartOf":{"@id":"https:\/\/www.innblockchain.com\/academy\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage"},"image":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage"},"thumbnailUrl":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp","datePublished":"2026-09-10T05:13:17+00:00","dateModified":"2026-09-10T05:13:20+00:00","description":"The complete guide to EU-compliant tokenized securities smart contract architecture with on-chain rule, seven capabilities, module layers, topology.","breadcrumb":{"@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#primaryimage","url":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp","contentUrl":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/09\/EU-Compliant-Tokenized-Securities-Smart-Contract-Architecture.webp","width":1774,"height":887,"caption":"EU-Compliant Tokenized Securities: Smart Contract Architecture"},{"@type":"BreadcrumbList","@id":"https:\/\/www.innblockchain.com\/academy\/eu-compliant-tokenized-securities-smart-contract-architecture#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innblockchain.com\/academy"},{"@type":"ListItem","position":2,"name":"Tokenization","item":"https:\/\/www.innblockchain.com\/academy\/category\/tokenization"},{"@type":"ListItem","position":3,"name":"EU-Compliant Tokenized Securities: Smart Contract Architecture"}]},{"@type":"WebSite","@id":"https:\/\/www.innblockchain.com\/academy\/#website","url":"https:\/\/www.innblockchain.com\/academy\/","name":"InnBlockchain Academy","description":"Latest Blog &amp; News About Blockchain And Crypto","publisher":{"@id":"https:\/\/www.innblockchain.com\/academy\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innblockchain.com\/academy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.innblockchain.com\/academy\/#organization","name":"InnBlockchain","url":"https:\/\/www.innblockchain.com\/academy\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innblockchain.com\/academy\/#\/schema\/logo\/image\/","url":"https:\/\/test.innblockchain.com\/academy\/wp-content\/uploads\/2023\/03\/InnBlockChain_Acadamy.png","contentUrl":"https:\/\/test.innblockchain.com\/academy\/wp-content\/uploads\/2023\/03\/InnBlockChain_Acadamy.png","width":960,"height":320,"caption":"InnBlockchain"},"image":{"@id":"https:\/\/www.innblockchain.com\/academy\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/Innblockchain\/100083044795160\/","https:\/\/x.com\/Innblockchain1"]},{"@type":"Person","@id":"https:\/\/www.innblockchain.com\/academy\/#\/schema\/person\/a1a1bc5885fb26b80e6cd52fa4e6e081","name":"Gayathri","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/05\/17787870143092-96x96.jpg","url":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/05\/17787870143092-96x96.jpg","contentUrl":"https:\/\/www.innblockchain.com\/academy\/wp-content\/uploads\/2026\/05\/17787870143092-96x96.jpg","caption":"Gayathri"},"description":"With a dedication to delivering organic content by simplifying complex concepts of Blockchain, and love to connect with your hearts and minds.","url":"https:\/\/www.innblockchain.com\/academy\/author\/gayathri"}]}},"_links":{"self":[{"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/posts\/5241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/comments?post=5241"}],"version-history":[{"count":26,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/posts\/5241\/revisions"}],"predecessor-version":[{"id":5277,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/posts\/5241\/revisions\/5277"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/media\/5243"}],"wp:attachment":[{"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/media?parent=5241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/categories?post=5241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innblockchain.com\/academy\/wp-json\/wp\/v2\/tags?post=5241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}