{"id":10764,"date":"2025-10-05T16:28:03","date_gmt":"2025-10-05T09:28:03","guid":{"rendered":"https:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/"},"modified":"2025-10-05T16:28:03","modified_gmt":"2025-10-05T09:28:03","slug":"how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan","status":"publish","type":"post","link":"https:\/\/edm.co.id\/id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/","title":{"rendered":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan)"},"content":{"rendered":"<p>Whoa! I still get that little jolt when a wallet I follow spikes activity. Really? Yes. My instinct used to be: check balances, open the RPC, refresh, refresh. That felt fragile. Initially I thought manual checks were enough, but then I watched a bot front-run a swap right under my nose and realized I needed better visibility\u2014fast, and historically precise.<\/p>\n<p>Okay, so check this out\u2014wallet tracking on Solana isn&#8217;t glamorous. It&#8217;s practical. You want three things: live telemetry, readable history, and alerts that don&#8217;t spam your inbox every two minutes. I&#8217;m biased toward tools that let me dive into a tx and see the chain&#8217;s story: who signed, which program executed, pre\/post balances, and token transfers. I use a mix of heuristics and tooling. One of my go-to windows into that world is <a href=\"https:\/\/sites.google.com\/walletcryptoextension.com\/solscan-explore\/\">solscan<\/a>. It&#8217;s where I start when somethin&#8217; smells off.<\/p>\n<p>Here&#8217;s the thing. A single transaction can be a dozen micro-actions stitched together. Medium-level explorers hide that complexity. Good ones surface it. On Solana, transactions often bundle instructions across several programs. That means a &#8220;swap&#8221; might also be a transfer, a memo, and a token account creation. If you only look at the high-level label, you miss the nuances that matter to security, analytics, and debugging.<\/p>\n<p>Hmm&#8230; I remember a time I chased an airdrop tracker that was wrong. The wallet had multiple token accounts, and the alert logic lumped them together. That part bugs me\u2014false positives waste time. So I built a small checklist for myself. First: confirm the sender&#8217;s program id. Second: inspect token account changes. Third: check pre\/post SOL balances. Fourth: note any system transfers to new accounts. This approach catches oddities fast.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png\" alt=\"Screenshot of a Solana transaction breakdown with labeled instructions\" \/><\/p>\n<h2>Practical steps I use for wallet tracking<\/h2>\n<p>Start simple. Watch the public address. If you care, tag it locally. My instinct said to tag everything, but that becomes noise quickly. So I prioritize: high-value wallets, deployer keys, known dex wallets, and a handful of whales I actually follow. Then I layer in tooling. Alerts are handy, though configuration can be fiddly. You can subscribe to signature streams, or poll for confirmed transactions every few seconds. Polling is crude, but reliable when rate limits bite. On the other hand, websockets are clean, until the connection drops\u2014then you&#8217;re blind again. On balance, I run both for redundancy.<\/p>\n<p>When a new tx lands, here&#8217;s my immediate checklist. One: look at the top-level instruction list. Two: expand internal instructions to see CPI calls. Three: map token transfers to token mints. Four: verify rent-exempt account creations\u2014those are interesting. Five: check compute units spent when needed. That&#8217;s a lot, I know. But over time it becomes second nature.<\/p>\n<p>Initially I thought transaction labels were trustworthy. Actually, wait\u2014let me rephrase that. Labels are helpful, but they can mislead. A &#8216;swap&#8217; tag doesn&#8217;t tell you if the wallet also sent a small amount to an unknown address. On one hand labels speed triage. On the other, they can miss sneaky side-effects that matter for security. So I cross-check labels with raw instruction data.<\/p>\n<p>For program developers, there&#8217;s extra value. When debugging a failed transaction, you want to see returned errors, logs, and compute usage. That tells you whether your program panicked, or if the calling code passed bad accounts. On-chain logs are tiny breadcrumbs, but they&#8217;re often enough to point to the failure. I habitually copy logs into my notes\u2014yes, very very manual sometimes\u2014but those snippets save hours later.<\/p>\n<p>Security note: watch signatures and key reuse. Reused keys that suddenly interact with new programs can be a red flag. Also, monitor small test transfers\u2014attackers often probe with dust amounts before bigger moves. My gut feeling said this early on, and the data backed it up repeatedly. Don&#8217;t ignore the little transfers.<\/p>\n<h2>Alerts, automation, and scale<\/h2>\n<p>Automating alerts requires discipline. If your rules are too loose you&#8217;ll drown. If they&#8217;re too strict you&#8217;ll miss the subtle patterns. I iterate. Start with three core alert types: large SOL movements, token mints\/tombs (new mints associated with an address), and program interactions outside the wallet&#8217;s usual set. Then refine. Use rate limits. Use suppression windows. And log everything\u2014alerts are only as useful as their context.<\/p>\n<p>On the tooling side, I favor explorers that show the full instruction trace and token-account diffs. They save time when triaging. The UI matters\u2014dense, compact displays with the ability to expand into raw data are my favorite. Also, integrate with CLI tools for reproducible checks; sometimes I want to script a quick fetch of a signature and parse the JSON locally.<\/p>\n<p>One more practical tip. If you&#8217;re tracking multiple wallets, maintain a metadata file. Note why each wallet is relevant, what programs it normally hits, and any known aliases. This human layer reduces analysis time later. (oh, and by the way&#8230;) keep an eye on staking accounts too; stake deactivations can signal movement of liquidity, and often precede market activity.<\/p>\n<div class=\"faq\">\n<h2>Common questions<\/h2>\n<div class=\"faq-item\">\n<h3>How accurate are transaction labels?<\/h3>\n<p>Labels are a good starting point, but not gospel. They often capture the predominant action, though they may omit side-effects. Verify by expanding instructions and checking token account changes. My instinct is skeptical until I see the raw data.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>Can I get real-time alerts without running a full node?<\/h3>\n<p>Yes. You can subscribe to public RPC providers or use websocket proxies. Beware of rate limits and occasional disconnects. For critical monitoring, use a mix of websocket subscriptions and periodic polling from different providers to avoid single points of failure.<\/p>\n<\/div>\n<div class=\"faq-item\">\n<h3>Why use explorers like solscan?<\/h3>\n<p>Explorers give readable, immediate context: instruction breakdowns, token movements, and logs. They speed debugging and help you connect dots quickly. I use explorers for triage and then pull JSON for deep analysis when needed.<\/p>\n<\/div>\n<\/div>\n<p>Alright\u2014I&#8217;ll be honest: some parts of this work are tedious. But it&#8217;s also rewarding. You notice patterns, feel the chain breathe, and sometimes you catch somethin&#8217; before others do. On a last note, don&#8217;t be afraid to customize your stack. Use explorers like solscan to bootstrap insights, then augment with scripts, alerts, and your own heuristics. That combo keeps you nimble and informed\u2014without getting lost in noise.<\/p>\n<p><!--wp-post-meta--><\/p>","protected":false},"excerpt":{"rendered":"<p>Whoa! I still get that little jolt when a wallet I follow spikes activity. Really? Yes. My instinct used to be: check balances, open the RPC, refresh, refresh. That felt fragile. Initially I thought manual checks were enough, but then I watched a bot front-run a swap right under my nose and realized I needed [&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-10764","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>How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - 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=\"http:\/\/edm.co.id\/id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - PT. Elang Dwi Manunggal\" \/>\n<meta property=\"og:description\" content=\"Whoa! I still get that little jolt when a wallet I follow spikes activity. Really? Yes. My instinct used to be: check balances, open the RPC, refresh, refresh. That felt fragile. Initially I thought manual checks were enough, but then I watched a bot front-run a swap right under my nose and realized I needed [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/edm.co.id\/id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/\" \/>\n<meta property=\"og:site_name\" content=\"PT. Elang Dwi Manunggal\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-05T09:28:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.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=\"5 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/\"},\"author\":{\"name\":\"super_elang\",\"@id\":\"https:\\\/\\\/edm.co.id\\\/#\\\/schema\\\/person\\\/402c6d5fed566b8706fed1e11e5188f8\"},\"headline\":\"How I Track Wallets and SOL Transactions Like a Pro (Using solscan)\",\"datePublished\":\"2025-10-05T09:28:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/\"},\"wordCount\":1041,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#organization\"},\"image\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/statics.solscan.io\\\/solscan-img\\\/solscan_splash.png\",\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/\",\"url\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/\",\"name\":\"How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - PT. Elang Dwi Manunggal\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/edm.co.id\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/statics.solscan.io\\\/solscan-img\\\/solscan_splash.png\",\"datePublished\":\"2025-10-05T09:28:03+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#primaryimage\",\"url\":\"https:\\\/\\\/statics.solscan.io\\\/solscan-img\\\/solscan_splash.png\",\"contentUrl\":\"https:\\\/\\\/statics.solscan.io\\\/solscan-img\\\/solscan_splash.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/edm.co.id\\\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/edm.co.id\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How I Track Wallets and SOL Transactions Like a Pro (Using solscan)\"}]},{\"@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":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - 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":"http:\/\/edm.co.id\/id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/","og_locale":"id_ID","og_type":"article","og_title":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - PT. Elang Dwi Manunggal","og_description":"Whoa! I still get that little jolt when a wallet I follow spikes activity. Really? Yes. My instinct used to be: check balances, open the RPC, refresh, refresh. That felt fragile. Initially I thought manual checks were enough, but then I watched a bot front-run a swap right under my nose and realized I needed [&hellip;]","og_url":"http:\/\/edm.co.id\/id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/","og_site_name":"PT. Elang Dwi Manunggal","article_published_time":"2025-10-05T09:28:03+00:00","og_image":[{"url":"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png","type":"","width":"","height":""}],"author":"super_elang","twitter_card":"summary_large_image","twitter_misc":{"Ditulis oleh":"super_elang","Estimasi waktu membaca":"5 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#article","isPartOf":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/"},"author":{"name":"super_elang","@id":"https:\/\/edm.co.id\/#\/schema\/person\/402c6d5fed566b8706fed1e11e5188f8"},"headline":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan)","datePublished":"2025-10-05T09:28:03+00:00","mainEntityOfPage":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/"},"wordCount":1041,"commentCount":0,"publisher":{"@id":"https:\/\/edm.co.id\/#organization"},"image":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#primaryimage"},"thumbnailUrl":"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png","inLanguage":"id","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/","url":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/","name":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan) - PT. Elang Dwi Manunggal","isPartOf":{"@id":"https:\/\/edm.co.id\/#website"},"primaryImageOfPage":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#primaryimage"},"image":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#primaryimage"},"thumbnailUrl":"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png","datePublished":"2025-10-05T09:28:03+00:00","breadcrumb":{"@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#primaryimage","url":"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png","contentUrl":"https:\/\/statics.solscan.io\/solscan-img\/solscan_splash.png"},{"@type":"BreadcrumbList","@id":"http:\/\/edm.co.id\/how-i-track-wallets-and-sol-transactions-like-a-pro-using-solscan\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/edm.co.id\/"},{"@type":"ListItem","position":2,"name":"How I Track Wallets and SOL Transactions Like a Pro (Using solscan)"}]},{"@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\/10764","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=10764"}],"version-history":[{"count":0,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/posts\/10764\/revisions"}],"wp:attachment":[{"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/media?parent=10764"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/categories?post=10764"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/edm.co.id\/id\/wp-json\/wp\/v2\/tags?post=10764"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}