{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-guides/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["tabs","tab","cards","card"]},"type":"markdown"},"seo":{"title":"Integration Patterns - Common API Use Cases","projectTitle":"Vilna Docs","description":"Five common integration scenarios with step-by-step API call sequences for typical Vilna use cases like deposit monitoring and balance tracking.","siteUrl":"https://docs.vilna.io","keywords":["crypto asset management","blockchain monitoring","digital asset security","cryptocurrency API","wallet tracking","blockchain analytics","enterprise crypto","real-time blockchain","CAIP-19","BIP44"],"lang":"en-US","image":"https://cdn.vilna.io/docs/previews/guides.png","meta":[{"name":"og:type","content":"website"},{"name":"og:site_name","content":"Vilna Documentation"},{"name":"og:image:width","content":"1200"},{"name":"og:image:height","content":"630"},{"name":"twitter:card","content":"summary_large_image"}],"llmstxt":{"title":"Vilna API Documentation","description":"Vilna is a blockchain monitoring and wallet management platform. It provides a single unified REST API for tracking addresses, transactions, balances, and activity across top blockchains - Bitcoin, Ethereum, Solana, TRON, TON, Cosmos, and others. The API uses CAIP-2/CAIP-19 standards for cross-chain identification, HD wallet management (BIP-32/44) for address derivation, and RFC 7807 for error responses. Authentication is via API key in the X-Api-Key header.\n","excludeFiles":["legal/**/*.md","@l10n/**/*.md"],"sections":[{"title":"Overview","description":"What Vilna is, supported blockchains, and target audience","includeFiles":["overview.md"],"excludeFiles":[]},{"title":"Getting Started","description":"Quickstart guide and core API concepts","includeFiles":["guides/quickstart.md","guides/dashboard.md","guides/core-concepts.md","guides/authentication.md"],"excludeFiles":[]},{"title":"API Reference","description":"Platform API and Management API endpoint documentation","includeFiles":["apis/platform/index.md","apis/mgmt/index.md","apis/rpc/index.md","apis/platform/api.yaml","apis/mgmt/api.yaml"],"excludeFiles":[]},{"title":"Developer Guides","description":"Integration patterns, events, notifications, SDK, and error handling","includeFiles":["guides/events.md","guides/channels.md","guides/integration-patterns.md","guides/sdk.md","guides/mcp.md","guides/errors.md","guides/simulation.md","guides/invoices.md"],"excludeFiles":[]},{"title":"Business","description":"Value proposition, use cases, and onboarding","includeFiles":["business/index.md","business/use-cases.md"],"excludeFiles":[]},{"title":"Optional","description":"Additional reference material","includeFiles":["guides/blockchain-basics.md","guides/faq.md","apis/mgmt/guide.md","guides/widget.md","guides/storage-client.md","apis/platform/caip-standards.md","apis/mgmt/authorization.md"],"excludeFiles":[]}],"hide":false},"priority":0.7,"jsonLd":{"@context":"https://schema.org","@graph":[{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://docs.vilna.io/"},{"@type":"ListItem","position":2,"name":"Guides"},{"@type":"ListItem","position":3,"name":"Integration Patterns"}]},{"@type":"TechArticle","headline":"Integration Patterns - Common API Use Cases","description":"Five common integration scenarios with step-by-step API call sequences for typical Vilna use cases like deposit monitoring and balance tracking.","url":"https://docs.vilna.io/guides/integration-patterns","datePublished":"2025-09-17","dateModified":"2026-05-26","proficiencyLevel":"Intermediate","image":"https://cdn.vilna.io/docs/previews/guides.png","author":{"@id":"https://vilna.io/#organization"},"publisher":{"@id":"https://vilna.io/#organization"}}]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"integration-patterns","__idx":0},"children":["Integration patterns"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This guide walks through five common integration scenarios. Each pattern describes the goal, the API calls involved, and the sequence of operations. For full request and response schemas, see the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/"},"children":["Platform API Reference"]},"."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"1-blockchain-deposit-detection","__idx":1},"children":["1. Blockchain deposit detection"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Goal:"]}," Monitor customer deposit addresses and react to incoming funds in real time."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When to use:"]}," Payment platforms, exchange deposit flows, and any service that needs to credit user accounts when crypto arrives."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"how-it-works","__idx":2},"children":["How it works"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Import your HD wallet public key (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/public_key/create-public-key"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /public_keys"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Generate a unique deposit address for each customer (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/public_key/generate-next-public-key-address"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /public_keys/{public_key_id}/addresses/next"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Create a webhook notification channel (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/channel/create-channel"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /channels"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["When funds arrive, Vilna delivers a webhook event to your server."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Your server verifies the signature, matches the address to a customer, and credits their account."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"sequence","__idx":3},"children":["Sequence"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant C as Customer\n    participant S as Your Server\n    participant V as Vilna\n    participant BC as Blockchain\n\n    C->>S: Request deposit address\n    S->>V: POST /public_keys/{public_key_id}/addresses/next\n    V-->>S: New address\n    S-->>C: Show address\n    C->>BC: Send funds\n    BC->>V: Detect transaction\n    V->>S: Webhook POST\n    S->>S: Verify signature\n    S->>S: Credit account\n    S-->>C: Deposit confirmed\n","diagramHtml":"<svg id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 1152px;\" viewBox=\"-50 -10 1152 771\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"902\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"977\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"977\" dy=\"0\">Blockchain</tspan></text></g><g><rect x=\"695\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"770\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"770\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"254\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"329\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"329\" dy=\"0\">Your Server</tspan></text></g><g><rect x=\"0\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"C\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Customer</tspan></text></g><g><line id=\"actor3\" x1=\"977\" y1=\"65\" x2=\"977\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"BC\" data-et=\"life-line\" data-id=\"BC\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"BC\"><rect x=\"902\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"977\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"977\" dy=\"0\">Blockchain</tspan></text></g></g><g><line id=\"actor2\" x1=\"770\" y1=\"65\" x2=\"770\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"695\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"770\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"770\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor1\" x1=\"329\" y1=\"65\" x2=\"329\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"254\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"329\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"329\" dy=\"0\">Your Server</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"C\" data-et=\"life-line\" data-id=\"C\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"C\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"C\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Customer</tspan></text></g></g><style>#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .error-icon{fill:#552222;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .error-text{fill:#552222;stroke:#552222;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-thickness-normal{stroke-width:1px;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-thickness-thick{stroke-width:3.5px;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-pattern-solid{stroke-dasharray:0;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-pattern-dashed{stroke-dasharray:3;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .edge-pattern-dotted{stroke-dasharray:2;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .marker{fill:#333333;stroke:#333333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .marker.cross{stroke:#333333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e p{margin:0;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e text.actor&gt;tspan{fill:black;stroke:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .actor-line{stroke:#9370DB;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .sequenceNumber{fill:white;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [id$=\"-sequencenumber\"]{fill:#333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .messageText{fill:#333;stroke:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .labelText,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .labelText&gt;tspan{fill:black;stroke:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .loopText,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .loopText&gt;tspan{fill:black;stroke:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .sectionTitle,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .noteText,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .activation0{fill:#f4f4f4;stroke:#666;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .activation1{fill:#f4f4f4;stroke:#666;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .activation2{fill:#f4f4f4;stroke:#666;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .actorPopupMenu{position:absolute;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .actor-man circle,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e line{fill:#ECECFF;stroke-width:2px;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e .node .neo-node{stroke:#9370DB;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node rect,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].cluster rect,#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"201\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Request deposit address</text><line x1=\"76\" y1=\"119\" x2=\"325\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"C\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></line><text x=\"548\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys/{public_key_id}/addresses/next</text><line x1=\"330\" y1=\"173\" x2=\"766\" y2=\"173\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></line><text x=\"551\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">New address</text><line x1=\"769\" y1=\"227\" x2=\"333\" y2=\"227\" class=\"messageLine1\" data-et=\"message\" data-id=\"i2\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"204\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Show address</text><line x1=\"328\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"S\" data-to=\"C\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"525\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Send funds</text><line x1=\"76\" y1=\"335\" x2=\"973\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"C\" data-to=\"BC\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></line><text x=\"875\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Detect transaction</text><line x1=\"976\" y1=\"389\" x2=\"774\" y2=\"389\" class=\"messageLine0\" data-et=\"message\" data-id=\"i5\" data-from=\"BC\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></line><text x=\"551\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Webhook POST</text><line x1=\"769\" y1=\"443\" x2=\"333\" y2=\"443\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></line><text x=\"330\" y=\"458\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Verify signature</text><path d=\"M 330,497 C 390,487 390,527 330,517\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"S\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></path><text x=\"330\" y=\"542\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Credit account</text><path d=\"M 330,581 C 390,571 390,611 330,601\" class=\"messageLine0\" data-et=\"message\" data-id=\"i8\" data-from=\"S\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"fill: none;\"></path><text x=\"204\" y=\"626\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Deposit confirmed</text><line x1=\"328\" y1=\"665\" x2=\"79\" y2=\"665\" class=\"messageLine1\" data-et=\"message\" data-id=\"i9\" data-from=\"S\" data-to=\"C\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-70857ae0fed2d28b538c442aeca9db0f9108b2cf84f90722b95b6ce29efe432e-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>","diagramHtmlDark":"<svg id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 1152px;\" viewBox=\"-50 -10 1152 771\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"902\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"977\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"977\" dy=\"0\">Blockchain</tspan></text></g><g><rect x=\"695\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"770\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"770\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"254\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"329\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"329\" dy=\"0\">Your Server</tspan></text></g><g><rect x=\"0\" y=\"685\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"C\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"717.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Customer</tspan></text></g><g><line id=\"actor3\" x1=\"977\" y1=\"65\" x2=\"977\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"BC\" data-et=\"life-line\" data-id=\"BC\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"BC\"><rect x=\"902\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"977\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"977\" dy=\"0\">Blockchain</tspan></text></g></g><g><line id=\"actor2\" x1=\"770\" y1=\"65\" x2=\"770\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"695\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"770\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"770\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor1\" x1=\"329\" y1=\"65\" x2=\"329\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"254\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"329\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"329\" dy=\"0\">Your Server</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"685\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"C\" data-et=\"life-line\" data-id=\"C\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"C\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"C\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Customer</tspan></text></g></g><style>#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .error-icon{fill:#a44141;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .error-text{fill:#ddd;stroke:#ddd;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-thickness-normal{stroke-width:1px;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-thickness-thick{stroke-width:3.5px;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-pattern-solid{stroke-dasharray:0;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-pattern-dashed{stroke-dasharray:3;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .edge-pattern-dotted{stroke-dasharray:2;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .marker{fill:lightgrey;stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .marker.cross{stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa p{margin:0;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .actor-line{stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .sequenceNumber{fill:black;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .messageText{fill:lightgrey;stroke:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .labelText,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .loopText,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .sectionTitle,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .noteText,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .actorPopupMenu{position:absolute;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .actor-man circle,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa line{fill:#1f2020;stroke-width:2px;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa .node .neo-node{stroke:#ccc;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node rect,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].cluster rect,#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node polygon{stroke:url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node path{stroke:url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-gradient);stroke-width:1px;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node circle{stroke:url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"201\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Request deposit address</text><line x1=\"76\" y1=\"119\" x2=\"325\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"C\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></line><text x=\"548\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys/{public_key_id}/addresses/next</text><line x1=\"330\" y1=\"173\" x2=\"766\" y2=\"173\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></line><text x=\"551\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">New address</text><line x1=\"769\" y1=\"227\" x2=\"333\" y2=\"227\" class=\"messageLine1\" data-et=\"message\" data-id=\"i2\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"204\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Show address</text><line x1=\"328\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"S\" data-to=\"C\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"525\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Send funds</text><line x1=\"76\" y1=\"335\" x2=\"973\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"C\" data-to=\"BC\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></line><text x=\"875\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Detect transaction</text><line x1=\"976\" y1=\"389\" x2=\"774\" y2=\"389\" class=\"messageLine0\" data-et=\"message\" data-id=\"i5\" data-from=\"BC\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></line><text x=\"551\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Webhook POST</text><line x1=\"769\" y1=\"443\" x2=\"333\" y2=\"443\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></line><text x=\"330\" y=\"458\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Verify signature</text><path d=\"M 330,497 C 390,487 390,527 330,517\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"S\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></path><text x=\"330\" y=\"542\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Credit account</text><path d=\"M 330,581 C 390,571 390,611 330,601\" class=\"messageLine0\" data-et=\"message\" data-id=\"i8\" data-from=\"S\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"fill: none;\"></path><text x=\"204\" y=\"626\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Deposit confirmed</text><line x1=\"328\" y1=\"665\" x2=\"79\" y2=\"665\" class=\"messageLine1\" data-et=\"message\" data-id=\"i9\" data-from=\"S\" data-to=\"C\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-85e2bb424f63b858538a9822c2040f1eb1410b8e456045ad81f30393930e6baa-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>"},"children":["sequenceDiagram\n    participant C as Customer\n    participant S as Your Server\n    participant V as Vilna\n    participant BC as Blockchain\n\n    C->>S: Request deposit address\n    S->>V: POST /public_keys/{public_key_id}/addresses/next\n    V-->>S: New address\n    S-->>C: Show address\n    C->>BC: Send funds\n    BC->>V: Detect transaction\n    V->>S: Webhook POST\n    S->>S: Verify signature\n    S->>S: Credit account\n    S-->>C: Deposit confirmed\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"key-code","__idx":4},"children":["Key code"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# 1. Import xPub\ncurl -X POST \"https://api.vilna.io/v1/public_keys\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"value\": \"xpub6CUGRUonZSQ4TWtTMmzXdrXDtypWKiKp...\",\n    \"label\": \"Customer Deposits\",\n    \"derivation_path\": \"m/84h/0h/0h\"\n  }'\n\n# 2. Generate next address for a new customer\ncurl -X POST \"https://api.vilna.io/v1/public_keys/{pubkey_id}/addresses/next\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n\n# 3. Create webhook channel\ncurl -X POST \"https://api.vilna.io/v1/channels\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Deposit Webhooks\",\n    \"config\": {\n      \"kind\": \"webhook\",\n      \"url\": \"https://your-app.example.com/deposits/webhook\",\n      \"headers\": {}\n    }\n  }'\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"TypeScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"import { createVilnaClient } from \"@vilna/sdk\";\n\nconst client = createVilnaClient({\n  apiKey: process.env.VILNA_API_KEY!,\n});\n\n// 1. Import xPub\nconst { data: pubKey } = await client.POST(\"/public_keys\", {\n  body: {\n    value: \"xpub6CUGRUonZSQ4TWtTMmzXdrXDtypWKiKp...\",\n    label: \"Customer Deposits\",\n    derivation_path: \"m/84'/0'/0'\",\n  },\n});\n\n// 2. Generate next deposit address\nconst { data: address } = await client.POST(\n  \"/public_keys/{public_key_id}/addresses/next\",\n  { params: { path: { public_key_id: pubKey!.item.id } } }\n);\nconsole.log(\"Deposit address:\", address?.item.value);\n\n// 3. Create webhook channel\nawait client.POST(\"/channels\", {\n  body: {\n    name: \"Deposit Webhooks\",\n    config: {\n      kind: \"webhook\",\n      url: \"https://your-app.example.com/deposits/webhook\",\n      headers: {},\n    },\n  },\n});\n","lang":"typescript"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"design-considerations","__idx":5},"children":["Design considerations"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["X-Webhook-Event-Id"]}," (or the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["event_id"]}," body field) to prevent double-crediting on retries — it is stable across retry attempts."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Store the mapping between generated addresses and customer IDs in your database."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Verify webhook signatures before processing. See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/guides/authentication#webhook-signature-verification"},"children":["Authentication"]},"."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"2-portfolio-tracker","__idx":6},"children":["2. Portfolio tracker"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Goal:"]}," Show users an aggregated view of their holdings and recent activity across multiple chains."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When to use:"]}," Wallet dashboards, accounting tools, and portfolio analytics products."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"how-it-works-1","__idx":7},"children":["How it works"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Import each user address with ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/address/create-external-address"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /addresses/external"]}]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Poll ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/balance/list-balances"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /balances"]}]}," for current holdings."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Poll ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/activity/list-activity"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /activity"]}]}," for recent balance changes."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["references.tokens"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["references.blockchains"]}," from the response to display token names and chain info without extra lookups."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"sequence-1","__idx":8},"children":["Sequence"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant A as Your App\n    participant V as Vilna\n\n    A->>V: POST /addresses/external (for each address)\n    V-->>A: Address created\n    A->>V: GET /balances\n    V-->>A: Balance list\n    A->>V: GET /activity?limit=50\n    V-->>A: Activity feed\n    A->>A: Render dashboard\n","diagramHtml":"<svg id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 650px;\" viewBox=\"-50 -10 650 579\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"400\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g><g><line id=\"actor1\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"A\" data-et=\"life-line\" data-id=\"A\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"A\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g></g><style>#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .error-icon{fill:#552222;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .error-text{fill:#552222;stroke:#552222;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-thickness-normal{stroke-width:1px;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-thickness-thick{stroke-width:3.5px;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-pattern-solid{stroke-dasharray:0;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .marker{fill:#333333;stroke:#333333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .marker.cross{stroke:#333333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 p{margin:0;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 text.actor&gt;tspan{fill:black;stroke:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .actor-line{stroke:#9370DB;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .sequenceNumber{fill:white;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .messageText{fill:#333;stroke:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .labelText,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .labelText&gt;tspan{fill:black;stroke:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .loopText,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .loopText&gt;tspan{fill:black;stroke:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .sectionTitle,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .noteText,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .actorPopupMenu{position:absolute;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .actor-man circle,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 line{fill:#ECECFF;stroke-width:2px;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 .node .neo-node{stroke:#9370DB;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node rect,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].cluster rect,#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"274\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /addresses/external (for each address)</text><line x1=\"76\" y1=\"119\" x2=\"471\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address created</text><line x1=\"474\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"274\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /balances</text><line x1=\"76\" y1=\"227\" x2=\"471\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Balance list</text><line x1=\"474\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"274\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /activity?limit=50</text><line x1=\"76\" y1=\"335\" x2=\"471\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Activity feed</text><line x1=\"474\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"76\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Render dashboard</text><path d=\"M 76,443 C 136,433 136,473 76,463\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"A\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-a7980737030e697826c376b96b80f70844ed41238a45b3fd00ac521eb4cccd79-arrowhead)\" style=\"fill: none;\"></path></svg>","diagramHtmlDark":"<svg id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 650px;\" viewBox=\"-50 -10 650 579\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"400\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g><g><line id=\"actor1\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"A\" data-et=\"life-line\" data-id=\"A\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"A\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g></g><style>#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .error-icon{fill:#a44141;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .error-text{fill:#ddd;stroke:#ddd;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-thickness-normal{stroke-width:1px;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-thickness-thick{stroke-width:3.5px;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-pattern-solid{stroke-dasharray:0;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .marker{fill:lightgrey;stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .marker.cross{stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 p{margin:0;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .actor-line{stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .sequenceNumber{fill:black;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .messageText{fill:lightgrey;stroke:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .labelText,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .loopText,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .sectionTitle,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .noteText,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .actorPopupMenu{position:absolute;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .actor-man circle,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 line{fill:#1f2020;stroke-width:2px;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 .node .neo-node{stroke:#ccc;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node rect,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].cluster rect,#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node polygon{stroke:url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node path{stroke:url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-gradient);stroke-width:1px;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node circle{stroke:url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"274\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /addresses/external (for each address)</text><line x1=\"76\" y1=\"119\" x2=\"471\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address created</text><line x1=\"474\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"274\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /balances</text><line x1=\"76\" y1=\"227\" x2=\"471\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Balance list</text><line x1=\"474\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"274\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /activity?limit=50</text><line x1=\"76\" y1=\"335\" x2=\"471\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"fill: none;\"></line><text x=\"277\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Activity feed</text><line x1=\"474\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"76\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Render dashboard</text><path d=\"M 76,443 C 136,433 136,473 76,463\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"A\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-ec906ae91f698cd5fd018ba37fec5e8226283b5cd9b005348ae8eb69d3bb8eb3-arrowhead)\" style=\"fill: none;\"></path></svg>"},"children":["sequenceDiagram\n    participant A as Your App\n    participant V as Vilna\n\n    A->>V: POST /addresses/external (for each address)\n    V-->>A: Address created\n    A->>V: GET /balances\n    V-->>A: Balance list\n    A->>V: GET /activity?limit=50\n    V-->>A: Activity feed\n    A->>A: Render dashboard\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"key-code-1","__idx":9},"children":["Key code"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# Add an address\ncurl -X POST \"https://api.vilna.io/v1/addresses/external\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"value\": \"0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B\",\n    \"chainFamily\": \"evm\",\n    \"label\": \"Main Wallet\"\n  }'\n\n# Fetch balances\ncurl \"https://api.vilna.io/v1/balances?limit=30&page=1\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n\n# Fetch recent activity\ncurl \"https://api.vilna.io/v1/activity?limit=50&page=1\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"TypeScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"// Add an address for monitoring on all EVM chains\nawait client.POST(\"/addresses/external\", {\n  body: {\n    value: \"0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B\",\n    chainFamily: \"evm\",\n    label: \"Main Wallet\",\n  },\n});\n\n// Fetch aggregated balances\nconst { data: balances } = await client.GET(\"/balances\", {\n  params: { query: { limit: 30, page: 1 } },\n});\n\n// Fetch recent activity\nconst { data: activity } = await client.GET(\"/activity\", {\n  params: { query: { limit: 50, page: 1 } },\n});\n\n// Token details are already keyed by GID in references\nconst tokens = balances?.references.tokens ?? {};\n","lang":"typescript"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"design-considerations-1","__idx":10},"children":["Design considerations"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["meta.total_pages"]}," value to implement pagination or infinite scroll."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["references"]}," object in each response includes token and chain metadata, so you don't need extra API calls for display names."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["For real-time updates, combine polling with a webhook channel."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"3-hd-wallet-management","__idx":11},"children":["3. HD wallet management"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Goal:"]}," Manage a hierarchical deterministic wallet where new addresses are derived on demand and automatically monitored."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When to use:"]}," Custody platforms, exchange hot wallets, and any system that generates addresses from a master public key."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"how-it-works-2","__idx":12},"children":["How it works"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Import the extended public key (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/public_key/create-public-key"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /public_keys"]}]},") with its derivation path."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Whenever you need a fresh address, call ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/public_key/generate-next-public-key-address"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /public_keys/{public_key_id}/addresses/next"]}]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Vilna tracks the derivation index and starts monitoring the new address immediately."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Query balances and transactions across all derived addresses using ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/balance/list-balances"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /balances"]}]}," and ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/transaction/list-transactions"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /transactions"]}]},"."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"sequence-2","__idx":13},"children":["Sequence"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant S as Your Server\n    participant V as Vilna\n\n    S->>V: POST /public_keys (xpub + derivation path)\n    V-->>S: Public key ID\n    S->>V: POST /public_keys/{public_key_id}/addresses/next\n    V-->>S: Derived address\n    S->>V: GET /addresses\n    V-->>S: Address list\n    S->>V: GET /balances\n    V-->>S: Aggregated balances\n","diagramHtml":"<svg id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 691px;\" viewBox=\"-50 -10 691 603\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"441\" y=\"517\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"516\" y=\"549.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"516\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"517\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"549.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your Server</tspan></text></g><g><line id=\"actor1\" x1=\"516\" y1=\"65\" x2=\"516\" y2=\"517\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"441\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"516\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"516\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"517\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your Server</tspan></text></g></g><style>#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .error-icon{fill:#552222;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .error-text{fill:#552222;stroke:#552222;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-thickness-normal{stroke-width:1px;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-thickness-thick{stroke-width:3.5px;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-pattern-solid{stroke-dasharray:0;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .marker{fill:#333333;stroke:#333333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .marker.cross{stroke:#333333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 p{margin:0;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 text.actor&gt;tspan{fill:black;stroke:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .actor-line{stroke:#9370DB;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .sequenceNumber{fill:white;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .messageText{fill:#333;stroke:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .labelText,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .labelText&gt;tspan{fill:black;stroke:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .loopText,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .loopText&gt;tspan{fill:black;stroke:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .sectionTitle,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .noteText,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .actorPopupMenu{position:absolute;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .actor-man circle,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 line{fill:#ECECFF;stroke-width:2px;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 .node .neo-node{stroke:#9370DB;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node rect,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].cluster rect,#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"294\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys (xpub + derivation path)</text><line x1=\"76\" y1=\"119\" x2=\"512\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Public key ID</text><line x1=\"515\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys/{public_key_id}/addresses/next</text><line x1=\"76\" y1=\"227\" x2=\"512\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Derived address</text><line x1=\"515\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /addresses</text><line x1=\"76\" y1=\"335\" x2=\"512\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address list</text><line x1=\"515\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /balances</text><line x1=\"76\" y1=\"443\" x2=\"512\" y2=\"443\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"458\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Aggregated balances</text><line x1=\"515\" y1=\"497\" x2=\"79\" y2=\"497\" class=\"messageLine1\" data-et=\"message\" data-id=\"i7\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-0aed1b3df445a8f089fa6054fbd17ad05a60ad4ebe98474fd4fc0550afaea809-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>","diagramHtmlDark":"<svg id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 691px;\" viewBox=\"-50 -10 691 603\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"441\" y=\"517\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"516\" y=\"549.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"516\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"517\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"549.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your Server</tspan></text></g><g><line id=\"actor1\" x1=\"516\" y1=\"65\" x2=\"516\" y2=\"517\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"441\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"516\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"516\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"517\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your Server</tspan></text></g></g><style>#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .error-icon{fill:#a44141;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .error-text{fill:#ddd;stroke:#ddd;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-thickness-normal{stroke-width:1px;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-thickness-thick{stroke-width:3.5px;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-pattern-solid{stroke-dasharray:0;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .marker{fill:lightgrey;stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .marker.cross{stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 p{margin:0;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .actor-line{stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .sequenceNumber{fill:black;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .messageText{fill:lightgrey;stroke:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .labelText,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .loopText,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .sectionTitle,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .noteText,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .actorPopupMenu{position:absolute;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .actor-man circle,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 line{fill:#1f2020;stroke-width:2px;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 .node .neo-node{stroke:#ccc;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node rect,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].cluster rect,#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node polygon{stroke:url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node path{stroke:url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-gradient);stroke-width:1px;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node circle{stroke:url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"294\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys (xpub + derivation path)</text><line x1=\"76\" y1=\"119\" x2=\"512\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Public key ID</text><line x1=\"515\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /public_keys/{public_key_id}/addresses/next</text><line x1=\"76\" y1=\"227\" x2=\"512\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Derived address</text><line x1=\"515\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /addresses</text><line x1=\"76\" y1=\"335\" x2=\"512\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address list</text><line x1=\"515\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"294\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /balances</text><line x1=\"76\" y1=\"443\" x2=\"512\" y2=\"443\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"S\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"fill: none;\"></line><text x=\"297\" y=\"458\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Aggregated balances</text><line x1=\"515\" y1=\"497\" x2=\"79\" y2=\"497\" class=\"messageLine1\" data-et=\"message\" data-id=\"i7\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-2c7f1cc25e0ac2a535b313dc59750f9e7b6e32fb64e94749d68073336b44f1b9-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>"},"children":["sequenceDiagram\n    participant S as Your Server\n    participant V as Vilna\n\n    S->>V: POST /public_keys (xpub + derivation path)\n    V-->>S: Public key ID\n    S->>V: POST /public_keys/{public_key_id}/addresses/next\n    V-->>S: Derived address\n    S->>V: GET /addresses\n    V-->>S: Address list\n    S->>V: GET /balances\n    V-->>S: Aggregated balances\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"key-code-2","__idx":14},"children":["Key code"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# Import the extended public key\ncurl -X POST \"https://api.vilna.io/v1/public_keys\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"value\": \"xpub6BosfCnifzxRT1QKLpFfcUrgWmLqoJcGt...\",\n    \"label\": \"Exchange Hot Wallet\",\n    \"derivation_path\": \"m/44h/60h/0h\"\n  }'\n\n# Generate addresses as needed\ncurl -X POST \"https://api.vilna.io/v1/public_keys/{pubkey_id}/addresses/next\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"TypeScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"// Import xPub\nconst { data: pubKey } = await client.POST(\"/public_keys\", {\n  body: {\n    value: \"xpub6BosfCnifzxRT1QKLpFfcUrgWmLqoJcGt...\",\n    label: \"Exchange Hot Wallet\",\n    derivation_path: \"m/44'/60'/0'\",\n  },\n});\n\n// Generate the next address in sequence\nconst { data: nextAddr } = await client.POST(\n  \"/public_keys/{public_key_id}/addresses/next\",\n  { params: { path: { public_key_id: pubKey!.item.id } } }\n);\n\nconsole.log(\"New address:\", nextAddr?.item.value);\n","lang":"typescript"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"design-considerations-2","__idx":15},"children":["Design considerations"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Vilna supports BIP-32, BIP-44, BIP-49, BIP-84, and BIP-86 derivation paths."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You can import xPub, yPub, or zPub keys depending on the address format you need (legacy, SegWit, native SegWit, Taproot)."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The public key never leaves Vilna unencrypted - private keys are never required."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"4-multi-chain-monitoring","__idx":16},"children":["4. Multi-chain monitoring"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Goal:"]}," Track addresses across several blockchains and filter activity by chain."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When to use:"]}," Multi-chain wallets, cross-chain analytics dashboards, and compliance monitoring tools."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"how-it-works-3","__idx":17},"children":["How it works"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Check which blockchains are available (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/blockchain/list-blockchains"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /blockchains"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Register addresses with a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["chainFamily"]}," to monitor them on all chains in that family."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Query ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/activity/list-activity"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /activity"]}]}," or ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/transaction/list-transactions"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /transactions"]}]}," and filter by chain as needed."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["references.blockchains"]}," to display chain metadata."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"sequence-3","__idx":18},"children":["Sequence"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant A as Your App\n    participant V as Vilna\n\n    A->>V: GET /blockchains\n    V-->>A: Chain list\n    A->>V: POST /addresses/external (chainFamily: \"evm\")\n    V-->>A: Address created\n    A->>V: GET /activity\n    V-->>A: Activity feed (includes chain info)\n    A->>A: Filter by chain\n","diagramHtml":"<svg id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 666px;\" viewBox=\"-50 -10 666 579\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"416\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"491\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"491\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g><g><line id=\"actor1\" x1=\"491\" y1=\"65\" x2=\"491\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"416\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"491\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"491\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"A\" data-et=\"life-line\" data-id=\"A\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"A\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g></g><style>#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .error-icon{fill:#552222;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .error-text{fill:#552222;stroke:#552222;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-thickness-normal{stroke-width:1px;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-thickness-thick{stroke-width:3.5px;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-pattern-solid{stroke-dasharray:0;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .marker{fill:#333333;stroke:#333333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .marker.cross{stroke:#333333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 p{margin:0;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 text.actor&gt;tspan{fill:black;stroke:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .actor-line{stroke:#9370DB;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .sequenceNumber{fill:white;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .messageText{fill:#333;stroke:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .labelText,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .labelText&gt;tspan{fill:black;stroke:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .loopText,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .loopText&gt;tspan{fill:black;stroke:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .sectionTitle,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .noteText,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .actorPopupMenu{position:absolute;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .actor-man circle,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 line{fill:#ECECFF;stroke-width:2px;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 .node .neo-node{stroke:#9370DB;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node rect,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].cluster rect,#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"282\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /blockchains</text><line x1=\"76\" y1=\"119\" x2=\"487\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Chain list</text><line x1=\"490\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"282\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /addresses/external (chainFamily: \"evm\")</text><line x1=\"76\" y1=\"227\" x2=\"487\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address created</text><line x1=\"490\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"282\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /activity</text><line x1=\"76\" y1=\"335\" x2=\"487\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Activity feed (includes chain info)</text><line x1=\"490\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"76\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Filter by chain</text><path d=\"M 76,443 C 136,433 136,473 76,463\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"A\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-974fd25d32ce52231230d64d368e6a7ee8a6610a4a206685c6ea9116e5286c42-arrowhead)\" style=\"fill: none;\"></path></svg>","diagramHtmlDark":"<svg id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 666px;\" viewBox=\"-50 -10 666 579\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"416\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"491\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"491\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"493\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"525.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g><g><line id=\"actor1\" x1=\"491\" y1=\"65\" x2=\"491\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"416\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"491\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"491\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"493\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"A\" data-et=\"life-line\" data-id=\"A\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"A\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"A\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Your App</tspan></text></g></g><style>#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .error-icon{fill:#a44141;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .error-text{fill:#ddd;stroke:#ddd;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-thickness-normal{stroke-width:1px;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-thickness-thick{stroke-width:3.5px;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-pattern-solid{stroke-dasharray:0;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .marker{fill:lightgrey;stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .marker.cross{stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 p{margin:0;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .actor-line{stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .sequenceNumber{fill:black;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .messageText{fill:lightgrey;stroke:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .labelText,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .loopText,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .sectionTitle,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .noteText,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .actorPopupMenu{position:absolute;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .actor-man circle,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 line{fill:#1f2020;stroke-width:2px;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 .node .neo-node{stroke:#ccc;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node rect,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].cluster rect,#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node polygon{stroke:url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node path{stroke:url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-gradient);stroke-width:1px;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node circle{stroke:url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><text x=\"282\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /blockchains</text><line x1=\"76\" y1=\"119\" x2=\"487\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Chain list</text><line x1=\"490\" y1=\"173\" x2=\"79\" y2=\"173\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"282\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">POST /addresses/external (chainFamily: \"evm\")</text><line x1=\"76\" y1=\"227\" x2=\"487\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Address created</text><line x1=\"490\" y1=\"281\" x2=\"79\" y2=\"281\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"282\" y=\"296\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">GET /activity</text><line x1=\"76\" y1=\"335\" x2=\"487\" y2=\"335\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"A\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"fill: none;\"></line><text x=\"285\" y=\"350\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Activity feed (includes chain info)</text><line x1=\"490\" y1=\"389\" x2=\"79\" y2=\"389\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"V\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"76\" y=\"404\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Filter by chain</text><path d=\"M 76,443 C 136,433 136,473 76,463\" class=\"messageLine0\" data-et=\"message\" data-id=\"i6\" data-from=\"A\" data-to=\"A\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dd35cca0aabf9badb85faef8a3ac4afac66259d683f3663093a5f320ed645368-arrowhead)\" style=\"fill: none;\"></path></svg>"},"children":["sequenceDiagram\n    participant A as Your App\n    participant V as Vilna\n\n    A->>V: GET /blockchains\n    V-->>A: Chain list\n    A->>V: POST /addresses/external (chainFamily: \"evm\")\n    V-->>A: Address created\n    A->>V: GET /activity\n    V-->>A: Activity feed (includes chain info)\n    A->>A: Filter by chain\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"key-code-3","__idx":19},"children":["Key code"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# List supported chains\ncurl \"https://api.vilna.io/v1/blockchains\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n\n# Monitor an address on all EVM chains (Ethereum, Polygon, Arbitrum, etc.)\ncurl -X POST \"https://api.vilna.io/v1/addresses/external\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"value\": \"0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B\",\n    \"chainFamily\": \"evm\",\n    \"label\": \"Multi-chain Wallet\"\n  }'\n\n# Get activity across all chains\ncurl \"https://api.vilna.io/v1/activity?limit=30&page=1\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"TypeScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"// List available chains\nconst { data: chains } = await client.GET(\"/blockchains\");\nconsole.log(\"Active chains:\", chains?.items.map((c) => c.gid));\n\n// Register an address on all EVM chains\nawait client.POST(\"/addresses/external\", {\n  body: {\n    value: \"0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B\",\n    chainFamily: \"evm\",\n    label: \"Multi-chain Wallet\",\n  },\n});\n\n// Fetch activity and group by chain\nconst { data: activity } = await client.GET(\"/activity\", {\n  params: { query: { limit: 30, page: 1 } },\n});\n","lang":"typescript"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"design-considerations-3","__idx":20},"children":["Design considerations"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["EVM addresses (0x-prefixed) can be monitored on all EVM-compatible chains with a single ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/address/create-external-address"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /addresses/external"]}]}," call by specifying ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["chainFamily: \"evm\""]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Non-EVM chains (Bitcoin, Solana, Tron) require chain-specific address formats."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Each chain is indexed independently, so a single address may have different balances and transaction histories on different chains."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"5-transaction-alerts","__idx":21},"children":["5. Transaction alerts"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Goal:"]}," Receive real-time notifications through multiple channels whenever blockchain activity occurs on monitored addresses."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When to use:"]}," Treasury monitoring, compliance alerts, operational dashboards, and on-call systems."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"how-it-works-4","__idx":22},"children":["How it works"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Add the addresses you want to watch (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/address/create-external-address"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /addresses/external"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Create a webhook channel for your backend (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/channel/create-channel"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /channels"]}]}," with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["kind: \"webhook\""]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Optionally create a Telegram channel for human operators (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/channel/create-channel"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /channels"]}]}," with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["kind: \"telegram\""]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Test both channels (",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/apis/platform/api/channel/test-channel"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /channels/{channel_id}/actions/test"]}]},")."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["All events on monitored addresses are delivered to every active channel."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"sequence-4","__idx":23},"children":["Sequence"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant BC as Blockchain\n    participant V as Vilna\n    participant S as Your Server\n    participant TG as Telegram\n\n    BC->>V: New transaction\n    V->>S: Webhook POST\n    V->>TG: Telegram message\n    Note over S,TG: Both channels receive the same event\n","diagramHtml":"<svg id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 851px;\" viewBox=\"-50 -10 851 385\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"601\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"TG\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"676\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"676\" dy=\"0\">Telegram</tspan></text></g><g><rect x=\"400\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Your Server</tspan></text></g><g><rect x=\"200\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"275\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Blockchain</tspan></text></g><g><line id=\"actor3\" x1=\"676\" y1=\"65\" x2=\"676\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"TG\" data-et=\"life-line\" data-id=\"TG\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"TG\"><rect x=\"601\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"TG\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"676\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"676\" dy=\"0\">Telegram</tspan></text></g></g><g><line id=\"actor2\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Your Server</tspan></text></g></g><g><line id=\"actor1\" x1=\"275\" y1=\"65\" x2=\"275\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"200\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"275\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"BC\" data-et=\"life-line\" data-id=\"BC\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"BC\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Blockchain</tspan></text></g></g><style>#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .error-icon{fill:#552222;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .error-text{fill:#552222;stroke:#552222;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-thickness-normal{stroke-width:1px;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-thickness-thick{stroke-width:3.5px;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-pattern-solid{stroke-dasharray:0;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .marker{fill:#333333;stroke:#333333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .marker.cross{stroke:#333333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 p{margin:0;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 text.actor&gt;tspan{fill:black;stroke:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .actor-line{stroke:#9370DB;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .sequenceNumber{fill:white;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .messageText{fill:#333;stroke:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .labelText,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .labelText&gt;tspan{fill:black;stroke:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .loopText,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .loopText&gt;tspan{fill:black;stroke:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .sectionTitle,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .noteText,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .actorPopupMenu{position:absolute;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .actor-man circle,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 line{fill:#ECECFF;stroke-width:2px;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 .node .neo-node{stroke:#9370DB;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node rect,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].cluster rect,#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"note\" data-id=\"i3\"><rect x=\"450\" y=\"237\" fill=\"#EDF2AE\" stroke=\"#666\" width=\"251\" height=\"42\" class=\"note\"></rect><text x=\"576\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"noteText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"576\">Both channels receive the same event</tspan></text></g><text x=\"174\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">New transaction</text><line x1=\"76\" y1=\"119\" x2=\"271\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"BC\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-arrowhead)\" style=\"fill: none;\"></line><text x=\"374\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Webhook POST</text><line x1=\"276\" y1=\"173\" x2=\"471\" y2=\"173\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-arrowhead)\" style=\"fill: none;\"></line><text x=\"474\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Telegram message</text><line x1=\"276\" y1=\"227\" x2=\"672\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"V\" data-to=\"TG\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-87a5af2099146189e051652d5b7fdf67b2487fbf8e2fbac4f9e096fd2ec9cee8-arrowhead)\" style=\"fill: none;\"></line></svg>","diagramHtmlDark":"<svg id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 851px;\" viewBox=\"-50 -10 851 385\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><g><rect x=\"601\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"TG\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"676\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"676\" dy=\"0\">Telegram</tspan></text></g><g><rect x=\"400\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"475\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Your Server</tspan></text></g><g><rect x=\"200\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"275\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Vilna</tspan></text></g><g><rect x=\"0\" y=\"299\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"331.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Blockchain</tspan></text></g><g><line id=\"actor3\" x1=\"676\" y1=\"65\" x2=\"676\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"TG\" data-et=\"life-line\" data-id=\"TG\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"TG\"><rect x=\"601\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"TG\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"676\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"676\" dy=\"0\">Telegram</tspan></text></g></g><g><line id=\"actor2\" x1=\"475\" y1=\"65\" x2=\"475\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"S\" data-et=\"life-line\" data-id=\"S\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"S\"><rect x=\"400\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"S\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"475\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"475\" dy=\"0\">Your Server</tspan></text></g></g><g><line id=\"actor1\" x1=\"275\" y1=\"65\" x2=\"275\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"V\" data-et=\"life-line\" data-id=\"V\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"V\"><rect x=\"200\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"V\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"275\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"275\" dy=\"0\">Vilna</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"299\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"BC\" data-et=\"life-line\" data-id=\"BC\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"BC\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"BC\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">Blockchain</tspan></text></g></g><style>#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .error-icon{fill:#a44141;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .error-text{fill:#ddd;stroke:#ddd;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-thickness-normal{stroke-width:1px;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-thickness-thick{stroke-width:3.5px;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-pattern-solid{stroke-dasharray:0;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .marker{fill:lightgrey;stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .marker.cross{stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 p{margin:0;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .actor-line{stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .sequenceNumber{fill:black;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .messageText{fill:lightgrey;stroke:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .labelText,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .loopText,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .sectionTitle,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .noteText,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .actorPopupMenu{position:absolute;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .actor-man circle,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 line{fill:#1f2020;stroke-width:2px;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 .node .neo-node{stroke:#ccc;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node rect,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].cluster rect,#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node polygon{stroke:url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node path{stroke:url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-gradient);stroke-width:1px;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node circle{stroke:url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"note\" data-id=\"i3\"><rect x=\"450\" y=\"237\" fill=\"#EDF2AE\" stroke=\"#666\" width=\"251\" height=\"42\" class=\"note\"></rect><text x=\"576\" y=\"242\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"noteText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"576\">Both channels receive the same event</tspan></text></g><text x=\"174\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">New transaction</text><line x1=\"76\" y1=\"119\" x2=\"271\" y2=\"119\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"BC\" data-to=\"V\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-arrowhead)\" style=\"fill: none;\"></line><text x=\"374\" y=\"134\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Webhook POST</text><line x1=\"276\" y1=\"173\" x2=\"471\" y2=\"173\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"V\" data-to=\"S\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-arrowhead)\" style=\"fill: none;\"></line><text x=\"474\" y=\"188\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, sans-serif; font-size: 16px; font-weight: 400;\">Telegram message</text><line x1=\"276\" y1=\"227\" x2=\"672\" y2=\"227\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"V\" data-to=\"TG\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-de41deac0fc83471944ab5050b7e4b3db8d45b47da90733d6328418fff35fae3-arrowhead)\" style=\"fill: none;\"></line></svg>"},"children":["sequenceDiagram\n    participant BC as Blockchain\n    participant V as Vilna\n    participant S as Your Server\n    participant TG as Telegram\n\n    BC->>V: New transaction\n    V->>S: Webhook POST\n    V->>TG: Telegram message\n    Note over S,TG: Both channels receive the same event\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"key-code-4","__idx":24},"children":["Key code"]},{"$$mdtype":"Tag","name":"Tabs","attributes":{"size":"medium"},"children":[{"$$mdtype":"Tag","name":"div","attributes":{"label":"curl","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# Create a webhook channel\ncurl -X POST \"https://api.vilna.io/v1/channels\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Backend Alerts\",\n    \"config\": {\n      \"kind\": \"webhook\",\n      \"url\": \"https://your-app.example.com/alerts/webhook\",\n      \"headers\": {}\n    }\n  }'\n\n# Create a Telegram channel\ncurl -X POST \"https://api.vilna.io/v1/channels\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Ops Team Telegram\",\n    \"config\": {\n      \"kind\": \"telegram\",\n      \"bot_token\": \"987654321:ABCdefGHIjklMNOpqrsTUVwxyz123456789\",\n      \"chat_id\": -1001234567890,\n      \"language\": \"en\",\n      \"thread_id\": 0\n    }\n  }'\n\n# Test the webhook channel\ncurl -X POST \"https://api.vilna.io/v1/channels/{channel_id}/actions/test\" \\\n  -H \"X-Api-Key: ${VILNA_API_KEY}\"\n","lang":"bash"},"children":[]}]},{"$$mdtype":"Tag","name":"div","attributes":{"label":"TypeScript","disable":false},"children":[{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"// Create a webhook channel\nconst { data: webhook } = await client.POST(\"/channels\", {\n  body: {\n    name: \"Backend Alerts\",\n    config: {\n      kind: \"webhook\",\n      url: \"https://your-app.example.com/alerts/webhook\",\n      headers: {},\n    },\n  },\n});\n\n// Create a Telegram channel\nconst { data: telegram } = await client.POST(\"/channels\", {\n  body: {\n    name: \"Ops Team Telegram\",\n    config: {\n      kind: \"telegram\",\n      bot_token: \"987654321:ABCdefGHIjklMNOpqrsTUVwxyz123456789\",\n      chat_id: -1001234567890,\n      language: \"en\",\n      thread_id: 0,\n    },\n  },\n});\n\n// Test both channels\nawait client.POST(\"/channels/{channel_id}/actions/test\", {\n  params: { path: { channel_id: webhook!.item.id } },\n});\nawait client.POST(\"/channels/{channel_id}/actions/test\", {\n  params: { path: { channel_id: telegram!.item.id } },\n});\n","lang":"typescript"},"children":[]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"design-considerations-4","__idx":25},"children":["Design considerations"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["All active channels receive all events. Use server-side filtering in your webhook handler to route or suppress events as needed."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Webhook channels include HMAC-SHA256 signatures so your backend can verify each delivery. Telegram channels have no equivalent — Telegram is the endpoint, so trust is anchored in who has access to the chat and the bot."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["For high-value accounts, use both channels so that human operators get Telegram alerts while your backend processes events automatically."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"further-reading","__idx":26},"children":["Further reading"]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":2,"cardMinWidth":240},"children":[{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Quickstart","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/guides/quickstart"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Set up your first integration end-to-end"]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Core Concepts","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/guides/core-concepts"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Addresses, tokens, amounts, and the references pattern"]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Authentication","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/guides/authentication"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["API key usage and webhook signature verification"]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Platform API","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/apis/platform/"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Complete endpoint documentation with request/response schemas"]}]}]}]},"headings":[{"value":"Integration patterns","id":"integration-patterns","depth":1},{"value":"1. Blockchain deposit detection","id":"1-blockchain-deposit-detection","depth":2},{"value":"How it works","id":"how-it-works","depth":3},{"value":"Sequence","id":"sequence","depth":3},{"value":"Key code","id":"key-code","depth":3},{"value":"Design considerations","id":"design-considerations","depth":3},{"value":"2. Portfolio tracker","id":"2-portfolio-tracker","depth":2},{"value":"How it works","id":"how-it-works-1","depth":3},{"value":"Sequence","id":"sequence-1","depth":3},{"value":"Key code","id":"key-code-1","depth":3},{"value":"Design considerations","id":"design-considerations-1","depth":3},{"value":"3. HD wallet management","id":"3-hd-wallet-management","depth":2},{"value":"How it works","id":"how-it-works-2","depth":3},{"value":"Sequence","id":"sequence-2","depth":3},{"value":"Key code","id":"key-code-2","depth":3},{"value":"Design considerations","id":"design-considerations-2","depth":3},{"value":"4. Multi-chain monitoring","id":"4-multi-chain-monitoring","depth":2},{"value":"How it works","id":"how-it-works-3","depth":3},{"value":"Sequence","id":"sequence-3","depth":3},{"value":"Key code","id":"key-code-3","depth":3},{"value":"Design considerations","id":"design-considerations-3","depth":3},{"value":"5. Transaction alerts","id":"5-transaction-alerts","depth":2},{"value":"How it works","id":"how-it-works-4","depth":3},{"value":"Sequence","id":"sequence-4","depth":3},{"value":"Key code","id":"key-code-4","depth":3},{"value":"Design considerations","id":"design-considerations-4","depth":3},{"value":"Further reading","id":"further-reading","depth":2}],"frontmatter":{"seo":{"title":"Integration Patterns - Common API Use Cases","description":"Five common integration scenarios with step-by-step API call sequences for typical Vilna use cases like deposit monitoring and balance tracking.","priority":0.7,"image":"https://cdn.vilna.io/docs/previews/guides.png","jsonLd":{"@context":"https://schema.org","@graph":[{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://docs.vilna.io/"},{"@type":"ListItem","position":2,"name":"Guides"},{"@type":"ListItem","position":3,"name":"Integration Patterns"}]},{"@type":"TechArticle","headline":"Integration Patterns - Common API Use Cases","description":"Five common integration scenarios with step-by-step API call sequences for typical Vilna use cases like deposit monitoring and balance tracking.","url":"https://docs.vilna.io/guides/integration-patterns","datePublished":"2025-09-17","dateModified":"2026-05-26","proficiencyLevel":"Intermediate","image":"https://cdn.vilna.io/docs/previews/guides.png","author":{"@id":"https://vilna.io/#organization"},"publisher":{"@id":"https://vilna.io/#organization"}}]}}},"lastModified":"2026-05-26T20:25:55.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/guides/integration-patterns","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}