{"id":8176,"date":"2025-09-06T13:34:40","date_gmt":"2025-09-06T06:34:40","guid":{"rendered":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/"},"modified":"2025-09-06T13:34:40","modified_gmt":"2025-09-06T06:34:40","slug":"why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it","status":"publish","type":"post","link":"https:\/\/edm.co.id\/id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/","title":{"rendered":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It)"},"content":{"rendered":"<p>Whoa!<br \/>\nI&#8217;ve been fiddling with wallets since before Solana hit the mainstream, and this whole web-wallet moment feels different. The UX improvements are tangible, but the trade-offs are real too. Initially I thought a web-only wallet would be convenient and harmless, but then realized the security surface changes in ways people often miss. On one hand it&#8217;s faster and more accessible, though actually\u2014let me rephrase that\u2014there are nuances you should know before you trust large balances to any browser session.<\/p>\n<p>Seriously?<br \/>\nYes. Web wallets are great for quick interactions. They&#8217;re helpful when you&#8217;re on a laptop in a cafe or hopping between dApps without wanting to open a desktop app. My instinct said &#8220;easy wins,&#8221; and for a lot of users that gut feeling is right. Something felt off about how casually some guides recommend storing large amounts of crypto in a browser profile, and that&#8217;s what bugs me about a lot of short tutorials.<\/p>\n<p>Here&#8217;s the thing.<br \/>\nA web version of Phantom for Solana gives near-instant onboarding and easy extension-less access (depending on implementation), but the convenience comes with different risk vectors compared to mobile or hardware wallets. For example, session persistence, cross-site scripting, and malicious browser extensions can all compound if the wallet integrates deeply with the DOM and injected scripts. I learned the hard way\u2014after a near-miss where an extension leaked clipboard data\u2014that small oversights lead to outsized losses.<\/p>\n<p>Okay, so check this out\u2014<br \/>\nyou can think of the web wallet as a fast lane. It gets you into Solana dApps in seconds. The latency is lower, and signing experience often feels more native than a mobile app that forwards through a deeplink. But then there&#8217;s the session management problem: automatic approvals, long-lived tokens, or careless &#8220;remember me&#8221; settings are very very common. I tell clients to treat web sessions like a shared workstation; don&#8217;t leave them unattended.<\/p>\n<p>Hmm&#8230;<br \/>\nTechnically speaking, a good web wallet will segregate key material, preferably via the browser&#8217;s secure enclave or using well-vetted WebCrypto APIs, and it will present clear UX for approval scopes. On the other hand, many early implementations rely heavily on in-page JavaScript that, if compromised, can trick users into signing malicious transactions. Initially I thought content security policies would be enough, but then dev teams pointed out that CSP is necessary but not sufficient, especially when third-party script dependencies are deep.<\/p>\n<p>I&#8217;ll be honest\u2014<br \/>\nsetup is smoother than it used to be. Back in my first year working with Solana projects I had to guide users through CLI wallets and mnemonic phrases that felt intimidating. Now you can create an account, pin a passphrase, and get into a dApp in under a minute. Still, I&#8217;m biased toward hardware-backed custody for serious funds. If your balance matters, add a ledger or another cold device to the mix.<\/p>\n<p>Personal note\u2014<br \/>\nI tested a web build in a crowded NYC coffee shop during a product sprint, and someone at the next table asked if I could help them swap tokens. Quick demo mode saved the day. (Oh, and by the way&#8230;) that same demo revealed a tiny UX leak where the confirm modal didn&#8217;t surface the fee payer correctly, which could confuse new users. Small details like that make a huge difference in real-world trust.<\/p>\n<p>Check this out\u2014<br \/>\nthe modern Phantom-ish web wallet pattern supports three core flows: ephemeral sessions for low-value interactions, persistent web profiles for convenience, and hardware-cold signing for high-value transactions. Each flow should be explicit and discoverable in the UI. Users should be able to pick one of those flows without guessing. If a wallet hides the type of signing or blurs what you approved, that&#8217;s a red flag.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/phantom.app\/img\/phantom-logo.png\" alt=\"Screenshot mockup showing Phantom-like web wallet signing modal and transaction details\" \/><\/p>\n<h2>How to Evaluate a Phantom-Style Web Wallet<\/h2>\n<p>Here&#8217;s a straightforward checklist I use when vetting a web wallet like a Phantom web client. First, cryptography: are keys stored client-side with WebCrypto and isolated from page scripts? Second, UI transparency: does the wallet clearly show what you are signing and which program is requesting permission? Third, permissions model: can you restrict approvals by transaction type or amount? Fourth, recovery: do they give a seed, a passphrase, or a hardware link? And finally, updates and audits: is the code audited and are they patching quickly? These are not optional for me.<\/p>\n<p>I&#8217;ll add some nuance\u2014<br \/>\naudits matter, but they are a snapshot. An audited codebase can still be misconfigured at deployment, or the hosting pipeline can be subverted. So operational security and a minimal trust surface are equally important. On a purely technical level, defense-in-depth wins: content security, subresource integrity, strict permissions, and careful dependency updates.<\/p>\n<p>Okay, practical steps\u2014<br \/>\nif you want to try a web Phantom wallet experience, start with a small amount. Use a separate browser profile dedicated to crypto. Disable unused extensions. Consider enabling a passphrase lock with a short timeout. Also, if the web client offers a hardware signing pairing option, use it\u2014many modern web wallets do. My teams often pair a phone or Ledger for critical transactions, which keeps everyday convenience while improving security.<\/p>\n<p>Now, if you&#8217;re looking for a quick place to check out a web Phantom-like client, the community has built lightweight web versions and mirrors that let you try the interface without committing your main seed. One example I often point people to for demos and testing is <a href=\"http:\/\/phantom-web.at\/\">http:\/\/phantom-web.at\/<\/a> because it&#8217;s straightforward to access and gives a feel for how web flows behave in the wild. Try it with a throwaway keypair first.<\/p>\n<p>On developer ergonomics\u2014<br \/>\nbuilding a web wallet for Solana is fun but tricky. Solana&#8217;s transaction model, with recent blockhashes and fee-payer flexibility, means that UX must handle edge cases like expired blockhashes and fee estimation gracefully. Devs should surface retries and provide clear error messages when a transaction fails rather than dumping raw errors. Honestly, bad error handling is one of the top causes of user distrust.<\/p>\n<p>Something I care about\u2014<br \/>\neducation. Wallets need to teach users without being patronizing. A thin tutorial that explains &#8220;why signing matters&#8221; and &#8220;what data the program sees&#8221; will cut fraud rates. Also, show common attack patterns: approval for token transfers, contract upgrade approvals, and unlimited token allowance are big ones. Users often accept prompts because they don&#8217;t understand the consequence; change that cultural gap.<\/p>\n<p>On the regulatory side\u2014<br \/>\nthis space is evolving, especially in the US. Wallet providers are juggling privacy, compliance, and UX. I&#8217;m not a lawyer, and I&#8217;m not 100% sure where the rules will land next year, but I watch policy closely because it influences features like address labeling, compliance checks, and fiat onramps. For now, decentralized custody still offers the strongest privacy model, provided you handle metadata carefully.<\/p>\n<p>Here&#8217;s what bugs me about hype\u2014<br \/>\npeople treat web wallets as finished products when they are still iterating. That&#8217;s fine, but be cautious. Try small trades, use separate profiles, and pair with hardware for big moves. If a site asks for your seed\u2014walk away. If a site asks to permanently approve a program\u2014pause. Those are easy heuristics that save time and money.<\/p>\n<div class=\"faq\">\n<h2>FAQs: Quick answers for users<\/h2>\n<div class=\"faq-item\">\n<h3>Is a web Phantom wallet safe for everyday use?<\/h3>\n<p>Yes, for low-value, frequent interactions it&#8217;s convenient and generally safe if you follow basic hygiene: use a dedicated browser profile, keep extensions minimal, and enable short session timeouts. For high-value storage, combine the web wallet with hardware signing or use cold storage.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>Can I pair the web wallet with a Ledger or hardware device?<\/h3>\n<p>Many modern web wallets support hardware pairing. Use that whenever possible for significant transactions; it keeps private keys offline and reduces risk from page-level compromises.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>How should I recover my web wallet?<\/h3>\n<p>Keep your seed phrase or recovery method offline in a safe place. If the web client offers optional cloud recovery, weigh convenience against added attack surface and consider encrypted backups that you control.<\/p>\n<\/div>\n<\/div>\n<p><!--wp-post-meta--><\/p>","protected":false},"excerpt":{"rendered":"<p>Whoa! I&#8217;ve been fiddling with wallets since before Solana hit the mainstream, and this whole web-wallet moment feels different. The UX improvements are tangible, but the trade-offs are real too. Initially I thought a web-only wallet would be convenient and harmless, but then realized the security surface changes in ways people often miss. On one [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_vp_format_video_url":"","_vp_image_focal_point":[],"footnotes":""},"categories":[1],"tags":[],"class_list":["post-8176","post","type-post","status-publish","format-standard","hentry","category-tak-berkategori"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/edm.co.id\/id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal\" \/>\n<meta property=\"og:description\" content=\"Whoa! I&#8217;ve been fiddling with wallets since before Solana hit the mainstream, and this whole web-wallet moment feels different. The UX improvements are tangible, but the trade-offs are real too. Initially I thought a web-only wallet would be convenient and harmless, but then realized the security surface changes in ways people often miss. On one [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/edm.co.id\/id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/\" \/>\n<meta property=\"og:site_name\" content=\"PT. Elang Dwi Manunggal\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-06T06:34:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/phantom.app\/img\/phantom-logo.png\" \/>\n<meta name=\"author\" content=\"super_elang\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Ditulis oleh\" \/>\n\t<meta name=\"twitter:data1\" content=\"super_elang\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimasi waktu membaca\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/\"},\"author\":{\"name\":\"super_elang\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#\\\/schema\\\/person\\\/402c6d5fed566b8706fed1e11e5188f8\"},\"headline\":\"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It)\",\"datePublished\":\"2025-09-06T06:34:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/\"},\"wordCount\":1328,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/phantom.app\\\/img\\\/phantom-logo.png\",\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/\",\"url\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/\",\"name\":\"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/phantom.app\\\/img\\\/phantom-logo.png\",\"datePublished\":\"2025-09-06T06:34:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#primaryimage\",\"url\":\"https:\\\/\\\/phantom.app\\\/img\\\/phantom-logo.png\",\"contentUrl\":\"https:\\\/\\\/phantom.app\\\/img\\\/phantom-logo.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/edm.co.id\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#website\",\"url\":\"https:\\\/\\\/edm.co.id\\\/\",\"name\":\"PT. Elang Dwi Manunggal\",\"description\":\"Mechanical &amp; Electrical Contractor\",\"publisher\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/edm.co.id\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"id\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#organization\",\"name\":\"PT. ELANG DWI MANUNGGAL\",\"url\":\"https:\\\/\\\/edm.co.id\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/edm.co.id\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/logo-edm.png\",\"contentUrl\":\"http:\\\/\\\/edm.co.id\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/logo-edm.png\",\"width\":1410,\"height\":344,\"caption\":\"PT. ELANG DWI MANUNGGAL\"},\"image\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#\\\/schema\\\/person\\\/402c6d5fed566b8706fed1e11e5188f8\",\"name\":\"super_elang\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g\",\"caption\":\"super_elang\"},\"sameAs\":[\"http:\\\/\\\/prototype.ujiproduk.com\\\/edm\"],\"url\":\"https:\\\/\\\/edm.co.id\\\/id\\\/author\\\/super_elang\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/edm.co.id\/id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/","og_locale":"id_ID","og_type":"article","og_title":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal","og_description":"Whoa! I&#8217;ve been fiddling with wallets since before Solana hit the mainstream, and this whole web-wallet moment feels different. The UX improvements are tangible, but the trade-offs are real too. Initially I thought a web-only wallet would be convenient and harmless, but then realized the security surface changes in ways people often miss. On one [&hellip;]","og_url":"https:\/\/edm.co.id\/id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/","og_site_name":"PT. Elang Dwi Manunggal","article_published_time":"2025-09-06T06:34:40+00:00","og_image":[{"url":"https:\/\/phantom.app\/img\/phantom-logo.png","type":"","width":"","height":""}],"author":"super_elang","twitter_card":"summary_large_image","twitter_misc":{"Ditulis oleh":"super_elang","Estimasi waktu membaca":"7 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#article","isPartOf":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/"},"author":{"name":"super_elang","@id":"https:\/\/edm.co.id\/#\/schema\/person\/402c6d5fed566b8706fed1e11e5188f8"},"headline":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It)","datePublished":"2025-09-06T06:34:40+00:00","mainEntityOfPage":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/"},"wordCount":1328,"commentCount":0,"publisher":{"@id":"https:\/\/edm.co.id\/#organization"},"image":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/phantom.app\/img\/phantom-logo.png","inLanguage":"id","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/","url":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/","name":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It) - PT. Elang Dwi Manunggal","isPartOf":{"@id":"https:\/\/edm.co.id\/#website"},"primaryImageOfPage":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#primaryimage"},"image":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/phantom.app\/img\/phantom-logo.png","datePublished":"2025-09-06T06:34:40+00:00","breadcrumb":{"@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#primaryimage","url":"https:\/\/phantom.app\/img\/phantom-logo.png","contentUrl":"https:\/\/phantom.app\/img\/phantom-logo.png"},{"@type":"BreadcrumbList","@id":"https:\/\/edm.co.id\/why-a-web-version-of-phantom-for-solana-actually-matters-and-how-to-use-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/edm.co.id\/"},{"@type":"ListItem","position":2,"name":"Why a Web Version of Phantom for Solana Actually Matters (and How to Use It)"}]},{"@type":"WebSite","@id":"https:\/\/edm.co.id\/#website","url":"https:\/\/edm.co.id\/","name":"PT. Elang Dwi Manunggal","description":"Mechanical &amp; Electrical Contractor","publisher":{"@id":"https:\/\/edm.co.id\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/edm.co.id\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"id"},{"@type":"Organization","@id":"https:\/\/edm.co.id\/#organization","name":"PT. ELANG DWI MANUNGGAL","url":"https:\/\/edm.co.id\/","logo":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/edm.co.id\/#\/schema\/logo\/image\/","url":"http:\/\/edm.co.id\/wp-content\/uploads\/2021\/03\/logo-edm.png","contentUrl":"http:\/\/edm.co.id\/wp-content\/uploads\/2021\/03\/logo-edm.png","width":1410,"height":344,"caption":"PT. ELANG DWI MANUNGGAL"},"image":{"@id":"https:\/\/edm.co.id\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/edm.co.id\/#\/schema\/person\/402c6d5fed566b8706fed1e11e5188f8","name":"super_elang","image":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/secure.gravatar.com\/avatar\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/89ee345ee41686ba25740234aa3a950b6d856ce6a7b8a9f5eb08c8510ef8644b?s=96&d=mm&r=g","caption":"super_elang"},"sameAs":["http:\/\/prototype.ujiproduk.com\/edm"],"url":"https:\/\/edm.co.id\/id\/author\/super_elang\/"}]}},"_links":{"self":[{"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/posts\/8176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/comments?post=8176"}],"version-history":[{"count":0,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/posts\/8176\/revisions"}],"wp:attachment":[{"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/media?parent=8176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/categories?post=8176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/tags?post=8176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}