tron

tron is a skill for Claude Code from ChainGPT-org/chaingpt-claude-skill. It costs 138 tokens per session (1,084 once invoked), scanned A, original, MIT.

A skill for working with the Tron blockchain, including TRX and TRC-20 tokens. It can read account information, assess token risk, prepare transfers and trades, and support SunSwap and JustLend operations.

In plain words
What is it for?
Use it to validate Tron addresses, inspect balances and resources, prepare TRX or TRC-20 transfers, get SunSwap quotes, use JustLend, and inspect transactions.
Why use it?
It accounts for Tron-specific addresses, units, fees, bandwidth, and energy instead of treating Tron like an EVM network. Transactions are unsigned by default so they can be signed in TronLink or by an agent wallet under a policy.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the chaingpt plugin — 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server shipped together

Good fit Use it to validate Tron addresses, inspect balances and resources, prepare TRX or TRC-20 transfers, get SunSwap quotes, use JustLend, and inspect transactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chaingpt-org/chaingpt-claude-skill/tron
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ChainGPT-org/chaingpt-claude-skill --skill tron
Clone the repo
git clone --depth 1 https://github.com/ChainGPT-org/chaingpt-claude-skill

Made for: Claude Code.

Or install chaingpt, the plugin that ships this one along with the rest of its 24 skills, 1 command, 3 agents, 1 hook, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tron

README.md
[![agentmods](https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/tron/github.svg)](https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/tron)
Your own site
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/tron"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/tron/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tron

Your own site · 80×15
<a href="https://agentmods.dev/skills/chaingpt-org/chaingpt-claude-skill/tron"><img src="https://agentmods.dev/badge/skills/chaingpt-org/chaingpt-claude-skill/tron.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,084 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00138 $0.01084
Opus 5 $0.00069 $0.00542
Sonnet 5 $0.00028 $0.00217
Haiku 4.5 $0.00014 $0.00108

Measured 9d ago against content hash 97165412bdd2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

tron scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/tron/SKILL.md · 63 lines

How it starts

The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ChainGPT Tron Skill

You operate on Tron, a non-EVM chain (TVM). It is bytecode-compatible with the EVM but the account, address, fee, and transaction layers differ. Key facts:

  • Addresses are base58 T… (34 chars). The same secp256k1 key controls both an ETH EOA and a Tron account; only the encoding differs (0x41 + Base58Check). So the agent's Tron address is derived from its existing EVM agent wallet — there is no separate _init.
  • Units: 1 TRX = 1,000,000 SUN (6 decimals). Contract calls burn Energy (capped by fee_limit); transactions burn Bandwidth. Sending to a never-activated address costs ~1.1 TRX.
  • No OpenOcean/1inch on Tron — DEX routing uses SunSwap; lending uses JustLend.
  • Custody-free by default: builders return an UNSIGNED tx (sign in TronLink or via the agent wallet). Mainnet builders require acknowledgeMainnet: true.

Tools

Tool Purpose
chaingpt_tron_validate_address Validate + show hex/EVM forms (offline)
chaingpt_tron_balances TRX + resources + TRC-20 balances
chaingpt_tron_token_balance One TRC-20 balance (resolves decimals on-chain)
chaingpt_tron_account_resources Bandwidth + energy
chaingpt_tron_tx_info Receipt by txid
chaingpt_tron_research_token DexScreener price/liquidity/volume
chaingpt_tron_risk_token GoPlus security scan
chaingpt_tron_build_transfer_tx Unsigned native TRX transfer
chaingpt_tron_build_trc20_transfer_tx Unsigned TRC-20 transfer
chaingpt_tron_dex_sunswap_quote SunSwap swap quote (read)
chaingpt_tron_lend_justlend_account JustLend liquidity + per-market balances
chaingpt_tron_lend_justlend_build_tx Unsigned JustLend approve/supply/withdraw/borrow/repay
chaingpt_agent_wallet_tron_address Agent's Tron address + TRX balance
chaingpt_agent_wallet_tron_sign_and_send Build + sign + broadcast under the tron policy

Pipelines

Send a token (custody-free):

chaingpt_tron_risk_token (optional gate) → chaingpt_tron_build_trc20_transfer_tx (acknowledgeMainnet:true) → sign in TronLink

Read the full file on GitHub · 63 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 63 lines · 138 tokens per session scan A 97165412bdd2

Subscribe to this mod's changes

tron is a skill published in the GitHub repository ChainGPT-org/chaingpt-claude-skill (16 stars, last pushed 10d ago), licensed MIT. It adds 138 tokens to every session and 1,084 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

perp-cli

Multi-DEX perpetual futures trading via the perp-cli command-line tool. Use when user asks to: trade perps, check funding rates, scan/execute arbitrage (perp-perp or spot-perp), run delta-neutral strategies, bridge USDC across chains, manage positions/orders/leverage, deposit/withdraw, hedge spot+perp, trade HIP-3…

hypurrquant/perp-cli · 152 tokens

propfund

Trade on PropFund, the decentralized on-chain prop firm for AI agents. Use this skill to get funded with the liquidity pool's capital and trade without risking your own bankroll — pass a transparent evaluation, then place leveraged long/short trades with mandatory stop-loss/take-profit and on-chain risk limits, and…

NO7r34L/PropFund.eth · 0 tokens

suwappu

Build with the Suwappu REST API: cross-chain quotes, simulation, self-custody or managed swaps, managed-wallet portfolio/prices, Polymarket research and orders, Hyperliquid market research, and Morpho lending-market research.

0xSoftBoi/suwappubot · 55 tokens

suwappu-dex

Use Suwappu's hosted MCP server for cross-chain quotes, swap simulation and unsigned transaction preparation, managed-wallet portfolio reads, prices, prediction-market research, Hyperliquid research, and Morpho market data.

0xSoftBoi/suwappubot · 50 tokens

ethereum-defi

Ethereum DeFi skill — query balances, get Chainlink prices, estimate gas, resolve ENS names, call smart contracts, ABI-encode functions, interact with ERC-8004 agent registry, query EAS attestations.

tenzro/tenzro-network · 48 tokens

defi-protocols

DeFi protocol authority — flashloans, AMM design, lending markets, concentrated liquidity, MEV, triangular and cross-DEX arbitrage, stablecoin depeg dynamics, and on-chain capital routing across Uniswap V3, Aerodrome, Balancer, Curve, and Aave V3 on Ethereum, Base, Arbitrum, Optimism, and Polygon.

LuuOW/meridian-mcp · 81 tokens