
{"id":159316,"date":"2026-05-01T10:43:46","date_gmt":"2026-05-01T10:43:46","guid":{"rendered":"https:\/\/mycryptomania.com\/?p=159316"},"modified":"2026-05-01T10:43:46","modified_gmt":"2026-05-01T10:43:46","slug":"how-i-built-a-24-7-solana-memecoin-sniper-with-claude-code-no-code","status":"publish","type":"post","link":"https:\/\/mycryptomania.com\/?p=159316","title":{"rendered":"How I Built a 24\/7 Solana Memecoin Sniper With Claude Code (No Code)"},"content":{"rendered":"<h4>One terminal, one skill install, plain-English prompts. The bot scans, filters, and snipes Solana memecoins around the clock. Here\u2019s the build, the logic, and what I\u2019d do differently next\u00a0time.<\/h4>\n<p><em>\u26a0\ufe0f <\/em><strong><em>Disclosure &amp; risk:<\/em><\/strong><em> This is an editorial write-up based on the official GMGN docs, the GMGNAI\/gmgn-skills repo, and my own setup notes. AI agents can misread prompts and execute the wrong trade. Memecoin sniping is among the highest-risk activities in crypto\u200a\u2014\u200amost attempts lose money. Verify every contract address, amount, and slippage before authorizing a swap. Only ever risk what you can afford to lose. In addition, some links in this article are affiliate links; if you sign up through them, we may earn a commission at no extra cost to\u00a0you.<\/em><\/p>\n<p>For about a year, my Solana memecoin \u201csystem\u201d was: stare at GMGN, refresh <a href=\"https:\/\/t.me\/BullxBetaBot?start=access_ZH5O9XEG5XQ\"><strong>BullX<\/strong><\/a>, miss the move, complain in Discord. The bots that snipe in slot zero were always 30 milliseconds ahead of me.\u00a0Always.<\/p>\n<p>Last month I rebuilt the whole loop in Claude Code. No Python. No Rust. No Node project. Just a single Claude Code session, the <a href=\"https:\/\/gmgn.ai\/ai?ref=NdGvsXdB&amp;chain=sol\"><strong>GMGN AI skills<\/strong><\/a> installed via one npx command, and a Routine that wakes the agent up every few minutes to scan, filter, and\u00a0act.<\/p>\n<p>It\u2019s been live for a few weeks. It hasn\u2019t 100x\u2019d anything yet. But it has done something more useful: it removed me from the part of the loop where I was the bottleneck. The bot now misses fewer good entries than I do, skips more bad ones, and I sleep through the whole\u00a0thing.<\/p>\n<p>Here\u2019s exactly how it\u2019s wired\u00a0up.<\/p>\n<h4>What \u201cno code\u201d actually means\u00a0here<\/h4>\n<p>Let\u2019s get the terminology honest up front, because \u201cno code\u201d gets abused a\u00a0lot:<\/p>\n<p>I didn\u2019t wrote a function, a loop, or a transaction signer.I did edit one config file (.env) and one schedule file (.claude\/routines.json).The agent\u2019s \u201ccode\u201d is plain English in a system\u00a0prompt.<\/p>\n<p>If editing two text files counts as code to you, fair, this isn\u2019t truly no-code. But if you can copy-paste a config and tell an AI agent what to do in a sentence, you can build this. No TypeScript required.<\/p>\n<p>The whole\u00a0stack:<\/p>\n<p><strong>Claude Code<\/strong>\u200a\u2014\u200athe agent. Runs locally, calls tools, follows instructions in a CLAUDE.md system\u00a0prompt.<strong>GMGN AI Skills<\/strong>\u200a\u2014\u200athe on-chain hands. Installed with npx skills add GMGNAI\/gmgn-skills. Gives Claude four new abilities: read tokens, read markets, read wallets, execute\u00a0swaps.<strong>Claude Code Routines<\/strong>\u200a\u2014\u200athe heartbeat. Schedules the agent to wake up on cron, do its scan, and go back to\u00a0sleep.<strong>GMGN\u2019s hosted-wallet architecture<\/strong>\u200a\u2014\u200athe safety net. Private keys aren\u2019t sitting in your\u00a0.env controlling on-chain assets directly; the key in your config is a request-signing key.<\/p>\n<p>That\u2019s it. The whole \u201cbot\u201d is those four pieces talking to each\u00a0other.<\/p>\n<h4>Step 1\u200a\u2014\u200aThe dependencies, in one\u00a0minute<\/h4>\n<p>Prerequisites if you\u2019ve never used any of\u00a0this:<\/p>\n<p>A working Claude Code install (Claude paid plan recommended for this volume of\u00a0calls).An Ed25519 key pair (instructions below; takes 60 seconds).A GMGN API key (free; you upload your public key, they hand you back an API\u00a0key).A small Solana wallet you\u2019re willing to risk on memecoins. Not your main wallet. <strong>Not your main wallet.<\/strong> I\u2019ll say it a third time: not your main\u00a0wallet.<\/p>\n<p>The Ed25519 key pair is the bit most people fumble. The fastest way is to ask Claude Code\u00a0itself:<\/p>\n<p>Generate an Ed25519 key pair for me using OpenSSL and show me both keys.<\/p>\n<p>It runs the command, hands you the public and private key. Save both into a password manager. The public key gets uploaded to GMGN. The private key goes into your local\u00a0.env, never anywhere\u00a0else.<\/p>\n<p>If you\u2019d rather use a GUI, GMGN\u2019s docs point you to Binance\u2019s open-source asymmetric-key-generator on GitHub. Same result, slightly more\u00a0clicks.<\/p>\n<p>One tripwire from the GMGN docs that cost me an hour: <strong>GMGN only supports IPv4 requests. IPv6 is not supported.<\/strong> If your home ISP or VPN is forcing IPv6, the API will refuse to talk to you and the error messages will make zero sense. curl ip.me from the terminal you&#8217;ll be running the agent in. If the result is an IPv6 address, fix that before going\u00a0further.<\/p>\n<h4>Step 2\u200a\u2014\u200aInstall the GMGN\u00a0skills<\/h4>\n<p>This is the line that does the heavy\u00a0lifting:<\/p>\n<p>npx skills add GMGNAI\/gmgn-skills<\/p>\n<p>Send that as a prompt to Claude Code. The agent runs it. The skill folder lands at ~\/.claude\/skills\/gmgn-skills\/. Claude Code automatically discovers it on the next\u00a0session.<\/p>\n<p>You now have four new skills the agent can call by name or trigger by\u00a0intent:<\/p>\n<p>Skill What it does Needs private key? \/gmgn-token Token info, security check, pool status, holders, traders No \/gmgn-market Candles, trending tokens, multi-resolution OHLC No \/gmgn-portfolio Wallet holdings, P&amp;L, transaction history No \/gmgn-swap Submit a buy or sell, query order status\u00a0Yes<\/p>\n<p>The data skills cover Solana, BSC, and Base. ETH was listed as in-progress when I built this. For Solana, the base trading pairs are SOL and\u00a0USDC.<\/p>\n<p>You don\u2019t have to memorize the slash commands. Plain English works because each skill has a description that tells the agent when to fire it. \u201cShow me the trending memecoins on Solana with smart money buys in the last hour\u201d routes to \/gmgn-market automatically.<\/p>\n<h4>Step 3\u200a\u2014\u200aDrop your credentials into ~\/.config\/gmgn\/.env<\/h4>\n<p>Same drill: ask Claude Code to set it\u00a0up.<\/p>\n<p>Create a .env file in the ~\/.config\/gmgn\/ directory containing the GMGN_API_KEY variable. <br \/>If trading features are needed, please also add the GMGN_PRIVATE_KEY variable. <br \/>Open this file for me, remind me to paste the actual GMGN API Key and locally generated private key, and save it. Note: please ensure this file is not committed to git.<\/p>\n<p>The file ends up looking like\u00a0this:<\/p>\n<p>GMGN_API_KEY=your-api-key-from-gmgn-ai<br \/>GMGN_PRIVATE_KEY=&#8221;&#8212;&#8211;BEGIN PRIVATE KEY&#8212;&#8211;n&lt;base64&gt;n&#8212;&#8211;END PRIVATE KEY&#8212;&#8211;n&#8221;<\/p>\n<p>Two non-negotiables:<\/p>\n<p><strong>Lock it down:<\/strong> chmod 600 ~\/.config\/gmgn\/.env. No one but you reads this\u00a0file.<strong>The private key in\u00a0<\/strong><strong>.env MUST match the public key you uploaded to GMGN.<\/strong> Different pair = signature failures = nothing\u00a0works.<\/p>\n<p>A useful clarification from the GMGN docs that the community keeps getting wrong: GMGN_PRIVATE_KEY is a <strong>request-signing key<\/strong>, not a Solana wallet private key. It authenticates your API calls. It does not directly control on-chain assets. If it leaks, an attacker can forge API requests on your behalf, but they can&#8217;t drain your wallet from this key alone. Still treat it like it&#8217;s nuclear, because that&#8217;s enough\u00a0damage.<\/p>\n<p>Test the data side before turning anything else\u00a0on:<\/p>\n<p>Get the candlestick data for 6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN and tell me what you see.<\/p>\n<p>If you get back a structured response with OHLC bars, you\u2019re wired up. If you get an error, the usual culprits are: wrong key pair, IPv6 leak, or the skill folder didn\u2019t load (restart Claude\u00a0Code).<\/p>\n<h4>Step 4\u200a\u2014\u200aThe actual sniper logic, in plain\u00a0English<\/h4>\n<p>Here\u2019s where most \u201cAI trading bot\u201d tutorials fail: they hand you data tools and call it a bot. A bot is logic. The agent needs a system prompt that describes what counts as a snipe-worthy token, what counts as obvious garbage, and how aggressive to be with\u00a0sizing.<\/p>\n<p>I keep mine in a CLAUDE.md at the project root. The exact text is something I&#8217;m still tuning, but the structure looks like\u00a0this:<\/p>\n<p>You are a Solana memecoin sniper bot. You run scans every 5 minutes.<br \/>Your job: find new tokens worth a small probe buy, skip the obvious traps, <br \/>log everything.WATCHLIST RULES \u2014 only consider buying a token if ALL of these are true:<br \/>&#8211; Listed on Solana<br \/>&#8211; Liquidity is at least 30 SOL<br \/>&#8211; Liquidity is locked (or LP burned)<br \/>&#8211; Contract is renounced (no mint authority)<br \/>&#8211; Top 10 holders own less than 25% combined<br \/>&#8211; Bundler ratio is below 30%<br \/>&#8211; At least 3 known smart-money wallets are holding<br \/>&#8211; Token is younger than 24 hoursHARD SKIPS \u2014 never touch a token if any of these are true:<br \/>&#8211; Honeypot detected<br \/>&#8211; Sell tax above 5%<br \/>&#8211; Top wallet owns more than 15%<br \/>&#8211; Sniper count above 70 (already crowded)<br \/>&#8211; Less than 50 unique holdersPOSITION SIZING:<br \/>&#8211; Default probe size: 0.1 SOL<br \/>&#8211; Maximum position size per token: 0.5 SOL<br \/>&#8211; Maximum simultaneous positions: 5<br \/>&#8211; Daily loss cap: 1 SOL \u2014 if hit, stop all buys until manual resetEXIT RULES:<br \/>&#8211; Set take-profit at +60%<br \/>&#8211; Set stop-loss at -25%<br \/>&#8211; If a token bleeds 15% within the first 5 minutes, sell immediately<br \/>&#8211; If smart-money wallets exit, sell my position tooWORKFLOW EACH RUN:<br \/>1. Pull trending tokens (gmgn-market trending, last 1h, score-ranked)<br \/>2. For each new candidate, run gmgn-token info AND gmgn-token security<br \/>3. Reject anything failing the WATCHLIST RULES<br \/>4. For survivors, check smart-money holdings (gmgn-token holders)<br \/>5. If criteria met AND no daily-cap hit AND fewer than 5 open positions, <br \/>   call gmgn-swap with the probe size<br \/>6. Append to \/home\/me\/sniper\/journal.md with full reasoningALWAYS confirm trade parameters before submitting a swap. <br \/>NEVER spend more than 0.5 SOL on a single token.<\/p>\n<p>Three things to notice about this\u00a0prompt:<\/p>\n<p><strong>The hard rules are quantitative.<\/strong> \u201cLiquidity at least 30 SOL.\u201d \u201cTop 10 holders less than 25% combined.\u201d Not \u201clooks healthy.\u201d If you can\u2019t reduce a rule to a number, the agent will improvise, and improvisation is where capital\u00a0dies.<\/p>\n<p><strong>Skips are louder than buys.<\/strong> I have eight watchlist rules and five hard-skip rules. The defaults are biased aggressively toward not-buying. In memecoin sniping, the cost of skipping a 10x is much smaller than the cost of buying a\u00a0rug.<\/p>\n<p><strong>There\u2019s a journal.<\/strong> Every decision, including the \u201cI considered this token and skipped it because rule 3 failed\u201d decisions, gets logged. After two weeks, the journal is your most valuable asset, more valuable than the bot itself. It tells you which rules are working and which are filtering out\u00a0winners.<\/p>\n<h4>Step 5\u200a\u2014\u200aSchedule it with Claude Code\u00a0Routines<\/h4>\n<p>This is where it stops being a manual thing and becomes a 24\/7\u00a0thing.<\/p>\n<p>Create\u00a0.claude\/routines.json in your\u00a0project:<\/p>\n<p>{<br \/>  &#8220;routines&#8221;: [<br \/>    {<br \/>      &#8220;name&#8221;: &#8220;Solana Sniper Scan&#8221;,<br \/>      &#8220;schedule&#8221;: &#8220;*\/5 * * * *&#8221;,<br \/>      &#8220;timezone&#8221;: &#8220;UTC&#8221;,<br \/>      &#8220;prompt&#8221;: &#8220;Run the sniper workflow described in CLAUDE.md. Log every decision.&#8221;<br \/>    },<br \/>    {<br \/>      &#8220;name&#8221;: &#8220;Position Manager&#8221;,<br \/>      &#8220;schedule&#8221;: &#8220;*\/2 * * * *&#8221;,<br \/>      &#8220;timezone&#8221;: &#8220;UTC&#8221;,<br \/>      &#8220;prompt&#8221;: &#8220;Check status of all open positions. Apply exit rules from CLAUDE.md. Sell anything that triggered a stop or take-profit.&#8221;<br \/>    },<br \/>    {<br \/>      &#8220;name&#8221;: &#8220;Daily Reset&#8221;,<br \/>      &#8220;schedule&#8221;: &#8220;0 0 * * *&#8221;,<br \/>      &#8220;timezone&#8221;: &#8220;UTC&#8221;,<br \/>      &#8220;prompt&#8221;: &#8220;Reset the daily loss counter. Summarize yesterday&#8217;s trades into journal-summary-YYYY-MM-DD.md.&#8221;<br \/>    }<br \/>  ]<br \/>}<\/p>\n<p>The routines run Claude Code in headless mode on a cron schedule, no terminal window required. Three loops, each doing one\u00a0job:<\/p>\n<p>Scan + buy decisions every 5\u00a0minutesPosition management every 2 minutes (so stop-losses trigger\u00a0fast)A nightly reset and journal\u00a0summary<\/p>\n<p>That\u2019s the whole \u201c24\/7\u201d piece. Claude Code wakes up, follows your CLAUDE.md instructions, calls the GMGN skills, writes a journal entry, and goes back to sleep until the next cron\u00a0tick.<\/p>\n<p>Costs run me a few dollars a day in Claude API calls at this cadence. Could be tighter. I haven\u2019t optimized.<\/p>\n<h4>Step 6\u200a\u2014\u200aWhere to actually run\u00a0this<\/h4>\n<p>Local laptop is fine for testing. For real 24\/7 you need a machine that doesn\u2019t go to sleep, doesn\u2019t lose Wi-Fi, and doesn\u2019t get rebooted because someone wanted to play a\u00a0game.<\/p>\n<p>Three sane\u00a0options:<\/p>\n<p><strong>A small VPS\u200a\u2014\u200aeasiest path.<\/strong> A $6\/month Linux droplet on DigitalOcean or Hetzner. Run Claude Code under systemd or pm2 so it restarts on crash. This is what I\u00a0use.<\/p>\n<p><strong>Containerized on any cloud.<\/strong> Docker the whole thing, push to a registry, run on Railway, Fly, Render, whatever. Slightly more setup, slightly more flexible.<\/p>\n<p><strong>Cloud function with external scheduler.<\/strong> The routines logic gets replaced with AWS Lambda + EventBridge. Costs basically nothing because you only pay for execution time. Most complex setup, lowest ongoing\u00a0cost.<\/p>\n<p>For a memecoin sniper, latency-to-Jupiter-route is the thing that matters most, and a VPS in a region close to GMGN\u2019s edge nodes is enough. Don\u2019t over-engineer this\u00a0part.<\/p>\n<h4>What\u2019s actually working (and what\u2019s\u00a0not)<\/h4>\n<p>Three weeks in, the honest\u00a0report:<\/p>\n<p><strong>What\u2019s working well.<\/strong> The filtering is the value. About 70% of the tokens the trending feed surfaces fail at least one of my hard-skip rules. Pre-bot me would have FOMO\u2019d into half of those. Post-bot me never sees them. That\u2019s the entire game on autopilot.<\/p>\n<p><strong>What\u2019s working OK.<\/strong> Entries on tokens that pass all filters. The sub-0.3-second order submission GMGN advertises is real, the same routing engine as the GMGN web app, so I\u2019m not getting outpaced by the same-tier bots. I\u2019m definitely getting outpaced by the slot-0 professional desks running on private RPCs and validator-direct routes, but for retail-tier sniping, the timing is\u00a0fine.<\/p>\n<p><strong>What\u2019s not working.<\/strong> Two things, both my fault, not the\u00a0bot\u2019s.<\/p>\n<p>First, my exit logic is too rigid. \u201cSell on -25%\u201d sounds smart until you watch a token bottom out at -28% and rip back to +200% in the next ten minutes. I\u2019ve added a \u201cif more smart-money wallets are <em>buying<\/em> during my drawdown, hold\u201d override, which helps but doesn\u2019t fully solve it. This is genuinely hard.<\/p>\n<p>Second, I\u2019m overweighting smart-money wallet signals. They\u2019re useful, but they\u2019re a lagging indicator. By the time three smart-money wallets are in, half the move is already done. I\u2019m experimenting with weighting fresh wallets that <em>match the on-chain pattern<\/em> of historic smart-money wallets instead of waiting for the named ones to show\u00a0up.<\/p>\n<p>Both fixes are prompt edits, not code changes. That\u2019s the part that still feels\u00a0weird.<\/p>\n<h4>The discipline that actually\u00a0matters<\/h4>\n<p>I want to be honest about what this build is and isn\u2019t, because I\u2019ve watched a lot of people lose money to \u201cAI trading bots\u201d and I don\u2019t want to add to that\u00a0pile.<\/p>\n<p><strong>This is not alpha.<\/strong> The data the GMGN skills surface is the same data on the GMGN website. What changes is that you actually look at it every time, in a structured format, with rules you committed to in advance. The friction reduction is the value, not some emergent intelligence.<\/p>\n<p><strong>It is not a substitute for understanding what you\u2019re trading.<\/strong> If you don\u2019t know what \u201cliquidity locked\u201d means, what a bundler is, why sell tax matters, fix that before you wire up any bot. Operating an automated system you don\u2019t understand is the second-fastest way to zero. The fastest is operating a manual one you don\u2019t understand.<\/p>\n<p><strong>It is, slightly, a security upgrade.<\/strong> GMGN\u2019s hosted-wallet architecture means the on-chain wallet keys aren\u2019t sitting in your\u00a0.env. The key in your\u00a0.env signs API requests, not transactions. Combined with the IP whitelist GMGN enforces, that&#8217;s a meaningfully smaller attack surface than most &#8220;connect your wallet&#8221; trading bots. Your\u00a0.env file is still a risk surface\u200a\u2014\u200achmod 600, never commit, rotate if you ever screenshot it by accident. But the architecture is\u00a0sane.<\/p>\n<p><strong>The agent will make mistakes.<\/strong> I\u2019ve watched Claude misread \u201csell 50% of my position\u201d as \u201csell 50 SOL of my position\u201d once. Caught it because I had a sanity-check ceiling in the system prompt that capped any single trade at 0.5 SOL. The cap saved me. Build the\u00a0cap.<\/p>\n<h4>TL;DR\u200a\u2014\u200aBuild it in 15\u00a0minutes<\/h4>\n<p># 1. Generate Ed25519 keys (locally, in terminal)<br \/>openssl genpkey -algorithm ED25519 -out private.pem<br \/>openssl pkey -in private.pem -pubout -out public.pem# 2. Get your IPv4 egress IP<br \/>curl ip.me# 3. Upload public key + IP at <a href=\"https:\/\/gmgn.ai\/ai\">https:\/\/gmgn.ai\/ai<\/a> \u2192 get API key# 4. Install GMGN skills via Claude Code prompt:<br \/>npx skills add GMGNAI\/gmgn-skills# 5. Set up ~\/.config\/gmgn\/.env with both keys<br \/>chmod 600 ~\/.config\/gmgn\/.env# 6. Test:<br \/>&#8220;Get candlestick data for any Solana token and tell me what you see.&#8221;# 7. Drop in CLAUDE.md with the rules from Step 4 above# 8. Drop in .claude\/routines.json with the cron from Step 5 above# 9. Park the whole thing on a $6 VPS# 10. Read the journal every morning. Update the rules every week.<\/p>\n<p>The agent will run while you sleep. The journal is what tells you whether to keep running it. Read\u00a0it.<\/p>\n<h4>Sources I\u00a0used<\/h4>\n<p><a href=\"https:\/\/docs.gmgn.ai\/index\/gmgn-agent-api\">GMGN Agent API official\u00a0docs<\/a><a href=\"https:\/\/docs.gmgn.ai\/index\/generate-public-key\">GMGN\u200a\u2014\u200aGenerate Public Key\u00a0guide<\/a><a href=\"https:\/\/github.com\/GMGNAI\/gmgn-skills\">GMGNAI\/gmgn-skills GitHub\u00a0repo<\/a><a href=\"https:\/\/platform.claude.com\/docs\/en\/agents-and-tools\/agent-skills\/overview\">Anthropic\u200a\u2014\u200aAgent Skills\u00a0overview<\/a><a href=\"https:\/\/docs.claude.com\/en\/docs\/claude-code\/routines\">Claude Code\u00a0Routines<\/a><\/p>\n<p>If this saved you time, a clap helps Medium recommend it to other on-chain builders. If you spot a flaw in my filtering rules, or have a better exit logic, drop it in the comments. I read every\u00a0reply.<\/p>\n<p><em>This is an editorial walkthrough, not financial advice. Some links in this article are affiliate links\u200a\u2014\u200aif you sign up through them, we may earn a commission at no extra cost to you. This does not influence the editorial views above. Memecoin trading is high-risk and most participants lose money; only ever risk what you can afford to lose. All linked tools are open-source or have public APIs; pricing and access can\u00a0change.<\/em><\/p>\n<p><a href=\"https:\/\/medium.com\/coinmonks\/how-i-built-a-24-7-solana-memecoin-sniper-with-claude-code-no-code-27d8577ed5e8\">How I Built a 24\/7 Solana Memecoin Sniper With Claude Code (No Code)<\/a> was originally published in <a href=\"https:\/\/medium.com\/coinmonks\">Coinmonks<\/a> on Medium, where people are continuing the conversation by highlighting and responding to this story.<\/p>","protected":false},"excerpt":{"rendered":"<p>One terminal, one skill install, plain-English prompts. The bot scans, filters, and snipes Solana memecoins around the clock. Here\u2019s the build, the logic, and what I\u2019d do differently next\u00a0time. \u26a0\ufe0f Disclosure &amp; risk: This is an editorial write-up based on the official GMGN docs, the GMGNAI\/gmgn-skills repo, and my own setup notes. AI agents can [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":159317,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-159316","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-interesting"],"_links":{"self":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts\/159316"}],"collection":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=159316"}],"version-history":[{"count":0,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/posts\/159316\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=\/wp\/v2\/media\/159317"}],"wp:attachment":[{"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=159316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=159316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mycryptomania.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=159316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}