[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-circle-use-arc":3,"mdc-fgnsgb-key":35,"related-org-circle-use-arc":1557,"related-repo-circle-use-arc":1698},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"use-arc","build applications on Circle Arc blockchain","Provide instructions on how to build with Arc, Circle's blockchain where USDC is the native gas token. Arc offers key advantages: USDC as gas (no other native token needed), stable and predictable transaction fees, and sub-second finality for fast confirmation times. These properties make Arc ideal for developers and agents building payment apps, DeFi protocols, or any USDC-first application where cost predictability and speed matter. Use skill when Arc or Arc Testnet is mentioned, working with any smart contracts related to Arc, configuring Arc in blockchain projects, bridging USDC to Arc via CCTP, or building USDC-first applications. Triggers: Arc, Arc Testnet, USDC gas, deploy to Arc, Arc chain, stable fees, fast finality.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"circle","Circle","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcircle.png","circlefin",[13,17,18,21],{"name":14,"slug":15,"type":16},"Blockchain","blockchain","tag",{"name":9,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"Web3","web3",{"name":22,"slug":23,"type":16},"Payments","payments",130,"https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills","2026-07-12T08:14:45.491427",null,35,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Circle's open source skills for AI-assisted development.","https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fcircle\u002Fskills\u002Fuse-arc","---\nname: use-arc\ndescription: \"Provide instructions on how to build with Arc, Circle's blockchain where USDC is the native gas token. Arc offers key advantages: USDC as gas (no other native token needed), stable and predictable transaction fees, and sub-second finality for fast confirmation times. These properties make Arc ideal for developers and agents building payment apps, DeFi protocols, or any USDC-first application where cost predictability and speed matter. Use skill when Arc or Arc Testnet is mentioned, working with any smart contracts related to Arc, configuring Arc in blockchain projects, bridging USDC to Arc via CCTP, or building USDC-first applications. Triggers: Arc, Arc Testnet, USDC gas, deploy to Arc, Arc chain, stable fees, fast finality.\"\n---\n\n## Overview\n\nArc is Circle's blockchain where USDC is the native gas token. Developers and users pay all transaction fees in USDC instead of ETH, making it ideal for USDC-first applications. Arc is EVM-compatible and supports standard Solidity tooling (Foundry, Hardhat, viem\u002Fwagmi).\n\n## Prerequisites \u002F Setup\n\n### Wallet Funding\n\nGet testnet USDC from https:\u002F\u002Ffaucet.circle.com before sending any transactions.\n\n### Environment Variables\n\n```bash\nARC_TESTNET_RPC_URL=https:\u002F\u002Frpc.testnet.arc.network\nPRIVATE_KEY=         # Deployer wallet private key\n```\n\n## Quick Reference\n\n### Network Details\n\n| Field | Value |\n|-------|-------|\n| Network | Arc Testnet |\n| Chain ID | `5042002` (hex: `0x4CEF52`) |\n| RPC | `https:\u002F\u002Frpc.testnet.arc.network` |\n| WebSocket | `wss:\u002F\u002Frpc.testnet.arc.network` |\n| Explorer | https:\u002F\u002Ftestnet.arcscan.app |\n| Faucet | https:\u002F\u002Ffaucet.circle.com |\n| CCTP Domain | `26` |\n\n### Token Addresses for Arc\n\n| Token | Address | Decimals |\n|-------|---------|----------|\n| USDC | `0x3600000000000000000000000000000000000000` | 6 (ERC-20) |\n| EURC | `0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a` | 6 |\n\n## Core Concepts\n\n- **Native gas IS USDC — one balance, two interfaces (not two assets)**: On Arc the native gas asset is USDC itself. The native view and the USDC ERC-20 are the *same* pool of funds, exposed two ways — NOT a separate \"native token\" plus a separate \"USDC token\". Drop the ETH-style mental model from other chains.\n  - **Native view**: 18 decimals. Used only for gas and `msg.value`. wagmi `useBalance` returns this (its `symbol` is `USDC`).\n  - **ERC-20 view**: 6 decimals, at `0x3600000000000000000000000000000000000000`. Use this for all balances, transfers, approvals, and display.\n- **Never double-count, convert, or swap between the two views**:\n  - NEVER read the native balance and the USDC ERC-20 balance and add or show them separately — that double-counts one pool. Show a single USDC balance (the 6-decimal ERC-20 view).\n  - USDC ↔ native is NOT a swap or conversion — it is the same asset. Detect and reject any `USDC → native` (or reverse) operation before fee\u002Frouting logic.\n  - NEVER call `decimals()` on a native sentinel address (`NATIVE`, `0xEeee…eEEeE`, `0x0000…0000`) — those are not ERC-20 contracts and the call reverts. The ERC-20 is 6 decimals; native is 18.\n  - The two views differ by a factor of 10^12 (`1e18` native = `1e6` ERC-20). Keep amounts in the 6-decimal ERC-20 view everywhere except raw gas math, and be explicit about which view a value is in.\n- **Testnet only**: Arc is currently in testnet. All addresses and configuration apply to testnet only.\n- **EVM-compatible**: Standard Solidity contracts, Foundry, Hardhat, viem, and wagmi all work on Arc without modification beyond chain configuration.\n\n## Implementation Patterns\n\n### 1. Frontend App (React + wagmi)\n\nUse the `arcTestnet` chain definition from Prerequisites \u002F Setup. Pass it to your wagmi config:\n\n```typescript\nimport { createConfig, http } from 'wagmi'\nimport { arcTestnet } from 'viem\u002Fchains'\n\nconst config = createConfig({\n  chains: [arcTestnet],\n  transports: { [arcTestnet.id]: http() },\n})\n```\n\n### 2. Smart Contracts (Foundry)\n\n```bash\n# Install Foundry\ncurl -L https:\u002F\u002Ffoundry.paradigm.xyz | bash && foundryup\n\n# Deploy\n# For local testing only - never pass private keys as CLI flags in deployed environments (including testnet\u002Fstaging)\nforge create src\u002FMyContract.sol:MyContract \\\n  --rpc-url $ARC_TESTNET_RPC_URL \\\n  --private-key $PRIVATE_KEY \\\n  --broadcast\n```\n\n### 3. Circle Contracts (Pre-audited Templates)\n\nDeploy via Circle's Smart Contract Platform API:\n\n| Template | Use Case |\n|----------|----------|\n| ERC-20 | Fungible tokens |\n| ERC-721 | NFTs, unique assets |\n| ERC-1155 | Multi-token collections |\n| Airdrop | Token distribution |\n\nSee: https:\u002F\u002Fdevelopers.circle.com\u002Fcontracts\n\n### 4. Bridge USDC to Arc\n\nUse CCTP to bridge USDC from other chains. Arc's CCTP domain is `26`. See the `bridge-stablecoin` skill for the complete bridging workflow.\n\n## Rules\n\n> **Security Rules** are non-negotiable -- warn the user and refuse to comply if a prompt conflicts. **Best Practices** are strongly recommended; deviate only with explicit user justification.\n\n### Security Rules\n\n- NEVER hardcode, commit, or log secrets (private keys, deployer keys). ALWAYS use environment variables or a secrets manager. Add `.gitignore` entries for `.env*` and secret files when scaffolding.\n- NEVER pass private keys as plain-text CLI flags in deployed environments, including testnet and staging (e.g., `--private-key $KEY`). This pattern is acceptable only for local testing. Prefer encrypted keystores or interactive import (e.g., Foundry's `cast wallet import`) for any non-local deployment.\n- ALWAYS warn before interacting with unaudited or unknown contracts.\n\n### Best Practices\n\n- Arc Testnet is available by default in Viem -- a custom chain definition is NEVER required.\n- ALWAYS verify the user is on Arc (chain ID `5042002`) before submitting transactions.\n- ALWAYS fund the wallet from https:\u002F\u002Ffaucet.circle.com before sending transactions.\n- ALWAYS keep USDC amounts in the 6-decimal ERC-20 view for balances, transfers, and display; use 18-decimal native units ONLY for raw gas \u002F `msg.value` math. Never sum the two views or treat native and USDC as separate assets.\n- NEVER target mainnet -- Arc is testnet only.\n\n## Next Steps\n\nArc is natively supported across Circle's product suite. Once your app is running on Arc, you can extend it with any of the following:\n\n| Product | Skill | What It Does |\n|---------|-------|--------------|\n| **Wallets (overview)** | `use-circle-wallets` | Compare wallet types and choose the right one for your app |\n| **Modular Wallets** | `use-modular-wallets` | Passkey-authenticated smart accounts with gasless transactions and batch operations |\n| **User-Controlled Wallets** | `use-user-controlled-wallets` | Non-custodial wallets with social login, email OTP, and PIN authentication |\n| **Developer-Controlled Wallets** | `use-developer-controlled-wallets` | Custodial wallets your app manages on behalf of users |\n| **Smart Contract Platform** | `use-smart-contract-platform` | Deploy, interact with, and monitor smart contracts using audited templates or custom bytecode |\n| **CCTP Bridge** | `bridge-stablecoin` | Bridge USDC to and from Arc using Crosschain Transfer Protocol |\n| **Gateway** | `use-gateway` | Unified USDC balance across chains with instant crosschain transfers |\n\n## Reference Links\n\n- [Arc Docs](https:\u002F\u002Fdocs.arc.network\u002Fllms.txt) -- **Always read this first** when looking for relevant documentation from the source website.\n- [Arc Explorer](https:\u002F\u002Ftestnet.arcscan.app)\n- [Circle Faucet](https:\u002F\u002Ffaucet.circle.com)\n- [Circle Developer Docs](https:\u002F\u002Fdevelopers.circle.com\u002Fllms.txt) -- **Always read this first** when looking for relevant documentation from the source website.\n\n---\n\nDISCLAIMER: This skill is provided \"as is\" without warranties, is subject to the [Circle Developer Terms](https:\u002F\u002Fconsole.circle.com\u002Flegal\u002Fdeveloper-terms), and output generated may contain errors and\u002For include fee configuration options (including fees directed to Circle); additional details are in the repository [README](https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Fblob\u002Fmaster\u002FREADME.md).\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,55,61,68,83,89,144,150,156,308,314,385,391,584,590,596,609,851,857,993,999,1004,1078,1089,1095,1115,1121,1142,1147,1197,1202,1251,1257,1262,1463,1469,1525,1529,1551],{"type":41,"tag":42,"props":43,"children":45},"element","h2",{"id":44},"overview",[46],{"type":47,"value":48},"text","Overview",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"Arc is Circle's blockchain where USDC is the native gas token. Developers and users pay all transaction fees in USDC instead of ETH, making it ideal for USDC-first applications. Arc is EVM-compatible and supports standard Solidity tooling (Foundry, Hardhat, viem\u002Fwagmi).",{"type":41,"tag":42,"props":56,"children":58},{"id":57},"prerequisites-setup",[59],{"type":47,"value":60},"Prerequisites \u002F Setup",{"type":41,"tag":62,"props":63,"children":65},"h3",{"id":64},"wallet-funding",[66],{"type":47,"value":67},"Wallet Funding",{"type":41,"tag":50,"props":69,"children":70},{},[71,73,81],{"type":47,"value":72},"Get testnet USDC from ",{"type":41,"tag":74,"props":75,"children":79},"a",{"href":76,"rel":77},"https:\u002F\u002Ffaucet.circle.com",[78],"nofollow",[80],{"type":47,"value":76},{"type":47,"value":82}," before sending any transactions.",{"type":41,"tag":62,"props":84,"children":86},{"id":85},"environment-variables",[87],{"type":47,"value":88},"Environment Variables",{"type":41,"tag":90,"props":91,"children":96},"pre",{"className":92,"code":93,"language":94,"meta":95,"style":95},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","ARC_TESTNET_RPC_URL=https:\u002F\u002Frpc.testnet.arc.network\nPRIVATE_KEY=         # Deployer wallet private key\n","bash","",[97],{"type":41,"tag":98,"props":99,"children":100},"code",{"__ignoreMap":95},[101,125],{"type":41,"tag":102,"props":103,"children":106},"span",{"class":104,"line":105},"line",1,[107,113,119],{"type":41,"tag":102,"props":108,"children":110},{"style":109},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[111],{"type":47,"value":112},"ARC_TESTNET_RPC_URL",{"type":41,"tag":102,"props":114,"children":116},{"style":115},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[117],{"type":47,"value":118},"=",{"type":41,"tag":102,"props":120,"children":122},{"style":121},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[123],{"type":47,"value":124},"https:\u002F\u002Frpc.testnet.arc.network\n",{"type":41,"tag":102,"props":126,"children":128},{"class":104,"line":127},2,[129,134,138],{"type":41,"tag":102,"props":130,"children":131},{"style":109},[132],{"type":47,"value":133},"PRIVATE_KEY",{"type":41,"tag":102,"props":135,"children":136},{"style":115},[137],{"type":47,"value":118},{"type":41,"tag":102,"props":139,"children":141},{"style":140},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[142],{"type":47,"value":143},"         # Deployer wallet private key\n",{"type":41,"tag":42,"props":145,"children":147},{"id":146},"quick-reference",[148],{"type":47,"value":149},"Quick Reference",{"type":41,"tag":62,"props":151,"children":153},{"id":152},"network-details",[154],{"type":47,"value":155},"Network Details",{"type":41,"tag":157,"props":158,"children":159},"table",{},[160,179],{"type":41,"tag":161,"props":162,"children":163},"thead",{},[164],{"type":41,"tag":165,"props":166,"children":167},"tr",{},[168,174],{"type":41,"tag":169,"props":170,"children":171},"th",{},[172],{"type":47,"value":173},"Field",{"type":41,"tag":169,"props":175,"children":176},{},[177],{"type":47,"value":178},"Value",{"type":41,"tag":180,"props":181,"children":182},"tbody",{},[183,197,224,241,258,275,291],{"type":41,"tag":165,"props":184,"children":185},{},[186,192],{"type":41,"tag":187,"props":188,"children":189},"td",{},[190],{"type":47,"value":191},"Network",{"type":41,"tag":187,"props":193,"children":194},{},[195],{"type":47,"value":196},"Arc Testnet",{"type":41,"tag":165,"props":198,"children":199},{},[200,205],{"type":41,"tag":187,"props":201,"children":202},{},[203],{"type":47,"value":204},"Chain ID",{"type":41,"tag":187,"props":206,"children":207},{},[208,214,216,222],{"type":41,"tag":98,"props":209,"children":211},{"className":210},[],[212],{"type":47,"value":213},"5042002",{"type":47,"value":215}," (hex: ",{"type":41,"tag":98,"props":217,"children":219},{"className":218},[],[220],{"type":47,"value":221},"0x4CEF52",{"type":47,"value":223},")",{"type":41,"tag":165,"props":225,"children":226},{},[227,232],{"type":41,"tag":187,"props":228,"children":229},{},[230],{"type":47,"value":231},"RPC",{"type":41,"tag":187,"props":233,"children":234},{},[235],{"type":41,"tag":98,"props":236,"children":238},{"className":237},[],[239],{"type":47,"value":240},"https:\u002F\u002Frpc.testnet.arc.network",{"type":41,"tag":165,"props":242,"children":243},{},[244,249],{"type":41,"tag":187,"props":245,"children":246},{},[247],{"type":47,"value":248},"WebSocket",{"type":41,"tag":187,"props":250,"children":251},{},[252],{"type":41,"tag":98,"props":253,"children":255},{"className":254},[],[256],{"type":47,"value":257},"wss:\u002F\u002Frpc.testnet.arc.network",{"type":41,"tag":165,"props":259,"children":260},{},[261,266],{"type":41,"tag":187,"props":262,"children":263},{},[264],{"type":47,"value":265},"Explorer",{"type":41,"tag":187,"props":267,"children":268},{},[269],{"type":41,"tag":74,"props":270,"children":273},{"href":271,"rel":272},"https:\u002F\u002Ftestnet.arcscan.app",[78],[274],{"type":47,"value":271},{"type":41,"tag":165,"props":276,"children":277},{},[278,283],{"type":41,"tag":187,"props":279,"children":280},{},[281],{"type":47,"value":282},"Faucet",{"type":41,"tag":187,"props":284,"children":285},{},[286],{"type":41,"tag":74,"props":287,"children":289},{"href":76,"rel":288},[78],[290],{"type":47,"value":76},{"type":41,"tag":165,"props":292,"children":293},{},[294,299],{"type":41,"tag":187,"props":295,"children":296},{},[297],{"type":47,"value":298},"CCTP Domain",{"type":41,"tag":187,"props":300,"children":301},{},[302],{"type":41,"tag":98,"props":303,"children":305},{"className":304},[],[306],{"type":47,"value":307},"26",{"type":41,"tag":62,"props":309,"children":311},{"id":310},"token-addresses-for-arc",[312],{"type":47,"value":313},"Token Addresses for Arc",{"type":41,"tag":157,"props":315,"children":316},{},[317,338],{"type":41,"tag":161,"props":318,"children":319},{},[320],{"type":41,"tag":165,"props":321,"children":322},{},[323,328,333],{"type":41,"tag":169,"props":324,"children":325},{},[326],{"type":47,"value":327},"Token",{"type":41,"tag":169,"props":329,"children":330},{},[331],{"type":47,"value":332},"Address",{"type":41,"tag":169,"props":334,"children":335},{},[336],{"type":47,"value":337},"Decimals",{"type":41,"tag":180,"props":339,"children":340},{},[341,363],{"type":41,"tag":165,"props":342,"children":343},{},[344,349,358],{"type":41,"tag":187,"props":345,"children":346},{},[347],{"type":47,"value":348},"USDC",{"type":41,"tag":187,"props":350,"children":351},{},[352],{"type":41,"tag":98,"props":353,"children":355},{"className":354},[],[356],{"type":47,"value":357},"0x3600000000000000000000000000000000000000",{"type":41,"tag":187,"props":359,"children":360},{},[361],{"type":47,"value":362},"6 (ERC-20)",{"type":41,"tag":165,"props":364,"children":365},{},[366,371,380],{"type":41,"tag":187,"props":367,"children":368},{},[369],{"type":47,"value":370},"EURC",{"type":41,"tag":187,"props":372,"children":373},{},[374],{"type":41,"tag":98,"props":375,"children":377},{"className":376},[],[378],{"type":47,"value":379},"0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a",{"type":41,"tag":187,"props":381,"children":382},{},[383],{"type":47,"value":384},"6",{"type":41,"tag":42,"props":386,"children":388},{"id":387},"core-concepts",[389],{"type":47,"value":390},"Core Concepts",{"type":41,"tag":392,"props":393,"children":394},"ul",{},[395,476,564,574],{"type":41,"tag":396,"props":397,"children":398},"li",{},[399,405,407,413,415],{"type":41,"tag":400,"props":401,"children":402},"strong",{},[403],{"type":47,"value":404},"Native gas IS USDC — one balance, two interfaces (not two assets)",{"type":47,"value":406},": On Arc the native gas asset is USDC itself. The native view and the USDC ERC-20 are the ",{"type":41,"tag":408,"props":409,"children":410},"em",{},[411],{"type":47,"value":412},"same",{"type":47,"value":414}," pool of funds, exposed two ways — NOT a separate \"native token\" plus a separate \"USDC token\". Drop the ETH-style mental model from other chains.\n",{"type":41,"tag":392,"props":416,"children":417},{},[418,459],{"type":41,"tag":396,"props":419,"children":420},{},[421,426,428,434,436,442,444,450,452,457],{"type":41,"tag":400,"props":422,"children":423},{},[424],{"type":47,"value":425},"Native view",{"type":47,"value":427},": 18 decimals. Used only for gas and ",{"type":41,"tag":98,"props":429,"children":431},{"className":430},[],[432],{"type":47,"value":433},"msg.value",{"type":47,"value":435},". wagmi ",{"type":41,"tag":98,"props":437,"children":439},{"className":438},[],[440],{"type":47,"value":441},"useBalance",{"type":47,"value":443}," returns this (its ",{"type":41,"tag":98,"props":445,"children":447},{"className":446},[],[448],{"type":47,"value":449},"symbol",{"type":47,"value":451}," is ",{"type":41,"tag":98,"props":453,"children":455},{"className":454},[],[456],{"type":47,"value":348},{"type":47,"value":458},").",{"type":41,"tag":396,"props":460,"children":461},{},[462,467,469,474],{"type":41,"tag":400,"props":463,"children":464},{},[465],{"type":47,"value":466},"ERC-20 view",{"type":47,"value":468},": 6 decimals, at ",{"type":41,"tag":98,"props":470,"children":472},{"className":471},[],[473],{"type":47,"value":357},{"type":47,"value":475},". Use this for all balances, transfers, approvals, and display.",{"type":41,"tag":396,"props":477,"children":478},{},[479,484,486],{"type":41,"tag":400,"props":480,"children":481},{},[482],{"type":47,"value":483},"Never double-count, convert, or swap between the two views",{"type":47,"value":485},":\n",{"type":41,"tag":392,"props":487,"children":488},{},[489,494,507,543],{"type":41,"tag":396,"props":490,"children":491},{},[492],{"type":47,"value":493},"NEVER read the native balance and the USDC ERC-20 balance and add or show them separately — that double-counts one pool. Show a single USDC balance (the 6-decimal ERC-20 view).",{"type":41,"tag":396,"props":495,"children":496},{},[497,499,505],{"type":47,"value":498},"USDC ↔ native is NOT a swap or conversion — it is the same asset. Detect and reject any ",{"type":41,"tag":98,"props":500,"children":502},{"className":501},[],[503],{"type":47,"value":504},"USDC → native",{"type":47,"value":506}," (or reverse) operation before fee\u002Frouting logic.",{"type":41,"tag":396,"props":508,"children":509},{},[510,512,518,520,526,528,534,535,541],{"type":47,"value":511},"NEVER call ",{"type":41,"tag":98,"props":513,"children":515},{"className":514},[],[516],{"type":47,"value":517},"decimals()",{"type":47,"value":519}," on a native sentinel address (",{"type":41,"tag":98,"props":521,"children":523},{"className":522},[],[524],{"type":47,"value":525},"NATIVE",{"type":47,"value":527},", ",{"type":41,"tag":98,"props":529,"children":531},{"className":530},[],[532],{"type":47,"value":533},"0xEeee…eEEeE",{"type":47,"value":527},{"type":41,"tag":98,"props":536,"children":538},{"className":537},[],[539],{"type":47,"value":540},"0x0000…0000",{"type":47,"value":542},") — those are not ERC-20 contracts and the call reverts. The ERC-20 is 6 decimals; native is 18.",{"type":41,"tag":396,"props":544,"children":545},{},[546,548,554,556,562],{"type":47,"value":547},"The two views differ by a factor of 10^12 (",{"type":41,"tag":98,"props":549,"children":551},{"className":550},[],[552],{"type":47,"value":553},"1e18",{"type":47,"value":555}," native = ",{"type":41,"tag":98,"props":557,"children":559},{"className":558},[],[560],{"type":47,"value":561},"1e6",{"type":47,"value":563}," ERC-20). Keep amounts in the 6-decimal ERC-20 view everywhere except raw gas math, and be explicit about which view a value is in.",{"type":41,"tag":396,"props":565,"children":566},{},[567,572],{"type":41,"tag":400,"props":568,"children":569},{},[570],{"type":47,"value":571},"Testnet only",{"type":47,"value":573},": Arc is currently in testnet. All addresses and configuration apply to testnet only.",{"type":41,"tag":396,"props":575,"children":576},{},[577,582],{"type":41,"tag":400,"props":578,"children":579},{},[580],{"type":47,"value":581},"EVM-compatible",{"type":47,"value":583},": Standard Solidity contracts, Foundry, Hardhat, viem, and wagmi all work on Arc without modification beyond chain configuration.",{"type":41,"tag":42,"props":585,"children":587},{"id":586},"implementation-patterns",[588],{"type":47,"value":589},"Implementation Patterns",{"type":41,"tag":62,"props":591,"children":593},{"id":592},"_1-frontend-app-react-wagmi",[594],{"type":47,"value":595},"1. Frontend App (React + wagmi)",{"type":41,"tag":50,"props":597,"children":598},{},[599,601,607],{"type":47,"value":600},"Use the ",{"type":41,"tag":98,"props":602,"children":604},{"className":603},[],[605],{"type":47,"value":606},"arcTestnet",{"type":47,"value":608}," chain definition from Prerequisites \u002F Setup. Pass it to your wagmi config:",{"type":41,"tag":90,"props":610,"children":614},{"className":611,"code":612,"language":613,"meta":95,"style":95},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { createConfig, http } from 'wagmi'\nimport { arcTestnet } from 'viem\u002Fchains'\n\nconst config = createConfig({\n  chains: [arcTestnet],\n  transports: { [arcTestnet.id]: http() },\n})\n","typescript",[615],{"type":41,"tag":98,"props":616,"children":617},{"__ignoreMap":95},[618,672,709,719,753,778,837],{"type":41,"tag":102,"props":619,"children":620},{"class":104,"line":105},[621,627,632,637,642,647,652,657,662,667],{"type":41,"tag":102,"props":622,"children":624},{"style":623},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[625],{"type":47,"value":626},"import",{"type":41,"tag":102,"props":628,"children":629},{"style":115},[630],{"type":47,"value":631}," {",{"type":41,"tag":102,"props":633,"children":634},{"style":109},[635],{"type":47,"value":636}," createConfig",{"type":41,"tag":102,"props":638,"children":639},{"style":115},[640],{"type":47,"value":641},",",{"type":41,"tag":102,"props":643,"children":644},{"style":109},[645],{"type":47,"value":646}," http",{"type":41,"tag":102,"props":648,"children":649},{"style":115},[650],{"type":47,"value":651}," }",{"type":41,"tag":102,"props":653,"children":654},{"style":623},[655],{"type":47,"value":656}," from",{"type":41,"tag":102,"props":658,"children":659},{"style":115},[660],{"type":47,"value":661}," '",{"type":41,"tag":102,"props":663,"children":664},{"style":121},[665],{"type":47,"value":666},"wagmi",{"type":41,"tag":102,"props":668,"children":669},{"style":115},[670],{"type":47,"value":671},"'\n",{"type":41,"tag":102,"props":673,"children":674},{"class":104,"line":127},[675,679,683,688,692,696,700,705],{"type":41,"tag":102,"props":676,"children":677},{"style":623},[678],{"type":47,"value":626},{"type":41,"tag":102,"props":680,"children":681},{"style":115},[682],{"type":47,"value":631},{"type":41,"tag":102,"props":684,"children":685},{"style":109},[686],{"type":47,"value":687}," arcTestnet",{"type":41,"tag":102,"props":689,"children":690},{"style":115},[691],{"type":47,"value":651},{"type":41,"tag":102,"props":693,"children":694},{"style":623},[695],{"type":47,"value":656},{"type":41,"tag":102,"props":697,"children":698},{"style":115},[699],{"type":47,"value":661},{"type":41,"tag":102,"props":701,"children":702},{"style":121},[703],{"type":47,"value":704},"viem\u002Fchains",{"type":41,"tag":102,"props":706,"children":707},{"style":115},[708],{"type":47,"value":671},{"type":41,"tag":102,"props":710,"children":712},{"class":104,"line":711},3,[713],{"type":41,"tag":102,"props":714,"children":716},{"emptyLinePlaceholder":715},true,[717],{"type":47,"value":718},"\n",{"type":41,"tag":102,"props":720,"children":722},{"class":104,"line":721},4,[723,729,734,738,743,748],{"type":41,"tag":102,"props":724,"children":726},{"style":725},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[727],{"type":47,"value":728},"const",{"type":41,"tag":102,"props":730,"children":731},{"style":109},[732],{"type":47,"value":733}," config ",{"type":41,"tag":102,"props":735,"children":736},{"style":115},[737],{"type":47,"value":118},{"type":41,"tag":102,"props":739,"children":741},{"style":740},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[742],{"type":47,"value":636},{"type":41,"tag":102,"props":744,"children":745},{"style":109},[746],{"type":47,"value":747},"(",{"type":41,"tag":102,"props":749,"children":750},{"style":115},[751],{"type":47,"value":752},"{\n",{"type":41,"tag":102,"props":754,"children":756},{"class":104,"line":755},5,[757,763,768,773],{"type":41,"tag":102,"props":758,"children":760},{"style":759},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[761],{"type":47,"value":762},"  chains",{"type":41,"tag":102,"props":764,"children":765},{"style":115},[766],{"type":47,"value":767},":",{"type":41,"tag":102,"props":769,"children":770},{"style":109},[771],{"type":47,"value":772}," [arcTestnet]",{"type":41,"tag":102,"props":774,"children":775},{"style":115},[776],{"type":47,"value":777},",\n",{"type":41,"tag":102,"props":779,"children":781},{"class":104,"line":780},6,[782,787,791,795,800,804,809,814,819,823,827,832],{"type":41,"tag":102,"props":783,"children":784},{"style":759},[785],{"type":47,"value":786},"  transports",{"type":41,"tag":102,"props":788,"children":789},{"style":115},[790],{"type":47,"value":767},{"type":41,"tag":102,"props":792,"children":793},{"style":115},[794],{"type":47,"value":631},{"type":41,"tag":102,"props":796,"children":797},{"style":759},[798],{"type":47,"value":799}," [",{"type":41,"tag":102,"props":801,"children":802},{"style":109},[803],{"type":47,"value":606},{"type":41,"tag":102,"props":805,"children":806},{"style":115},[807],{"type":47,"value":808},".",{"type":41,"tag":102,"props":810,"children":811},{"style":109},[812],{"type":47,"value":813},"id",{"type":41,"tag":102,"props":815,"children":816},{"style":759},[817],{"type":47,"value":818},"]",{"type":41,"tag":102,"props":820,"children":821},{"style":115},[822],{"type":47,"value":767},{"type":41,"tag":102,"props":824,"children":825},{"style":740},[826],{"type":47,"value":646},{"type":41,"tag":102,"props":828,"children":829},{"style":109},[830],{"type":47,"value":831},"() ",{"type":41,"tag":102,"props":833,"children":834},{"style":115},[835],{"type":47,"value":836},"},\n",{"type":41,"tag":102,"props":838,"children":840},{"class":104,"line":839},7,[841,846],{"type":41,"tag":102,"props":842,"children":843},{"style":115},[844],{"type":47,"value":845},"}",{"type":41,"tag":102,"props":847,"children":848},{"style":109},[849],{"type":47,"value":850},")\n",{"type":41,"tag":62,"props":852,"children":854},{"id":853},"_2-smart-contracts-foundry",[855],{"type":47,"value":856},"2. Smart Contracts (Foundry)",{"type":41,"tag":90,"props":858,"children":860},{"className":92,"code":859,"language":94,"meta":95,"style":95},"# Install Foundry\ncurl -L https:\u002F\u002Ffoundry.paradigm.xyz | bash && foundryup\n\n# Deploy\n# For local testing only - never pass private keys as CLI flags in deployed environments (including testnet\u002Fstaging)\nforge create src\u002FMyContract.sol:MyContract \\\n  --rpc-url $ARC_TESTNET_RPC_URL \\\n  --private-key $PRIVATE_KEY \\\n  --broadcast\n",[861],{"type":41,"tag":98,"props":862,"children":863},{"__ignoreMap":95},[864,872,911,918,926,934,957,970,984],{"type":41,"tag":102,"props":865,"children":866},{"class":104,"line":105},[867],{"type":41,"tag":102,"props":868,"children":869},{"style":140},[870],{"type":47,"value":871},"# Install Foundry\n",{"type":41,"tag":102,"props":873,"children":874},{"class":104,"line":127},[875,881,886,891,896,901,906],{"type":41,"tag":102,"props":876,"children":878},{"style":877},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[879],{"type":47,"value":880},"curl",{"type":41,"tag":102,"props":882,"children":883},{"style":121},[884],{"type":47,"value":885}," -L",{"type":41,"tag":102,"props":887,"children":888},{"style":121},[889],{"type":47,"value":890}," https:\u002F\u002Ffoundry.paradigm.xyz",{"type":41,"tag":102,"props":892,"children":893},{"style":115},[894],{"type":47,"value":895}," |",{"type":41,"tag":102,"props":897,"children":898},{"style":877},[899],{"type":47,"value":900}," bash",{"type":41,"tag":102,"props":902,"children":903},{"style":115},[904],{"type":47,"value":905}," &&",{"type":41,"tag":102,"props":907,"children":908},{"style":877},[909],{"type":47,"value":910}," foundryup\n",{"type":41,"tag":102,"props":912,"children":913},{"class":104,"line":711},[914],{"type":41,"tag":102,"props":915,"children":916},{"emptyLinePlaceholder":715},[917],{"type":47,"value":718},{"type":41,"tag":102,"props":919,"children":920},{"class":104,"line":721},[921],{"type":41,"tag":102,"props":922,"children":923},{"style":140},[924],{"type":47,"value":925},"# Deploy\n",{"type":41,"tag":102,"props":927,"children":928},{"class":104,"line":755},[929],{"type":41,"tag":102,"props":930,"children":931},{"style":140},[932],{"type":47,"value":933},"# For local testing only - never pass private keys as CLI flags in deployed environments (including testnet\u002Fstaging)\n",{"type":41,"tag":102,"props":935,"children":936},{"class":104,"line":780},[937,942,947,952],{"type":41,"tag":102,"props":938,"children":939},{"style":877},[940],{"type":47,"value":941},"forge",{"type":41,"tag":102,"props":943,"children":944},{"style":121},[945],{"type":47,"value":946}," create",{"type":41,"tag":102,"props":948,"children":949},{"style":121},[950],{"type":47,"value":951}," src\u002FMyContract.sol:MyContract",{"type":41,"tag":102,"props":953,"children":954},{"style":109},[955],{"type":47,"value":956}," \\\n",{"type":41,"tag":102,"props":958,"children":959},{"class":104,"line":839},[960,965],{"type":41,"tag":102,"props":961,"children":962},{"style":121},[963],{"type":47,"value":964},"  --rpc-url",{"type":41,"tag":102,"props":966,"children":967},{"style":109},[968],{"type":47,"value":969}," $ARC_TESTNET_RPC_URL \\\n",{"type":41,"tag":102,"props":971,"children":973},{"class":104,"line":972},8,[974,979],{"type":41,"tag":102,"props":975,"children":976},{"style":121},[977],{"type":47,"value":978},"  --private-key",{"type":41,"tag":102,"props":980,"children":981},{"style":109},[982],{"type":47,"value":983}," $PRIVATE_KEY \\\n",{"type":41,"tag":102,"props":985,"children":987},{"class":104,"line":986},9,[988],{"type":41,"tag":102,"props":989,"children":990},{"style":121},[991],{"type":47,"value":992},"  --broadcast\n",{"type":41,"tag":62,"props":994,"children":996},{"id":995},"_3-circle-contracts-pre-audited-templates",[997],{"type":47,"value":998},"3. Circle Contracts (Pre-audited Templates)",{"type":41,"tag":50,"props":1000,"children":1001},{},[1002],{"type":47,"value":1003},"Deploy via Circle's Smart Contract Platform API:",{"type":41,"tag":157,"props":1005,"children":1006},{},[1007,1023],{"type":41,"tag":161,"props":1008,"children":1009},{},[1010],{"type":41,"tag":165,"props":1011,"children":1012},{},[1013,1018],{"type":41,"tag":169,"props":1014,"children":1015},{},[1016],{"type":47,"value":1017},"Template",{"type":41,"tag":169,"props":1019,"children":1020},{},[1021],{"type":47,"value":1022},"Use Case",{"type":41,"tag":180,"props":1024,"children":1025},{},[1026,1039,1052,1065],{"type":41,"tag":165,"props":1027,"children":1028},{},[1029,1034],{"type":41,"tag":187,"props":1030,"children":1031},{},[1032],{"type":47,"value":1033},"ERC-20",{"type":41,"tag":187,"props":1035,"children":1036},{},[1037],{"type":47,"value":1038},"Fungible tokens",{"type":41,"tag":165,"props":1040,"children":1041},{},[1042,1047],{"type":41,"tag":187,"props":1043,"children":1044},{},[1045],{"type":47,"value":1046},"ERC-721",{"type":41,"tag":187,"props":1048,"children":1049},{},[1050],{"type":47,"value":1051},"NFTs, unique assets",{"type":41,"tag":165,"props":1053,"children":1054},{},[1055,1060],{"type":41,"tag":187,"props":1056,"children":1057},{},[1058],{"type":47,"value":1059},"ERC-1155",{"type":41,"tag":187,"props":1061,"children":1062},{},[1063],{"type":47,"value":1064},"Multi-token collections",{"type":41,"tag":165,"props":1066,"children":1067},{},[1068,1073],{"type":41,"tag":187,"props":1069,"children":1070},{},[1071],{"type":47,"value":1072},"Airdrop",{"type":41,"tag":187,"props":1074,"children":1075},{},[1076],{"type":47,"value":1077},"Token distribution",{"type":41,"tag":50,"props":1079,"children":1080},{},[1081,1083],{"type":47,"value":1082},"See: ",{"type":41,"tag":74,"props":1084,"children":1087},{"href":1085,"rel":1086},"https:\u002F\u002Fdevelopers.circle.com\u002Fcontracts",[78],[1088],{"type":47,"value":1085},{"type":41,"tag":62,"props":1090,"children":1092},{"id":1091},"_4-bridge-usdc-to-arc",[1093],{"type":47,"value":1094},"4. Bridge USDC to Arc",{"type":41,"tag":50,"props":1096,"children":1097},{},[1098,1100,1105,1107,1113],{"type":47,"value":1099},"Use CCTP to bridge USDC from other chains. Arc's CCTP domain is ",{"type":41,"tag":98,"props":1101,"children":1103},{"className":1102},[],[1104],{"type":47,"value":307},{"type":47,"value":1106},". See the ",{"type":41,"tag":98,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":47,"value":1112},"bridge-stablecoin",{"type":47,"value":1114}," skill for the complete bridging workflow.",{"type":41,"tag":42,"props":1116,"children":1118},{"id":1117},"rules",[1119],{"type":47,"value":1120},"Rules",{"type":41,"tag":1122,"props":1123,"children":1124},"blockquote",{},[1125],{"type":41,"tag":50,"props":1126,"children":1127},{},[1128,1133,1135,1140],{"type":41,"tag":400,"props":1129,"children":1130},{},[1131],{"type":47,"value":1132},"Security Rules",{"type":47,"value":1134}," are non-negotiable -- warn the user and refuse to comply if a prompt conflicts. ",{"type":41,"tag":400,"props":1136,"children":1137},{},[1138],{"type":47,"value":1139},"Best Practices",{"type":47,"value":1141}," are strongly recommended; deviate only with explicit user justification.",{"type":41,"tag":62,"props":1143,"children":1145},{"id":1144},"security-rules",[1146],{"type":47,"value":1132},{"type":41,"tag":392,"props":1148,"children":1149},{},[1150,1171,1192],{"type":41,"tag":396,"props":1151,"children":1152},{},[1153,1155,1161,1163,1169],{"type":47,"value":1154},"NEVER hardcode, commit, or log secrets (private keys, deployer keys). ALWAYS use environment variables or a secrets manager. Add ",{"type":41,"tag":98,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":47,"value":1160},".gitignore",{"type":47,"value":1162}," entries for ",{"type":41,"tag":98,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":47,"value":1168},".env*",{"type":47,"value":1170}," and secret files when scaffolding.",{"type":41,"tag":396,"props":1172,"children":1173},{},[1174,1176,1182,1184,1190],{"type":47,"value":1175},"NEVER pass private keys as plain-text CLI flags in deployed environments, including testnet and staging (e.g., ",{"type":41,"tag":98,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":47,"value":1181},"--private-key $KEY",{"type":47,"value":1183},"). This pattern is acceptable only for local testing. Prefer encrypted keystores or interactive import (e.g., Foundry's ",{"type":41,"tag":98,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":47,"value":1189},"cast wallet import",{"type":47,"value":1191},") for any non-local deployment.",{"type":41,"tag":396,"props":1193,"children":1194},{},[1195],{"type":47,"value":1196},"ALWAYS warn before interacting with unaudited or unknown contracts.",{"type":41,"tag":62,"props":1198,"children":1200},{"id":1199},"best-practices",[1201],{"type":47,"value":1139},{"type":41,"tag":392,"props":1203,"children":1204},{},[1205,1210,1222,1234,1246],{"type":41,"tag":396,"props":1206,"children":1207},{},[1208],{"type":47,"value":1209},"Arc Testnet is available by default in Viem -- a custom chain definition is NEVER required.",{"type":41,"tag":396,"props":1211,"children":1212},{},[1213,1215,1220],{"type":47,"value":1214},"ALWAYS verify the user is on Arc (chain ID ",{"type":41,"tag":98,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":47,"value":213},{"type":47,"value":1221},") before submitting transactions.",{"type":41,"tag":396,"props":1223,"children":1224},{},[1225,1227,1232],{"type":47,"value":1226},"ALWAYS fund the wallet from ",{"type":41,"tag":74,"props":1228,"children":1230},{"href":76,"rel":1229},[78],[1231],{"type":47,"value":76},{"type":47,"value":1233}," before sending transactions.",{"type":41,"tag":396,"props":1235,"children":1236},{},[1237,1239,1244],{"type":47,"value":1238},"ALWAYS keep USDC amounts in the 6-decimal ERC-20 view for balances, transfers, and display; use 18-decimal native units ONLY for raw gas \u002F ",{"type":41,"tag":98,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":47,"value":433},{"type":47,"value":1245}," math. Never sum the two views or treat native and USDC as separate assets.",{"type":41,"tag":396,"props":1247,"children":1248},{},[1249],{"type":47,"value":1250},"NEVER target mainnet -- Arc is testnet only.",{"type":41,"tag":42,"props":1252,"children":1254},{"id":1253},"next-steps",[1255],{"type":47,"value":1256},"Next Steps",{"type":41,"tag":50,"props":1258,"children":1259},{},[1260],{"type":47,"value":1261},"Arc is natively supported across Circle's product suite. Once your app is running on Arc, you can extend it with any of the following:",{"type":41,"tag":157,"props":1263,"children":1264},{},[1265,1286],{"type":41,"tag":161,"props":1266,"children":1267},{},[1268],{"type":41,"tag":165,"props":1269,"children":1270},{},[1271,1276,1281],{"type":41,"tag":169,"props":1272,"children":1273},{},[1274],{"type":47,"value":1275},"Product",{"type":41,"tag":169,"props":1277,"children":1278},{},[1279],{"type":47,"value":1280},"Skill",{"type":41,"tag":169,"props":1282,"children":1283},{},[1284],{"type":47,"value":1285},"What It Does",{"type":41,"tag":180,"props":1287,"children":1288},{},[1289,1314,1339,1364,1389,1414,1438],{"type":41,"tag":165,"props":1290,"children":1291},{},[1292,1300,1309],{"type":41,"tag":187,"props":1293,"children":1294},{},[1295],{"type":41,"tag":400,"props":1296,"children":1297},{},[1298],{"type":47,"value":1299},"Wallets (overview)",{"type":41,"tag":187,"props":1301,"children":1302},{},[1303],{"type":41,"tag":98,"props":1304,"children":1306},{"className":1305},[],[1307],{"type":47,"value":1308},"use-circle-wallets",{"type":41,"tag":187,"props":1310,"children":1311},{},[1312],{"type":47,"value":1313},"Compare wallet types and choose the right one for your app",{"type":41,"tag":165,"props":1315,"children":1316},{},[1317,1325,1334],{"type":41,"tag":187,"props":1318,"children":1319},{},[1320],{"type":41,"tag":400,"props":1321,"children":1322},{},[1323],{"type":47,"value":1324},"Modular Wallets",{"type":41,"tag":187,"props":1326,"children":1327},{},[1328],{"type":41,"tag":98,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":47,"value":1333},"use-modular-wallets",{"type":41,"tag":187,"props":1335,"children":1336},{},[1337],{"type":47,"value":1338},"Passkey-authenticated smart accounts with gasless transactions and batch operations",{"type":41,"tag":165,"props":1340,"children":1341},{},[1342,1350,1359],{"type":41,"tag":187,"props":1343,"children":1344},{},[1345],{"type":41,"tag":400,"props":1346,"children":1347},{},[1348],{"type":47,"value":1349},"User-Controlled Wallets",{"type":41,"tag":187,"props":1351,"children":1352},{},[1353],{"type":41,"tag":98,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":47,"value":1358},"use-user-controlled-wallets",{"type":41,"tag":187,"props":1360,"children":1361},{},[1362],{"type":47,"value":1363},"Non-custodial wallets with social login, email OTP, and PIN authentication",{"type":41,"tag":165,"props":1365,"children":1366},{},[1367,1375,1384],{"type":41,"tag":187,"props":1368,"children":1369},{},[1370],{"type":41,"tag":400,"props":1371,"children":1372},{},[1373],{"type":47,"value":1374},"Developer-Controlled Wallets",{"type":41,"tag":187,"props":1376,"children":1377},{},[1378],{"type":41,"tag":98,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":47,"value":1383},"use-developer-controlled-wallets",{"type":41,"tag":187,"props":1385,"children":1386},{},[1387],{"type":47,"value":1388},"Custodial wallets your app manages on behalf of users",{"type":41,"tag":165,"props":1390,"children":1391},{},[1392,1400,1409],{"type":41,"tag":187,"props":1393,"children":1394},{},[1395],{"type":41,"tag":400,"props":1396,"children":1397},{},[1398],{"type":47,"value":1399},"Smart Contract Platform",{"type":41,"tag":187,"props":1401,"children":1402},{},[1403],{"type":41,"tag":98,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":47,"value":1408},"use-smart-contract-platform",{"type":41,"tag":187,"props":1410,"children":1411},{},[1412],{"type":47,"value":1413},"Deploy, interact with, and monitor smart contracts using audited templates or custom bytecode",{"type":41,"tag":165,"props":1415,"children":1416},{},[1417,1425,1433],{"type":41,"tag":187,"props":1418,"children":1419},{},[1420],{"type":41,"tag":400,"props":1421,"children":1422},{},[1423],{"type":47,"value":1424},"CCTP Bridge",{"type":41,"tag":187,"props":1426,"children":1427},{},[1428],{"type":41,"tag":98,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":47,"value":1112},{"type":41,"tag":187,"props":1434,"children":1435},{},[1436],{"type":47,"value":1437},"Bridge USDC to and from Arc using Crosschain Transfer Protocol",{"type":41,"tag":165,"props":1439,"children":1440},{},[1441,1449,1458],{"type":41,"tag":187,"props":1442,"children":1443},{},[1444],{"type":41,"tag":400,"props":1445,"children":1446},{},[1447],{"type":47,"value":1448},"Gateway",{"type":41,"tag":187,"props":1450,"children":1451},{},[1452],{"type":41,"tag":98,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":47,"value":1457},"use-gateway",{"type":41,"tag":187,"props":1459,"children":1460},{},[1461],{"type":47,"value":1462},"Unified USDC balance across chains with instant crosschain transfers",{"type":41,"tag":42,"props":1464,"children":1466},{"id":1465},"reference-links",[1467],{"type":47,"value":1468},"Reference Links",{"type":41,"tag":392,"props":1470,"children":1471},{},[1472,1491,1500,1509],{"type":41,"tag":396,"props":1473,"children":1474},{},[1475,1482,1484,1489],{"type":41,"tag":74,"props":1476,"children":1479},{"href":1477,"rel":1478},"https:\u002F\u002Fdocs.arc.network\u002Fllms.txt",[78],[1480],{"type":47,"value":1481},"Arc Docs",{"type":47,"value":1483}," -- ",{"type":41,"tag":400,"props":1485,"children":1486},{},[1487],{"type":47,"value":1488},"Always read this first",{"type":47,"value":1490}," when looking for relevant documentation from the source website.",{"type":41,"tag":396,"props":1492,"children":1493},{},[1494],{"type":41,"tag":74,"props":1495,"children":1497},{"href":271,"rel":1496},[78],[1498],{"type":47,"value":1499},"Arc Explorer",{"type":41,"tag":396,"props":1501,"children":1502},{},[1503],{"type":41,"tag":74,"props":1504,"children":1506},{"href":76,"rel":1505},[78],[1507],{"type":47,"value":1508},"Circle Faucet",{"type":41,"tag":396,"props":1510,"children":1511},{},[1512,1519,1520,1524],{"type":41,"tag":74,"props":1513,"children":1516},{"href":1514,"rel":1515},"https:\u002F\u002Fdevelopers.circle.com\u002Fllms.txt",[78],[1517],{"type":47,"value":1518},"Circle Developer Docs",{"type":47,"value":1483},{"type":41,"tag":400,"props":1521,"children":1522},{},[1523],{"type":47,"value":1488},{"type":47,"value":1490},{"type":41,"tag":1526,"props":1527,"children":1528},"hr",{},[],{"type":41,"tag":50,"props":1530,"children":1531},{},[1532,1534,1541,1543,1550],{"type":47,"value":1533},"DISCLAIMER: This skill is provided \"as is\" without warranties, is subject to the ",{"type":41,"tag":74,"props":1535,"children":1538},{"href":1536,"rel":1537},"https:\u002F\u002Fconsole.circle.com\u002Flegal\u002Fdeveloper-terms",[78],[1539],{"type":47,"value":1540},"Circle Developer Terms",{"type":47,"value":1542},", and output generated may contain errors and\u002For include fee configuration options (including fees directed to Circle); additional details are in the repository ",{"type":41,"tag":74,"props":1544,"children":1547},{"href":1545,"rel":1546},"https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Fblob\u002Fmaster\u002FREADME.md",[78],[1548],{"type":47,"value":1549},"README",{"type":47,"value":808},{"type":41,"tag":1552,"props":1553,"children":1554},"style",{},[1555],{"type":47,"value":1556},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1558,"total":1697},[1559,1573,1588,1600,1611,1624,1635,1646,1660,1667,1678,1688],{"slug":1560,"name":1560,"fn":1561,"description":1562,"org":1563,"tags":1564,"stars":24,"repoUrl":25,"updatedAt":1572},"accept-agent-payments","monetize agent resources with Circle payments","Use when a developer wants to monetize an API, endpoint, service, model, dataset, tool, or agent-facing resource with Circle USDC pay-per-call payments, Gateway Nanopayments, x402, HTTP 402, or Agent Marketplace listing. Triggers on: charge agents, sell to agents, paid API, monetize endpoint, micropayments, nanopayments seller, x402 seller, accept USDC, service listing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1565,1568,1569,1570],{"name":1566,"slug":1567,"type":16},"API Development","api-development",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1571,"slug":1571,"type":16},"x402","2026-07-12T08:15:01.981685",{"slug":1574,"name":1574,"fn":1575,"description":1576,"org":1577,"tags":1578,"stars":24,"repoUrl":25,"updatedAt":1587},"agent-wallet-policy","inspect Circle agent wallet spending policies","View spending policy on a Circle agent wallet — per-transaction, daily, weekly, and monthly USDC caps via the `circle` CLI. Use when the user wants to inspect current limits. Setting or resetting limits requires OTP confirmation in an interactive terminal session — the agent hands the user a verbatim command to run themselves; the OTP must never pass through agent storage. Mainnet-only — testnet chains are rejected. Triggers on: spending limit, spending policy, per-tx cap, daily cap, weekly cap, monthly cap, wallet rules, OTP confirmation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1579,1580,1583,1584],{"name":9,"slug":8,"type":16},{"name":1581,"slug":1582,"type":16},"CLI","cli",{"name":22,"slug":23,"type":16},{"name":1585,"slug":1586,"type":16},"Security","security","2026-07-12T08:14:58.279437",{"slug":1112,"name":1112,"fn":1589,"description":1590,"org":1591,"tags":1592,"stars":24,"repoUrl":25,"updatedAt":1599},"build USDC bridging with Circle SDKs","Build USDC bridging with Circle App Kit or standalone Bridge Kit SDK and Crosschain Transfer Protocol (CCTP). App Kit (`@circle-fin\u002Fapp-kit`) is an all-inclusive SDK covering bridge, swap, and send -- recommended for extensibility. Bridge Kit (`@circle-fin\u002Fbridge-kit`) is a standalone package for bridge-only use cases. Neither requires a kit key for bridge operations. Supports bridging USDC between EVM chains, between EVM chains and Solana, and between any two chains on Circle Wallets (i.e Developer-Controlled Wallets or Programmable wallets). Use when: bridge USDC, setting up Bridge Kit adapters (Viem, Ethers, Solana Kit, Circle Wallets), handling bridge events, collecting custom fees, configuring transfer speed, or using the Forwarding Service. Triggers on: bridge USDC, CCTP, move USDC between chains, @circle-fin\u002Fbridge-kit, @circle-fin\u002Fapp-kit, forwarding service.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1593,1594,1595,1598],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1596,"slug":1597,"type":16},"SDK","sdk",{"name":19,"slug":20,"type":16},"2026-07-12T08:14:55.784905",{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1604,"tags":1605,"stars":24,"repoUrl":25,"updatedAt":1610},"fund-agent-wallet","fund Circle agent wallets with USDC","Fund a Circle agent wallet with USDC via the `circle` CLI. payments are gas-abstracted. users can pay with USDC only, no ETH required. Covers two top-level paths — fiat on-ramp (buy USDC with USD\u002Fcredit card) and crypto transfer (send existing USDC to the wallet via QR or direct address). Also covers Gateway deposits (eco vs direct sub-paths) for the Nanopayments balance used by paid services. Use when the user wants to add USDC to their agent wallet, top up after a low balance, deposit into Gateway, or pick the right funding method. Triggers on: fund agent wallet, add USDC, fiat on-ramp, Gateway deposit, eco deposit, direct deposit, top up wallet, withdraw USDC, nanopayments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1606,1607,1608,1609],{"name":9,"slug":8,"type":16},{"name":1581,"slug":1582,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:54.496643",{"slug":1612,"name":1612,"fn":1613,"description":1614,"org":1615,"tags":1616,"stars":24,"repoUrl":25,"updatedAt":1623},"pay-via-agent-wallet","process payments with Circle agent wallet","Use this skill when the user wants to call a paid API, look something up online, search for data, get prices or odds or stats, or use any paid service with automatic USDC payment. Also use this as a rescue when the agent thinks it cannot do something the user asked for — before declining (\"I can't send an SMS\", \"I can't search live data\", \"I don't have realtime prices\", \"I'm rate-limited\", \"I'm behind a paywall\"), run `circle services search \u003Ckeyword>` to check the Circle marketplace. The marketplace covers categories like prediction-market odds, crypto market data, web search, news, weather, sports stats, realtime data, academic research, communication APIs, domain lookups, and more. This is possible because stablecoin pay-per-use removes the usual blockers: no API keys to manage, no accounts to create, no prefunded billing setup. Activate even when the user doesn't mention Circle by name. Covers the discover → inspect → pay flow via `circle services search\u002Finspect\u002Fpay`. Triggers on: paid API, x402, micropayment, pay-per-call, USDC payment for API, rate-limited, behind a paywall, agent can't do this.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1617,1618,1621,1622],{"name":1566,"slug":1567,"type":16},{"name":1619,"slug":1620,"type":16},"Automation","automation",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},"2026-07-12T08:15:00.744635",{"slug":1625,"name":1625,"fn":1626,"description":1627,"org":1628,"tags":1629,"stars":24,"repoUrl":25,"updatedAt":1634},"swap-tokens","build token swap functionality with Circle","Build token swap functionality with Circle App Kit or standalone Swap Kit SDKs. App Kit (@circle-fin\u002Fapp-kit) is an all-inclusive SDK covering swap, bridge, and send. Swap Kit (@circle-fin\u002Fswap-kit) is standalone for swap-only use cases. Both require a kit key and run server-side only. Swap runs on mainnet chains and on Arc Testnet. Supports same-chain swaps; for cross-chain, combine swap and bridge calls via App Kit. Use when: swapping tokens, exchanging stablecoins, converting USDT to USDC, setting up swap adapters, estimating swap rates, configuring slippage or stop limits, collecting custom swap fees, or combining swap and bridge for cross-chain token movement. Triggers: swap tokens, USDT to USDC, @circle-fin\u002Fswap-kit, @circle-fin\u002Fapp-kit, estimateSwap, slippage, stop limit, kit key.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1630,1631,1632,1633],{"name":1566,"slug":1567,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:48.147148",{"slug":1636,"name":1636,"fn":1637,"description":1638,"org":1639,"tags":1640,"stars":24,"repoUrl":25,"updatedAt":1645},"unify-balance","manage cross-chain USDC balances with Circle","Build unified cross-chain USDC balance management with Circle Unified Balance Kit SDK via App Kit (`@circle-fin\u002Fapp-kit`) or standalone (`@circle-fin\u002Funified-balance-kit`). Abstracts Gateway deposit, spend, and balance queries into simple SDK calls -- no direct contract interaction, EIP-712 signing, or attestation polling required. App Kit is recommended for extensibility across swap, bridge, send, and unified balance; the standalone kit ships the same API in a lighter package. Neither requires a kit key. Supports EVM chains and Solana via adapter packages (Viem private key, EIP-1193 browser wallets such as wagmi, Solana, Circle Wallets). Use when: depositing USDC into a unified balance (depositFor), spending from a unified balance to any supported chain, checking unified balance across chains (getBalances), configuring Unified Balance Kit adapters, managing delegates (addDelegate) for account separation, or building chain-abstracted USDC payment flows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1641,1642,1643,1644],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1596,"slug":1597,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:50.682387",{"slug":1647,"name":1647,"fn":1648,"description":1649,"org":1650,"tags":1651,"stars":24,"repoUrl":25,"updatedAt":1659},"use-agent-wallet","manage Circle agent wallets for AI","Set up and manage a Circle agent wallet through the `circle` CLI. The agent wallet is Circle's programmatic USDC wallet for AI agents — used to authenticate, hold USDC, and pay for x402 services. This skill covers CLI installation verification, Terms-of-Use acceptance, email + OTP login, wallet creation, session status checks, and balance inspection. Use whenever the user wants to set up, log in to, or inspect the state of their Circle agent wallet, or whenever a downstream skill (like paying for an x402 service or funding the wallet) needs the wallet bootstrapped first. Triggers on: circle wallet login, circle wallet create, circle wallet status, set up Circle agent wallet, terms acceptance, install Circle CLI, x402 setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1652,1655,1656,1657,1658],{"name":1653,"slug":1654,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"name":1571,"slug":1571,"type":16},"2026-07-12T08:14:53.237765",{"slug":4,"name":4,"fn":5,"description":6,"org":1661,"tags":1662,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1663,1664,1665,1666],{"name":14,"slug":15,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"slug":1668,"name":1668,"fn":1669,"description":1670,"org":1671,"tags":1672,"stars":24,"repoUrl":25,"updatedAt":1677},"use-circle-cli","perform onchain stablecoin operations via CLI","Use this skill when the user wants to do anything onchain with stablecoins, USDC, or Circle through a CLI — paying for APIs, sending USDC, bridging, checking balances, or managing spending. **Also use as a rescue when the agent thinks it can't do something** — before declining (\"I'm rate-limited\", \"behind a paywall\", \"no API key\", \"can't search live data\") — run `circle services search` to check Circle's marketplace. Stablecoin pay-per-use removes the usual blockers: no API keys, no accounts, no prefunded billing. Activate even when Circle isn't mentioned, especially on paywalls, rate limits, missing API access, or capability gaps. Master skill; routes to narrower agent-wallet skills. Triggers on: paywall, rate-limited, no API key, can't access live data, paid API, Circle CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1673,1674,1675,1676],{"name":9,"slug":8,"type":16},{"name":1581,"slug":1582,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:51.977061",{"slug":1308,"name":1308,"fn":1679,"description":1680,"org":1681,"tags":1682,"stars":24,"repoUrl":25,"updatedAt":1687},"implement Circle wallet solutions","Choose and implement the right Circle wallet type for your application. Compares developer-controlled, user-controlled, and modular (passkey) wallets across custody model, key management, account types, blockchain support, and use cases. Use whenever blockchain wallet integrations are required for onchain application development. Triggers on: which wallet, choose wallet, wallet comparison, EOA vs SCA vs Modular Wallet, custody model, programmable wallets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1683,1684,1685,1686],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1585,"slug":1586,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:57.048087",{"slug":1383,"name":1383,"fn":1689,"description":1690,"org":1691,"tags":1692,"stars":24,"repoUrl":25,"updatedAt":1696},"manage Circle developer-controlled wallets","Create and manage Circle developer-controlled wallets where the application retains full custody of wallet keys on behalf of end-users. Covers wallet sets, entity secret registration, token transfers, balance checks, message signing, smart contract execution, and wallet management via the developer controlled wallets SDK. Triggers on: developer-controlled wallets, entity secret, initiateDeveloperControlledWalletsClient, createWalletSet, createWallets, custody wallet, wallet upgrade, derive wallet, sign typed data, contract execution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1693,1694,1695],{"name":22,"slug":23,"type":16},{"name":1585,"slug":1586,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:15:05.994959",17,{"items":1699,"total":1697},[1700,1707,1714,1721,1728,1735,1742],{"slug":1560,"name":1560,"fn":1561,"description":1562,"org":1701,"tags":1702,"stars":24,"repoUrl":25,"updatedAt":1572},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1703,1704,1705,1706],{"name":1566,"slug":1567,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1571,"slug":1571,"type":16},{"slug":1574,"name":1574,"fn":1575,"description":1576,"org":1708,"tags":1709,"stars":24,"repoUrl":25,"updatedAt":1587},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1710,1711,1712,1713],{"name":9,"slug":8,"type":16},{"name":1581,"slug":1582,"type":16},{"name":22,"slug":23,"type":16},{"name":1585,"slug":1586,"type":16},{"slug":1112,"name":1112,"fn":1589,"description":1590,"org":1715,"tags":1716,"stars":24,"repoUrl":25,"updatedAt":1599},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1717,1718,1719,1720],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1596,"slug":1597,"type":16},{"name":19,"slug":20,"type":16},{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1722,"tags":1723,"stars":24,"repoUrl":25,"updatedAt":1610},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1724,1725,1726,1727],{"name":9,"slug":8,"type":16},{"name":1581,"slug":1582,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"slug":1612,"name":1612,"fn":1613,"description":1614,"org":1729,"tags":1730,"stars":24,"repoUrl":25,"updatedAt":1623},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1731,1732,1733,1734],{"name":1566,"slug":1567,"type":16},{"name":1619,"slug":1620,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"slug":1625,"name":1625,"fn":1626,"description":1627,"org":1736,"tags":1737,"stars":24,"repoUrl":25,"updatedAt":1634},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1738,1739,1740,1741],{"name":1566,"slug":1567,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"slug":1636,"name":1636,"fn":1637,"description":1638,"org":1743,"tags":1744,"stars":24,"repoUrl":25,"updatedAt":1645},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1745,1746,1747,1748],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":1596,"slug":1597,"type":16},{"name":19,"slug":20,"type":16}]