AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill 13 Rwa Tokenization

skill-vaquarkhan-web3-agent-skills-skill-13-rwa-tokenization · by vaquarkhan

Handles real-world asset tokenization including treasuries, real estate, bonds on-chain, ERC-3643 compliance tokens, and yield distribution. Use for institutional RWA workflows.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-vaquarkhan-web3-agent-skills-skill-13-rwa-tokenization

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vaquarkhan-web3-agent-skills-skill-13-rwa-tokenization)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill 13 Rwa Tokenization? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

RWA Tokenization

When to Use

  • Tokenizing treasuries (T-bills, government bonds)
  • Real estate fractional ownership
  • Corporate bond issuance on-chain
  • ERC-3643 (T-REX) compliant security tokens
  • Yield distribution to token holders

Prerequisites

  • MCP: compliance-screening-server, blockchain-rpc-server, price-feed-server
  • Skills: skill-09 (mandatory for all RWA), skill-08

Workflow

1. Token Standard Selection

| Standard | Use Case | Compliance | |----------|----------|------------| | ERC-3643 (T-REX) | Regulated securities | Built-in identity/compliance | | ERC-1400 | Security tokens (legacy) | Partition-based | | ERC-4626 | Yield-bearing vaults | DeFi composability | | ERC-20 + allowlist | Simple restricted tokens | Manual KYC gate |

Prefer ERC-3643 for regulated offerings in EU (MiCA) and US (Reg D/Reg S).

2. Issuance Workflow

  1. Legal structuring (SPV, fund vehicle)
  2. KYC/AML all investors via compliance MCP
  3. Deploy identity registry + compliance module
  4. Mint tokens to verified investor wallets only
  5. Register with applicable regulators (SEC, FCA, etc.)

3. Asset Classes

Tokenized Treasuries (e.g., Ondo OUSG, Franklin FOBXX):

  • 1:1 backing with short-term US Treasuries
  • Daily/monthly redemption windows
  • Accrued yield reflected in token price or rebasing

Real Estate:

  • SPV holds property; tokens = beneficial interest
  • Distribute rental income via claim() or automatic airdrop
  • Secondary trading restricted to qualified investors

Bonds:

  • Coupon payments via scheduled distributeYield() calls
  • Maturity redemption at par

4. Yield Distribution

function distributeYield(uint256 amount) external onlyManager {
  uint256 totalSupply = token.totalSupply();
  yieldPerToken += (amount * 1e18) / totalSupply;
}

Track tax reporting obligations per jurisdiction (1099-DA, withholding).

5. Compliance Controls

  • Transfer restrictions: only between whitelisted addresses
  • Force transfer for court orders (ERC-3643 agent role)
  • Freeze tokens for sanctioned parties
  • Cap table reporting and audit trail

Hard Rules

  • All investors must pass KYC/AML before mint
  • No public trading without registration exemption
  • Screen every transfer via compliance MCP
  • Maintain off-chain legal docs linked via hash on-chain

References

  • references/erc3643-overview.md
  • knowledge-base/regulations/mica/

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.