[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-metamask-gator-cli":3,"mdc-ij80qz-key":37,"related-org-metamask-gator-cli":2453,"related-repo-metamask-gator-cli":2615},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":29,"mdContent":36},"gator-cli","manage MetaMask smart account delegations","Use when you need to operate the @metamask\u002Fgator-cli to initialize profiles, upgrade EOA to EIP-7702, grant, redeem, and revoke ERC-7710 delegations, or inspect balances and delegations. Covers commands, required flags, grant scopes, redeem action types, configuration locations, and common usage flows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"metamask","MetaMask","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmetamask.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Permissions","permissions","tag",{"name":17,"slug":18,"type":15},"Auth","auth",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},"Web3","web3",{"name":26,"slug":27,"type":15},"Ethereum","ethereum",1,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fgator-cli","2026-07-13T06:11:37.808342",null,4,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":31},[],"---\nname: gator-cli\ndescription: Use when you need to operate the @metamask\u002Fgator-cli to initialize profiles, upgrade EOA to EIP-7702, grant, redeem, and revoke ERC-7710 delegations, or inspect balances and delegations. Covers commands, required flags, grant scopes, redeem action types, configuration locations, and common usage flows.\n---\n\n## Quick Reference\n\nUse this skill to run the gator CLI from the repo and to choose the correct command\u002Fflags for delegation workflows.\n\n## CLI Overview\n\n- Binary name: `gator`\n- Default profile: `default`\n- Config path: `~\u002F.gator-cli\u002Fpermissions.json` (or `~\u002F.gator-cli\u002Fprofiles\u002F\u003Cprofile-name>.json`)\n- Delegations local cache: `~\u002F.gator-cli\u002Fdelegations\u002F\u003Cprofile-name>.json` when storage not configured\n\n## Configuration Requirements\n\nEdit the profile config after `gator init`:\n\n```json\n{\n  \"delegationStorage\": {\n    \"apiKey\": \"your-api-key\",\n    \"apiKeyId\": \"your-api-key-id\"\n  },\n  \"rpcUrl\": \"https:\u002F\u002Fyour-rpc-url.com\"\n}\n```\n\n- `delegationStorage` is optional; when missing, delegations are stored locally.\n- `rpcUrl` is required for on-chain actions.\n- If you need a storage API key, tag `@osobotai` on X.\n\n## Commands\n\n### init\n\nGenerate a private key and save config. Errors if the profile already exists.\n\n- `gator init [--chain \u003Cchain>] [--profile \u003Cprofile-name>]`\n- `--chain` values: `base`, `sepolia` (default: `base`)\n- `--profile` default: `default`\n- Prints: address, chain, and config file path.\n\n### create\n\nUpgrade an EOA to an EIP-7702 smart account. Uses the chain in your profile config.\n\n- `gator create [--profile \u003Cprofile-name>]`\n- Requires the account to be funded with native token first.\n- Prints: address, chain, and the upgrade transaction hash.\n\n### show\n\nDisplay the EOA address for a profile.\n\n- `gator show [--profile \u003Cprofile-name>]`\n\n### status\n\nCheck config and on-chain account status.\n\n- `gator status [--profile \u003Cprofile-name>]`\n- Prints: address, chain, config upgrade status, on-chain code presence, storage and RPC URL config.\n\n### balance\n\nShow native balance and optional ERC-20 balance.\n\n- `gator balance [--tokenAddress \u003Caddress>] [--profile \u003Cprofile-name>]`\n- If `--tokenAddress` is provided, prints ERC-20 balance and decimals-derived units.\n\n### grant\n\nCreate, sign, and store a delegation with a predefined scope.\n\n- `gator grant --to \u003Cto-address> --scope \u003Ctype> [scope flags] [--profile \u003Cprofile-name>]`\n\nScope flags:\n\n- Token scopes: `--tokenAddress \u003Ctoken-address>`, `--maxAmount \u003Camount>`, `--tokenId \u003Cid>`\n- Periodic scopes: `--periodAmount \u003Camount>`, `--periodDuration \u003Cseconds>`, `--startDate \u003Ctimestamp>`\n- Streaming scopes: `--amountPerSecond \u003Camount>`, `--initialAmount \u003Camount>`, `--startTime \u003Ctimestamp>`\n- Function call scope: `--targets \u003Caddresses>`, `--selectors \u003Csigs>`\n- Ownership transfer: `--contractAddress \u003Ccontract-address>`\n- Additional: `--valueLte \u003Cether>` for `functionCall`\n\nSupported scopes:\n\n- `erc20TransferAmount`\n- `erc20PeriodTransfer`\n- `erc20Streaming`\n- `erc721Transfer`\n- `nativeTokenTransferAmount`\n- `nativeTokenPeriodTransfer`\n- `nativeTokenStreaming`\n- `functionCall`\n- `ownershipTransfer`\n\nGrant flags per scope:\n\n| Scope                       | Required Flags                                                          |\n| --------------------------- | ----------------------------------------------------------------------- |\n| `erc20TransferAmount`       | `--tokenAddress`, `--maxAmount`                                         |\n| `erc20PeriodTransfer`       | `--tokenAddress`, `--periodAmount`, `--periodDuration`                  |\n| `erc20Streaming`            | `--tokenAddress`, `--amountPerSecond`, `--initialAmount`, `--maxAmount` |\n| `erc721Transfer`            | `--tokenAddress`, `--tokenId`                                           |\n| `nativeTokenTransferAmount` | `--maxAmount`                                                           |\n| `nativeTokenPeriodTransfer` | `--periodAmount`, `--periodDuration`                                    |\n| `nativeTokenStreaming`      | `--amountPerSecond`, `--initialAmount`, `--maxAmount`                   |\n| `functionCall`              | `--targets`, `--selectors`                                              |\n| `ownershipTransfer`         | `--contractAddress`                                                     |\n\n### redeem\n\nRedeem a stored delegation using a specific action type.\n\n- `gator redeem --from \u003Cfrom-address> --action \u003Ctype> [action flags] [--profile \u003Cprofile-name>]`\n\nSupported action types: `erc20Transfer`, `erc721Transfer`, `nativeTransfer`, `functionCall`, `ownershipTransfer`, `raw`\n\nAction-specific flags:\n\n- `erc20Transfer`: `--tokenAddress`, `--to`, `--amount`\n- `erc721Transfer`: `--tokenAddress`, `--to`, `--tokenId`\n- `nativeTransfer`: `--to`, `--amount`\n- `functionCall`: `--target`, `--function`, `--args`, `--value`\n- `ownershipTransfer`: `--contractAddress`, `--to`\n- `raw`: `--target`, `--callData`, `--value`\n\n### revoke\n\nRevoke a delegation on-chain. Revokes the first matching delegation.\n\n- `gator revoke --to \u003Cto-address> [--profile \u003Cprofile-name>]`\n\n### inspect\n\nInspect delegations for your account.\n\n- `gator inspect [--from \u003Cfrom-address>] [--to \u003Cto-address>] [--profile \u003Cprofile-name>]`\n- With no filters, prints both Given and Received.\n- Printed fields: From, To, Authority, Caveats count, Signed flag.\n\n## Redeem Flags per Action\n\n| Action              | Required Flags                        |\n| ------------------- | ------------------------------------- |\n| `erc20Transfer`     | `--tokenAddress`, `--to`, `--amount`  |\n| `erc721Transfer`    | `--tokenAddress`, `--to`, `--tokenId` |\n| `nativeTransfer`    | `--to`, `--amount`                    |\n| `functionCall`      | `--target`, `--function`, `--args`    |\n| `ownershipTransfer` | `--contractAddress`, `--to`           |\n| `raw`               | `--target`, `--callData`              |\n\n## Example Flows\n\nInitialize and upgrade:\n\n```bash\ngator init --profile \u003Cprofile-name>\ngator create --profile \u003Cprofile-name>\n```\n\nGrant an ERC-20 transfer delegation:\n\n```bash\ngator grant --profile \u003Cprofile-name> --to \u003Cto-address> --scope erc20TransferAmount \\\n  --tokenAddress \u003Ctoken-address> --maxAmount 50\n```\n\nRedeem an ERC-20 transfer:\n\n```bash\ngator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action erc20Transfer \\\n  --tokenAddress \u003Ctoken-address> --to \u003Cto-address> --amount 10\n```\n\nRedeem a native transfer:\n\n```bash\ngator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action nativeTransfer \\\n  --to \u003Cto-address> --amount 0.5\n```\n\nRedeem in raw mode:\n\n```bash\ngator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action raw \\\n  --target \u003Ccontract-address> --callData 0xa9059cbb...\n```\n\nInspect delegations:\n\n```bash\ngator inspect --profile \u003Cprofile-name>\ngator inspect --profile \u003Cprofile-name> --from \u003Cfrom-address>\ngator inspect --profile \u003Cprofile-name> --to \u003Cto-address>\n```\n\nRevoke a delegation:\n\n```bash\ngator revoke --profile \u003Cprofile-name> --to \u003Cto-address>\n```\n\n## Operational Notes\n\n- `--from` refers to the delegator address; `--to` refers to the delegate\u002Frecipient.\n- `--targets` and `--selectors` are comma-separated lists.\n- `--function` accepts a signature string like `\"approve(address,uint256)\"`.\n- `--action` is required for `redeem` and must be one of: `erc20Transfer`, `erc721Transfer`, `nativeTransfer`, `functionCall`, `ownershipTransfer`, `raw`.\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,51,57,63,125,131,144,324,360,366,372,377,443,448,453,475,480,485,497,502,507,524,529,534,559,564,569,581,586,712,717,800,805,1079,1084,1089,1101,1144,1149,1310,1315,1320,1332,1337,1342,1364,1370,1559,1565,1570,1649,1654,1768,1773,1901,1906,2010,2015,2121,2126,2267,2272,2331,2337,2447],{"type":43,"tag":44,"props":45,"children":47},"element","h2",{"id":46},"quick-reference",[48],{"type":49,"value":50},"text","Quick Reference",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Use this skill to run the gator CLI from the repo and to choose the correct command\u002Fflags for delegation workflows.",{"type":43,"tag":44,"props":58,"children":60},{"id":59},"cli-overview",[61],{"type":49,"value":62},"CLI Overview",{"type":43,"tag":64,"props":65,"children":66},"ul",{},[67,80,91,112],{"type":43,"tag":68,"props":69,"children":70},"li",{},[71,73],{"type":49,"value":72},"Binary name: ",{"type":43,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":49,"value":79},"gator",{"type":43,"tag":68,"props":81,"children":82},{},[83,85],{"type":49,"value":84},"Default profile: ",{"type":43,"tag":74,"props":86,"children":88},{"className":87},[],[89],{"type":49,"value":90},"default",{"type":43,"tag":68,"props":92,"children":93},{},[94,96,102,104,110],{"type":49,"value":95},"Config path: ",{"type":43,"tag":74,"props":97,"children":99},{"className":98},[],[100],{"type":49,"value":101},"~\u002F.gator-cli\u002Fpermissions.json",{"type":49,"value":103}," (or ",{"type":43,"tag":74,"props":105,"children":107},{"className":106},[],[108],{"type":49,"value":109},"~\u002F.gator-cli\u002Fprofiles\u002F\u003Cprofile-name>.json",{"type":49,"value":111},")",{"type":43,"tag":68,"props":113,"children":114},{},[115,117,123],{"type":49,"value":116},"Delegations local cache: ",{"type":43,"tag":74,"props":118,"children":120},{"className":119},[],[121],{"type":49,"value":122},"~\u002F.gator-cli\u002Fdelegations\u002F\u003Cprofile-name>.json",{"type":49,"value":124}," when storage not configured",{"type":43,"tag":44,"props":126,"children":128},{"id":127},"configuration-requirements",[129],{"type":49,"value":130},"Configuration Requirements",{"type":43,"tag":52,"props":132,"children":133},{},[134,136,142],{"type":49,"value":135},"Edit the profile config after ",{"type":43,"tag":74,"props":137,"children":139},{"className":138},[],[140],{"type":49,"value":141},"gator init",{"type":49,"value":143},":",{"type":43,"tag":145,"props":146,"children":151},"pre",{"className":147,"code":148,"language":149,"meta":150,"style":150},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"delegationStorage\": {\n    \"apiKey\": \"your-api-key\",\n    \"apiKeyId\": \"your-api-key-id\"\n  },\n  \"rpcUrl\": \"https:\u002F\u002Fyour-rpc-url.com\"\n}\n","json","",[152],{"type":43,"tag":74,"props":153,"children":154},{"__ignoreMap":150},[155,166,195,238,272,281,315],{"type":43,"tag":156,"props":157,"children":159},"span",{"class":158,"line":28},"line",[160],{"type":43,"tag":156,"props":161,"children":163},{"style":162},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[164],{"type":49,"value":165},"{\n",{"type":43,"tag":156,"props":167,"children":169},{"class":158,"line":168},2,[170,175,181,186,190],{"type":43,"tag":156,"props":171,"children":172},{"style":162},[173],{"type":49,"value":174},"  \"",{"type":43,"tag":156,"props":176,"children":178},{"style":177},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[179],{"type":49,"value":180},"delegationStorage",{"type":43,"tag":156,"props":182,"children":183},{"style":162},[184],{"type":49,"value":185},"\"",{"type":43,"tag":156,"props":187,"children":188},{"style":162},[189],{"type":49,"value":143},{"type":43,"tag":156,"props":191,"children":192},{"style":162},[193],{"type":49,"value":194}," {\n",{"type":43,"tag":156,"props":196,"children":198},{"class":158,"line":197},3,[199,204,210,214,218,223,229,233],{"type":43,"tag":156,"props":200,"children":201},{"style":162},[202],{"type":49,"value":203},"    \"",{"type":43,"tag":156,"props":205,"children":207},{"style":206},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[208],{"type":49,"value":209},"apiKey",{"type":43,"tag":156,"props":211,"children":212},{"style":162},[213],{"type":49,"value":185},{"type":43,"tag":156,"props":215,"children":216},{"style":162},[217],{"type":49,"value":143},{"type":43,"tag":156,"props":219,"children":220},{"style":162},[221],{"type":49,"value":222}," \"",{"type":43,"tag":156,"props":224,"children":226},{"style":225},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[227],{"type":49,"value":228},"your-api-key",{"type":43,"tag":156,"props":230,"children":231},{"style":162},[232],{"type":49,"value":185},{"type":43,"tag":156,"props":234,"children":235},{"style":162},[236],{"type":49,"value":237},",\n",{"type":43,"tag":156,"props":239,"children":240},{"class":158,"line":32},[241,245,250,254,258,262,267],{"type":43,"tag":156,"props":242,"children":243},{"style":162},[244],{"type":49,"value":203},{"type":43,"tag":156,"props":246,"children":247},{"style":206},[248],{"type":49,"value":249},"apiKeyId",{"type":43,"tag":156,"props":251,"children":252},{"style":162},[253],{"type":49,"value":185},{"type":43,"tag":156,"props":255,"children":256},{"style":162},[257],{"type":49,"value":143},{"type":43,"tag":156,"props":259,"children":260},{"style":162},[261],{"type":49,"value":222},{"type":43,"tag":156,"props":263,"children":264},{"style":225},[265],{"type":49,"value":266},"your-api-key-id",{"type":43,"tag":156,"props":268,"children":269},{"style":162},[270],{"type":49,"value":271},"\"\n",{"type":43,"tag":156,"props":273,"children":275},{"class":158,"line":274},5,[276],{"type":43,"tag":156,"props":277,"children":278},{"style":162},[279],{"type":49,"value":280},"  },\n",{"type":43,"tag":156,"props":282,"children":284},{"class":158,"line":283},6,[285,289,294,298,302,306,311],{"type":43,"tag":156,"props":286,"children":287},{"style":162},[288],{"type":49,"value":174},{"type":43,"tag":156,"props":290,"children":291},{"style":177},[292],{"type":49,"value":293},"rpcUrl",{"type":43,"tag":156,"props":295,"children":296},{"style":162},[297],{"type":49,"value":185},{"type":43,"tag":156,"props":299,"children":300},{"style":162},[301],{"type":49,"value":143},{"type":43,"tag":156,"props":303,"children":304},{"style":162},[305],{"type":49,"value":222},{"type":43,"tag":156,"props":307,"children":308},{"style":225},[309],{"type":49,"value":310},"https:\u002F\u002Fyour-rpc-url.com",{"type":43,"tag":156,"props":312,"children":313},{"style":162},[314],{"type":49,"value":271},{"type":43,"tag":156,"props":316,"children":318},{"class":158,"line":317},7,[319],{"type":43,"tag":156,"props":320,"children":321},{"style":162},[322],{"type":49,"value":323},"}\n",{"type":43,"tag":64,"props":325,"children":326},{},[327,337,347],{"type":43,"tag":68,"props":328,"children":329},{},[330,335],{"type":43,"tag":74,"props":331,"children":333},{"className":332},[],[334],{"type":49,"value":180},{"type":49,"value":336}," is optional; when missing, delegations are stored locally.",{"type":43,"tag":68,"props":338,"children":339},{},[340,345],{"type":43,"tag":74,"props":341,"children":343},{"className":342},[],[344],{"type":49,"value":293},{"type":49,"value":346}," is required for on-chain actions.",{"type":43,"tag":68,"props":348,"children":349},{},[350,352,358],{"type":49,"value":351},"If you need a storage API key, tag ",{"type":43,"tag":74,"props":353,"children":355},{"className":354},[],[356],{"type":49,"value":357},"@osobotai",{"type":49,"value":359}," on X.",{"type":43,"tag":44,"props":361,"children":363},{"id":362},"commands",[364],{"type":49,"value":365},"Commands",{"type":43,"tag":367,"props":368,"children":370},"h3",{"id":369},"init",[371],{"type":49,"value":369},{"type":43,"tag":52,"props":373,"children":374},{},[375],{"type":49,"value":376},"Generate a private key and save config. Errors if the profile already exists.",{"type":43,"tag":64,"props":378,"children":379},{},[380,389,422,438],{"type":43,"tag":68,"props":381,"children":382},{},[383],{"type":43,"tag":74,"props":384,"children":386},{"className":385},[],[387],{"type":49,"value":388},"gator init [--chain \u003Cchain>] [--profile \u003Cprofile-name>]",{"type":43,"tag":68,"props":390,"children":391},{},[392,398,400,406,408,414,416,421],{"type":43,"tag":74,"props":393,"children":395},{"className":394},[],[396],{"type":49,"value":397},"--chain",{"type":49,"value":399}," values: ",{"type":43,"tag":74,"props":401,"children":403},{"className":402},[],[404],{"type":49,"value":405},"base",{"type":49,"value":407},", ",{"type":43,"tag":74,"props":409,"children":411},{"className":410},[],[412],{"type":49,"value":413},"sepolia",{"type":49,"value":415}," (default: ",{"type":43,"tag":74,"props":417,"children":419},{"className":418},[],[420],{"type":49,"value":405},{"type":49,"value":111},{"type":43,"tag":68,"props":423,"children":424},{},[425,431,433],{"type":43,"tag":74,"props":426,"children":428},{"className":427},[],[429],{"type":49,"value":430},"--profile",{"type":49,"value":432}," default: ",{"type":43,"tag":74,"props":434,"children":436},{"className":435},[],[437],{"type":49,"value":90},{"type":43,"tag":68,"props":439,"children":440},{},[441],{"type":49,"value":442},"Prints: address, chain, and config file path.",{"type":43,"tag":367,"props":444,"children":446},{"id":445},"create",[447],{"type":49,"value":445},{"type":43,"tag":52,"props":449,"children":450},{},[451],{"type":49,"value":452},"Upgrade an EOA to an EIP-7702 smart account. Uses the chain in your profile config.",{"type":43,"tag":64,"props":454,"children":455},{},[456,465,470],{"type":43,"tag":68,"props":457,"children":458},{},[459],{"type":43,"tag":74,"props":460,"children":462},{"className":461},[],[463],{"type":49,"value":464},"gator create [--profile \u003Cprofile-name>]",{"type":43,"tag":68,"props":466,"children":467},{},[468],{"type":49,"value":469},"Requires the account to be funded with native token first.",{"type":43,"tag":68,"props":471,"children":472},{},[473],{"type":49,"value":474},"Prints: address, chain, and the upgrade transaction hash.",{"type":43,"tag":367,"props":476,"children":478},{"id":477},"show",[479],{"type":49,"value":477},{"type":43,"tag":52,"props":481,"children":482},{},[483],{"type":49,"value":484},"Display the EOA address for a profile.",{"type":43,"tag":64,"props":486,"children":487},{},[488],{"type":43,"tag":68,"props":489,"children":490},{},[491],{"type":43,"tag":74,"props":492,"children":494},{"className":493},[],[495],{"type":49,"value":496},"gator show [--profile \u003Cprofile-name>]",{"type":43,"tag":367,"props":498,"children":500},{"id":499},"status",[501],{"type":49,"value":499},{"type":43,"tag":52,"props":503,"children":504},{},[505],{"type":49,"value":506},"Check config and on-chain account status.",{"type":43,"tag":64,"props":508,"children":509},{},[510,519],{"type":43,"tag":68,"props":511,"children":512},{},[513],{"type":43,"tag":74,"props":514,"children":516},{"className":515},[],[517],{"type":49,"value":518},"gator status [--profile \u003Cprofile-name>]",{"type":43,"tag":68,"props":520,"children":521},{},[522],{"type":49,"value":523},"Prints: address, chain, config upgrade status, on-chain code presence, storage and RPC URL config.",{"type":43,"tag":367,"props":525,"children":527},{"id":526},"balance",[528],{"type":49,"value":526},{"type":43,"tag":52,"props":530,"children":531},{},[532],{"type":49,"value":533},"Show native balance and optional ERC-20 balance.",{"type":43,"tag":64,"props":535,"children":536},{},[537,546],{"type":43,"tag":68,"props":538,"children":539},{},[540],{"type":43,"tag":74,"props":541,"children":543},{"className":542},[],[544],{"type":49,"value":545},"gator balance [--tokenAddress \u003Caddress>] [--profile \u003Cprofile-name>]",{"type":43,"tag":68,"props":547,"children":548},{},[549,551,557],{"type":49,"value":550},"If ",{"type":43,"tag":74,"props":552,"children":554},{"className":553},[],[555],{"type":49,"value":556},"--tokenAddress",{"type":49,"value":558}," is provided, prints ERC-20 balance and decimals-derived units.",{"type":43,"tag":367,"props":560,"children":562},{"id":561},"grant",[563],{"type":49,"value":561},{"type":43,"tag":52,"props":565,"children":566},{},[567],{"type":49,"value":568},"Create, sign, and store a delegation with a predefined scope.",{"type":43,"tag":64,"props":570,"children":571},{},[572],{"type":43,"tag":68,"props":573,"children":574},{},[575],{"type":43,"tag":74,"props":576,"children":578},{"className":577},[],[579],{"type":49,"value":580},"gator grant --to \u003Cto-address> --scope \u003Ctype> [scope flags] [--profile \u003Cprofile-name>]",{"type":43,"tag":52,"props":582,"children":583},{},[584],{"type":49,"value":585},"Scope flags:",{"type":43,"tag":64,"props":587,"children":588},{},[589,614,639,664,682,693],{"type":43,"tag":68,"props":590,"children":591},{},[592,594,600,601,607,608],{"type":49,"value":593},"Token scopes: ",{"type":43,"tag":74,"props":595,"children":597},{"className":596},[],[598],{"type":49,"value":599},"--tokenAddress \u003Ctoken-address>",{"type":49,"value":407},{"type":43,"tag":74,"props":602,"children":604},{"className":603},[],[605],{"type":49,"value":606},"--maxAmount \u003Camount>",{"type":49,"value":407},{"type":43,"tag":74,"props":609,"children":611},{"className":610},[],[612],{"type":49,"value":613},"--tokenId \u003Cid>",{"type":43,"tag":68,"props":615,"children":616},{},[617,619,625,626,632,633],{"type":49,"value":618},"Periodic scopes: ",{"type":43,"tag":74,"props":620,"children":622},{"className":621},[],[623],{"type":49,"value":624},"--periodAmount \u003Camount>",{"type":49,"value":407},{"type":43,"tag":74,"props":627,"children":629},{"className":628},[],[630],{"type":49,"value":631},"--periodDuration \u003Cseconds>",{"type":49,"value":407},{"type":43,"tag":74,"props":634,"children":636},{"className":635},[],[637],{"type":49,"value":638},"--startDate \u003Ctimestamp>",{"type":43,"tag":68,"props":640,"children":641},{},[642,644,650,651,657,658],{"type":49,"value":643},"Streaming scopes: ",{"type":43,"tag":74,"props":645,"children":647},{"className":646},[],[648],{"type":49,"value":649},"--amountPerSecond \u003Camount>",{"type":49,"value":407},{"type":43,"tag":74,"props":652,"children":654},{"className":653},[],[655],{"type":49,"value":656},"--initialAmount \u003Camount>",{"type":49,"value":407},{"type":43,"tag":74,"props":659,"children":661},{"className":660},[],[662],{"type":49,"value":663},"--startTime \u003Ctimestamp>",{"type":43,"tag":68,"props":665,"children":666},{},[667,669,675,676],{"type":49,"value":668},"Function call scope: ",{"type":43,"tag":74,"props":670,"children":672},{"className":671},[],[673],{"type":49,"value":674},"--targets \u003Caddresses>",{"type":49,"value":407},{"type":43,"tag":74,"props":677,"children":679},{"className":678},[],[680],{"type":49,"value":681},"--selectors \u003Csigs>",{"type":43,"tag":68,"props":683,"children":684},{},[685,687],{"type":49,"value":686},"Ownership transfer: ",{"type":43,"tag":74,"props":688,"children":690},{"className":689},[],[691],{"type":49,"value":692},"--contractAddress \u003Ccontract-address>",{"type":43,"tag":68,"props":694,"children":695},{},[696,698,704,706],{"type":49,"value":697},"Additional: ",{"type":43,"tag":74,"props":699,"children":701},{"className":700},[],[702],{"type":49,"value":703},"--valueLte \u003Cether>",{"type":49,"value":705}," for ",{"type":43,"tag":74,"props":707,"children":709},{"className":708},[],[710],{"type":49,"value":711},"functionCall",{"type":43,"tag":52,"props":713,"children":714},{},[715],{"type":49,"value":716},"Supported scopes:",{"type":43,"tag":64,"props":718,"children":719},{},[720,729,738,747,756,765,774,783,791],{"type":43,"tag":68,"props":721,"children":722},{},[723],{"type":43,"tag":74,"props":724,"children":726},{"className":725},[],[727],{"type":49,"value":728},"erc20TransferAmount",{"type":43,"tag":68,"props":730,"children":731},{},[732],{"type":43,"tag":74,"props":733,"children":735},{"className":734},[],[736],{"type":49,"value":737},"erc20PeriodTransfer",{"type":43,"tag":68,"props":739,"children":740},{},[741],{"type":43,"tag":74,"props":742,"children":744},{"className":743},[],[745],{"type":49,"value":746},"erc20Streaming",{"type":43,"tag":68,"props":748,"children":749},{},[750],{"type":43,"tag":74,"props":751,"children":753},{"className":752},[],[754],{"type":49,"value":755},"erc721Transfer",{"type":43,"tag":68,"props":757,"children":758},{},[759],{"type":43,"tag":74,"props":760,"children":762},{"className":761},[],[763],{"type":49,"value":764},"nativeTokenTransferAmount",{"type":43,"tag":68,"props":766,"children":767},{},[768],{"type":43,"tag":74,"props":769,"children":771},{"className":770},[],[772],{"type":49,"value":773},"nativeTokenPeriodTransfer",{"type":43,"tag":68,"props":775,"children":776},{},[777],{"type":43,"tag":74,"props":778,"children":780},{"className":779},[],[781],{"type":49,"value":782},"nativeTokenStreaming",{"type":43,"tag":68,"props":784,"children":785},{},[786],{"type":43,"tag":74,"props":787,"children":789},{"className":788},[],[790],{"type":49,"value":711},{"type":43,"tag":68,"props":792,"children":793},{},[794],{"type":43,"tag":74,"props":795,"children":797},{"className":796},[],[798],{"type":49,"value":799},"ownershipTransfer",{"type":43,"tag":52,"props":801,"children":802},{},[803],{"type":49,"value":804},"Grant flags per scope:",{"type":43,"tag":806,"props":807,"children":808},"table",{},[809,828],{"type":43,"tag":810,"props":811,"children":812},"thead",{},[813],{"type":43,"tag":814,"props":815,"children":816},"tr",{},[817,823],{"type":43,"tag":818,"props":819,"children":820},"th",{},[821],{"type":49,"value":822},"Scope",{"type":43,"tag":818,"props":824,"children":825},{},[826],{"type":49,"value":827},"Required Flags",{"type":43,"tag":829,"props":830,"children":831},"tbody",{},[832,859,892,931,957,976,1001,1032,1059],{"type":43,"tag":814,"props":833,"children":834},{},[835,844],{"type":43,"tag":836,"props":837,"children":838},"td",{},[839],{"type":43,"tag":74,"props":840,"children":842},{"className":841},[],[843],{"type":49,"value":728},{"type":43,"tag":836,"props":845,"children":846},{},[847,852,853],{"type":43,"tag":74,"props":848,"children":850},{"className":849},[],[851],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":854,"children":856},{"className":855},[],[857],{"type":49,"value":858},"--maxAmount",{"type":43,"tag":814,"props":860,"children":861},{},[862,870],{"type":43,"tag":836,"props":863,"children":864},{},[865],{"type":43,"tag":74,"props":866,"children":868},{"className":867},[],[869],{"type":49,"value":737},{"type":43,"tag":836,"props":871,"children":872},{},[873,878,879,885,886],{"type":43,"tag":74,"props":874,"children":876},{"className":875},[],[877],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":880,"children":882},{"className":881},[],[883],{"type":49,"value":884},"--periodAmount",{"type":49,"value":407},{"type":43,"tag":74,"props":887,"children":889},{"className":888},[],[890],{"type":49,"value":891},"--periodDuration",{"type":43,"tag":814,"props":893,"children":894},{},[895,903],{"type":43,"tag":836,"props":896,"children":897},{},[898],{"type":43,"tag":74,"props":899,"children":901},{"className":900},[],[902],{"type":49,"value":746},{"type":43,"tag":836,"props":904,"children":905},{},[906,911,912,918,919,925,926],{"type":43,"tag":74,"props":907,"children":909},{"className":908},[],[910],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":913,"children":915},{"className":914},[],[916],{"type":49,"value":917},"--amountPerSecond",{"type":49,"value":407},{"type":43,"tag":74,"props":920,"children":922},{"className":921},[],[923],{"type":49,"value":924},"--initialAmount",{"type":49,"value":407},{"type":43,"tag":74,"props":927,"children":929},{"className":928},[],[930],{"type":49,"value":858},{"type":43,"tag":814,"props":932,"children":933},{},[934,942],{"type":43,"tag":836,"props":935,"children":936},{},[937],{"type":43,"tag":74,"props":938,"children":940},{"className":939},[],[941],{"type":49,"value":755},{"type":43,"tag":836,"props":943,"children":944},{},[945,950,951],{"type":43,"tag":74,"props":946,"children":948},{"className":947},[],[949],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":952,"children":954},{"className":953},[],[955],{"type":49,"value":956},"--tokenId",{"type":43,"tag":814,"props":958,"children":959},{},[960,968],{"type":43,"tag":836,"props":961,"children":962},{},[963],{"type":43,"tag":74,"props":964,"children":966},{"className":965},[],[967],{"type":49,"value":764},{"type":43,"tag":836,"props":969,"children":970},{},[971],{"type":43,"tag":74,"props":972,"children":974},{"className":973},[],[975],{"type":49,"value":858},{"type":43,"tag":814,"props":977,"children":978},{},[979,987],{"type":43,"tag":836,"props":980,"children":981},{},[982],{"type":43,"tag":74,"props":983,"children":985},{"className":984},[],[986],{"type":49,"value":773},{"type":43,"tag":836,"props":988,"children":989},{},[990,995,996],{"type":43,"tag":74,"props":991,"children":993},{"className":992},[],[994],{"type":49,"value":884},{"type":49,"value":407},{"type":43,"tag":74,"props":997,"children":999},{"className":998},[],[1000],{"type":49,"value":891},{"type":43,"tag":814,"props":1002,"children":1003},{},[1004,1012],{"type":43,"tag":836,"props":1005,"children":1006},{},[1007],{"type":43,"tag":74,"props":1008,"children":1010},{"className":1009},[],[1011],{"type":49,"value":782},{"type":43,"tag":836,"props":1013,"children":1014},{},[1015,1020,1021,1026,1027],{"type":43,"tag":74,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":49,"value":917},{"type":49,"value":407},{"type":43,"tag":74,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":49,"value":924},{"type":49,"value":407},{"type":43,"tag":74,"props":1028,"children":1030},{"className":1029},[],[1031],{"type":49,"value":858},{"type":43,"tag":814,"props":1033,"children":1034},{},[1035,1043],{"type":43,"tag":836,"props":1036,"children":1037},{},[1038],{"type":43,"tag":74,"props":1039,"children":1041},{"className":1040},[],[1042],{"type":49,"value":711},{"type":43,"tag":836,"props":1044,"children":1045},{},[1046,1052,1053],{"type":43,"tag":74,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":49,"value":1051},"--targets",{"type":49,"value":407},{"type":43,"tag":74,"props":1054,"children":1056},{"className":1055},[],[1057],{"type":49,"value":1058},"--selectors",{"type":43,"tag":814,"props":1060,"children":1061},{},[1062,1070],{"type":43,"tag":836,"props":1063,"children":1064},{},[1065],{"type":43,"tag":74,"props":1066,"children":1068},{"className":1067},[],[1069],{"type":49,"value":799},{"type":43,"tag":836,"props":1071,"children":1072},{},[1073],{"type":43,"tag":74,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":49,"value":1078},"--contractAddress",{"type":43,"tag":367,"props":1080,"children":1082},{"id":1081},"redeem",[1083],{"type":49,"value":1081},{"type":43,"tag":52,"props":1085,"children":1086},{},[1087],{"type":49,"value":1088},"Redeem a stored delegation using a specific action type.",{"type":43,"tag":64,"props":1090,"children":1091},{},[1092],{"type":43,"tag":68,"props":1093,"children":1094},{},[1095],{"type":43,"tag":74,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":49,"value":1100},"gator redeem --from \u003Cfrom-address> --action \u003Ctype> [action flags] [--profile \u003Cprofile-name>]",{"type":43,"tag":52,"props":1102,"children":1103},{},[1104,1106,1112,1113,1118,1119,1125,1126,1131,1132,1137,1138],{"type":49,"value":1105},"Supported action types: ",{"type":43,"tag":74,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":49,"value":1111},"erc20Transfer",{"type":49,"value":407},{"type":43,"tag":74,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":49,"value":755},{"type":49,"value":407},{"type":43,"tag":74,"props":1120,"children":1122},{"className":1121},[],[1123],{"type":49,"value":1124},"nativeTransfer",{"type":49,"value":407},{"type":43,"tag":74,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":49,"value":711},{"type":49,"value":407},{"type":43,"tag":74,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":49,"value":799},{"type":49,"value":407},{"type":43,"tag":74,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":49,"value":1143},"raw",{"type":43,"tag":52,"props":1145,"children":1146},{},[1147],{"type":49,"value":1148},"Action-specific flags:",{"type":43,"tag":64,"props":1150,"children":1151},{},[1152,1181,1207,1227,1263,1283],{"type":43,"tag":68,"props":1153,"children":1154},{},[1155,1160,1162,1167,1168,1174,1175],{"type":43,"tag":74,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":49,"value":1111},{"type":49,"value":1161},": ",{"type":43,"tag":74,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":49,"value":1173},"--to",{"type":49,"value":407},{"type":43,"tag":74,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":49,"value":1180},"--amount",{"type":43,"tag":68,"props":1182,"children":1183},{},[1184,1189,1190,1195,1196,1201,1202],{"type":43,"tag":74,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":49,"value":755},{"type":49,"value":1161},{"type":43,"tag":74,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":49,"value":1173},{"type":49,"value":407},{"type":43,"tag":74,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":49,"value":956},{"type":43,"tag":68,"props":1208,"children":1209},{},[1210,1215,1216,1221,1222],{"type":43,"tag":74,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":49,"value":1124},{"type":49,"value":1161},{"type":43,"tag":74,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":49,"value":1173},{"type":49,"value":407},{"type":43,"tag":74,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":49,"value":1180},{"type":43,"tag":68,"props":1228,"children":1229},{},[1230,1235,1236,1242,1243,1249,1250,1256,1257],{"type":43,"tag":74,"props":1231,"children":1233},{"className":1232},[],[1234],{"type":49,"value":711},{"type":49,"value":1161},{"type":43,"tag":74,"props":1237,"children":1239},{"className":1238},[],[1240],{"type":49,"value":1241},"--target",{"type":49,"value":407},{"type":43,"tag":74,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":49,"value":1248},"--function",{"type":49,"value":407},{"type":43,"tag":74,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":49,"value":1255},"--args",{"type":49,"value":407},{"type":43,"tag":74,"props":1258,"children":1260},{"className":1259},[],[1261],{"type":49,"value":1262},"--value",{"type":43,"tag":68,"props":1264,"children":1265},{},[1266,1271,1272,1277,1278],{"type":43,"tag":74,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":49,"value":799},{"type":49,"value":1161},{"type":43,"tag":74,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":49,"value":1078},{"type":49,"value":407},{"type":43,"tag":74,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":49,"value":1173},{"type":43,"tag":68,"props":1284,"children":1285},{},[1286,1291,1292,1297,1298,1304,1305],{"type":43,"tag":74,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":49,"value":1143},{"type":49,"value":1161},{"type":43,"tag":74,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":49,"value":1241},{"type":49,"value":407},{"type":43,"tag":74,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":49,"value":1303},"--callData",{"type":49,"value":407},{"type":43,"tag":74,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":49,"value":1262},{"type":43,"tag":367,"props":1311,"children":1313},{"id":1312},"revoke",[1314],{"type":49,"value":1312},{"type":43,"tag":52,"props":1316,"children":1317},{},[1318],{"type":49,"value":1319},"Revoke a delegation on-chain. Revokes the first matching delegation.",{"type":43,"tag":64,"props":1321,"children":1322},{},[1323],{"type":43,"tag":68,"props":1324,"children":1325},{},[1326],{"type":43,"tag":74,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":49,"value":1331},"gator revoke --to \u003Cto-address> [--profile \u003Cprofile-name>]",{"type":43,"tag":367,"props":1333,"children":1335},{"id":1334},"inspect",[1336],{"type":49,"value":1334},{"type":43,"tag":52,"props":1338,"children":1339},{},[1340],{"type":49,"value":1341},"Inspect delegations for your account.",{"type":43,"tag":64,"props":1343,"children":1344},{},[1345,1354,1359],{"type":43,"tag":68,"props":1346,"children":1347},{},[1348],{"type":43,"tag":74,"props":1349,"children":1351},{"className":1350},[],[1352],{"type":49,"value":1353},"gator inspect [--from \u003Cfrom-address>] [--to \u003Cto-address>] [--profile \u003Cprofile-name>]",{"type":43,"tag":68,"props":1355,"children":1356},{},[1357],{"type":49,"value":1358},"With no filters, prints both Given and Received.",{"type":43,"tag":68,"props":1360,"children":1361},{},[1362],{"type":49,"value":1363},"Printed fields: From, To, Authority, Caveats count, Signed flag.",{"type":43,"tag":44,"props":1365,"children":1367},{"id":1366},"redeem-flags-per-action",[1368],{"type":49,"value":1369},"Redeem Flags per Action",{"type":43,"tag":806,"props":1371,"children":1372},{},[1373,1388],{"type":43,"tag":810,"props":1374,"children":1375},{},[1376],{"type":43,"tag":814,"props":1377,"children":1378},{},[1379,1384],{"type":43,"tag":818,"props":1380,"children":1381},{},[1382],{"type":49,"value":1383},"Action",{"type":43,"tag":818,"props":1385,"children":1386},{},[1387],{"type":49,"value":827},{"type":43,"tag":829,"props":1389,"children":1390},{},[1391,1422,1453,1478,1509,1534],{"type":43,"tag":814,"props":1392,"children":1393},{},[1394,1402],{"type":43,"tag":836,"props":1395,"children":1396},{},[1397],{"type":43,"tag":74,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":49,"value":1111},{"type":43,"tag":836,"props":1403,"children":1404},{},[1405,1410,1411,1416,1417],{"type":43,"tag":74,"props":1406,"children":1408},{"className":1407},[],[1409],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":49,"value":1173},{"type":49,"value":407},{"type":43,"tag":74,"props":1418,"children":1420},{"className":1419},[],[1421],{"type":49,"value":1180},{"type":43,"tag":814,"props":1423,"children":1424},{},[1425,1433],{"type":43,"tag":836,"props":1426,"children":1427},{},[1428],{"type":43,"tag":74,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":49,"value":755},{"type":43,"tag":836,"props":1434,"children":1435},{},[1436,1441,1442,1447,1448],{"type":43,"tag":74,"props":1437,"children":1439},{"className":1438},[],[1440],{"type":49,"value":556},{"type":49,"value":407},{"type":43,"tag":74,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":49,"value":1173},{"type":49,"value":407},{"type":43,"tag":74,"props":1449,"children":1451},{"className":1450},[],[1452],{"type":49,"value":956},{"type":43,"tag":814,"props":1454,"children":1455},{},[1456,1464],{"type":43,"tag":836,"props":1457,"children":1458},{},[1459],{"type":43,"tag":74,"props":1460,"children":1462},{"className":1461},[],[1463],{"type":49,"value":1124},{"type":43,"tag":836,"props":1465,"children":1466},{},[1467,1472,1473],{"type":43,"tag":74,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":49,"value":1173},{"type":49,"value":407},{"type":43,"tag":74,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":49,"value":1180},{"type":43,"tag":814,"props":1479,"children":1480},{},[1481,1489],{"type":43,"tag":836,"props":1482,"children":1483},{},[1484],{"type":43,"tag":74,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":49,"value":711},{"type":43,"tag":836,"props":1490,"children":1491},{},[1492,1497,1498,1503,1504],{"type":43,"tag":74,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":49,"value":1241},{"type":49,"value":407},{"type":43,"tag":74,"props":1499,"children":1501},{"className":1500},[],[1502],{"type":49,"value":1248},{"type":49,"value":407},{"type":43,"tag":74,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":49,"value":1255},{"type":43,"tag":814,"props":1510,"children":1511},{},[1512,1520],{"type":43,"tag":836,"props":1513,"children":1514},{},[1515],{"type":43,"tag":74,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":49,"value":799},{"type":43,"tag":836,"props":1521,"children":1522},{},[1523,1528,1529],{"type":43,"tag":74,"props":1524,"children":1526},{"className":1525},[],[1527],{"type":49,"value":1078},{"type":49,"value":407},{"type":43,"tag":74,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":49,"value":1173},{"type":43,"tag":814,"props":1535,"children":1536},{},[1537,1545],{"type":43,"tag":836,"props":1538,"children":1539},{},[1540],{"type":43,"tag":74,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":49,"value":1143},{"type":43,"tag":836,"props":1546,"children":1547},{},[1548,1553,1554],{"type":43,"tag":74,"props":1549,"children":1551},{"className":1550},[],[1552],{"type":49,"value":1241},{"type":49,"value":407},{"type":43,"tag":74,"props":1555,"children":1557},{"className":1556},[],[1558],{"type":49,"value":1303},{"type":43,"tag":44,"props":1560,"children":1562},{"id":1561},"example-flows",[1563],{"type":49,"value":1564},"Example Flows",{"type":43,"tag":52,"props":1566,"children":1567},{},[1568],{"type":49,"value":1569},"Initialize and upgrade:",{"type":43,"tag":145,"props":1571,"children":1575},{"className":1572,"code":1573,"language":1574,"meta":150,"style":150},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","gator init --profile \u003Cprofile-name>\ngator create --profile \u003Cprofile-name>\n","bash",[1576],{"type":43,"tag":74,"props":1577,"children":1578},{"__ignoreMap":150},[1579,1617],{"type":43,"tag":156,"props":1580,"children":1581},{"class":158,"line":28},[1582,1586,1591,1596,1601,1606,1612],{"type":43,"tag":156,"props":1583,"children":1584},{"style":206},[1585],{"type":49,"value":79},{"type":43,"tag":156,"props":1587,"children":1588},{"style":225},[1589],{"type":49,"value":1590}," init",{"type":43,"tag":156,"props":1592,"children":1593},{"style":225},[1594],{"type":49,"value":1595}," --profile",{"type":43,"tag":156,"props":1597,"children":1598},{"style":162},[1599],{"type":49,"value":1600}," \u003C",{"type":43,"tag":156,"props":1602,"children":1603},{"style":225},[1604],{"type":49,"value":1605},"profile-nam",{"type":43,"tag":156,"props":1607,"children":1609},{"style":1608},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1610],{"type":49,"value":1611},"e",{"type":43,"tag":156,"props":1613,"children":1614},{"style":162},[1615],{"type":49,"value":1616},">\n",{"type":43,"tag":156,"props":1618,"children":1619},{"class":158,"line":168},[1620,1624,1629,1633,1637,1641,1645],{"type":43,"tag":156,"props":1621,"children":1622},{"style":206},[1623],{"type":49,"value":79},{"type":43,"tag":156,"props":1625,"children":1626},{"style":225},[1627],{"type":49,"value":1628}," create",{"type":43,"tag":156,"props":1630,"children":1631},{"style":225},[1632],{"type":49,"value":1595},{"type":43,"tag":156,"props":1634,"children":1635},{"style":162},[1636],{"type":49,"value":1600},{"type":43,"tag":156,"props":1638,"children":1639},{"style":225},[1640],{"type":49,"value":1605},{"type":43,"tag":156,"props":1642,"children":1643},{"style":1608},[1644],{"type":49,"value":1611},{"type":43,"tag":156,"props":1646,"children":1647},{"style":162},[1648],{"type":49,"value":1616},{"type":43,"tag":52,"props":1650,"children":1651},{},[1652],{"type":49,"value":1653},"Grant an ERC-20 transfer delegation:",{"type":43,"tag":145,"props":1655,"children":1657},{"className":1572,"code":1656,"language":1574,"meta":150,"style":150},"gator grant --profile \u003Cprofile-name> --to \u003Cto-address> --scope erc20TransferAmount \\\n  --tokenAddress \u003Ctoken-address> --maxAmount 50\n",[1658],{"type":43,"tag":74,"props":1659,"children":1660},{"__ignoreMap":150},[1661,1732],{"type":43,"tag":156,"props":1662,"children":1663},{"class":158,"line":28},[1664,1668,1673,1677,1681,1685,1689,1694,1699,1703,1708,1713,1717,1722,1727],{"type":43,"tag":156,"props":1665,"children":1666},{"style":206},[1667],{"type":49,"value":79},{"type":43,"tag":156,"props":1669,"children":1670},{"style":225},[1671],{"type":49,"value":1672}," grant",{"type":43,"tag":156,"props":1674,"children":1675},{"style":225},[1676],{"type":49,"value":1595},{"type":43,"tag":156,"props":1678,"children":1679},{"style":162},[1680],{"type":49,"value":1600},{"type":43,"tag":156,"props":1682,"children":1683},{"style":225},[1684],{"type":49,"value":1605},{"type":43,"tag":156,"props":1686,"children":1687},{"style":1608},[1688],{"type":49,"value":1611},{"type":43,"tag":156,"props":1690,"children":1691},{"style":162},[1692],{"type":49,"value":1693},">",{"type":43,"tag":156,"props":1695,"children":1696},{"style":225},[1697],{"type":49,"value":1698}," --to",{"type":43,"tag":156,"props":1700,"children":1701},{"style":162},[1702],{"type":49,"value":1600},{"type":43,"tag":156,"props":1704,"children":1705},{"style":225},[1706],{"type":49,"value":1707},"to-addres",{"type":43,"tag":156,"props":1709,"children":1710},{"style":1608},[1711],{"type":49,"value":1712},"s",{"type":43,"tag":156,"props":1714,"children":1715},{"style":162},[1716],{"type":49,"value":1693},{"type":43,"tag":156,"props":1718,"children":1719},{"style":225},[1720],{"type":49,"value":1721}," --scope",{"type":43,"tag":156,"props":1723,"children":1724},{"style":225},[1725],{"type":49,"value":1726}," erc20TransferAmount",{"type":43,"tag":156,"props":1728,"children":1729},{"style":1608},[1730],{"type":49,"value":1731}," \\\n",{"type":43,"tag":156,"props":1733,"children":1734},{"class":158,"line":168},[1735,1740,1744,1749,1753,1757,1762],{"type":43,"tag":156,"props":1736,"children":1737},{"style":225},[1738],{"type":49,"value":1739},"  --tokenAddress",{"type":43,"tag":156,"props":1741,"children":1742},{"style":162},[1743],{"type":49,"value":1600},{"type":43,"tag":156,"props":1745,"children":1746},{"style":225},[1747],{"type":49,"value":1748},"token-addres",{"type":43,"tag":156,"props":1750,"children":1751},{"style":1608},[1752],{"type":49,"value":1712},{"type":43,"tag":156,"props":1754,"children":1755},{"style":162},[1756],{"type":49,"value":1693},{"type":43,"tag":156,"props":1758,"children":1759},{"style":225},[1760],{"type":49,"value":1761}," --maxAmount",{"type":43,"tag":156,"props":1763,"children":1765},{"style":1764},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1766],{"type":49,"value":1767}," 50\n",{"type":43,"tag":52,"props":1769,"children":1770},{},[1771],{"type":49,"value":1772},"Redeem an ERC-20 transfer:",{"type":43,"tag":145,"props":1774,"children":1776},{"className":1572,"code":1775,"language":1574,"meta":150,"style":150},"gator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action erc20Transfer \\\n  --tokenAddress \u003Ctoken-address> --to \u003Cto-address> --amount 10\n",[1777],{"type":43,"tag":74,"props":1778,"children":1779},{"__ignoreMap":150},[1780,1848],{"type":43,"tag":156,"props":1781,"children":1782},{"class":158,"line":28},[1783,1787,1792,1796,1800,1804,1808,1812,1817,1821,1826,1830,1834,1839,1844],{"type":43,"tag":156,"props":1784,"children":1785},{"style":206},[1786],{"type":49,"value":79},{"type":43,"tag":156,"props":1788,"children":1789},{"style":225},[1790],{"type":49,"value":1791}," redeem",{"type":43,"tag":156,"props":1793,"children":1794},{"style":225},[1795],{"type":49,"value":1595},{"type":43,"tag":156,"props":1797,"children":1798},{"style":162},[1799],{"type":49,"value":1600},{"type":43,"tag":156,"props":1801,"children":1802},{"style":225},[1803],{"type":49,"value":1605},{"type":43,"tag":156,"props":1805,"children":1806},{"style":1608},[1807],{"type":49,"value":1611},{"type":43,"tag":156,"props":1809,"children":1810},{"style":162},[1811],{"type":49,"value":1693},{"type":43,"tag":156,"props":1813,"children":1814},{"style":225},[1815],{"type":49,"value":1816}," --from",{"type":43,"tag":156,"props":1818,"children":1819},{"style":162},[1820],{"type":49,"value":1600},{"type":43,"tag":156,"props":1822,"children":1823},{"style":225},[1824],{"type":49,"value":1825},"from-addres",{"type":43,"tag":156,"props":1827,"children":1828},{"style":1608},[1829],{"type":49,"value":1712},{"type":43,"tag":156,"props":1831,"children":1832},{"style":162},[1833],{"type":49,"value":1693},{"type":43,"tag":156,"props":1835,"children":1836},{"style":225},[1837],{"type":49,"value":1838}," --action",{"type":43,"tag":156,"props":1840,"children":1841},{"style":225},[1842],{"type":49,"value":1843}," erc20Transfer",{"type":43,"tag":156,"props":1845,"children":1846},{"style":1608},[1847],{"type":49,"value":1731},{"type":43,"tag":156,"props":1849,"children":1850},{"class":158,"line":168},[1851,1855,1859,1863,1867,1871,1875,1879,1883,1887,1891,1896],{"type":43,"tag":156,"props":1852,"children":1853},{"style":225},[1854],{"type":49,"value":1739},{"type":43,"tag":156,"props":1856,"children":1857},{"style":162},[1858],{"type":49,"value":1600},{"type":43,"tag":156,"props":1860,"children":1861},{"style":225},[1862],{"type":49,"value":1748},{"type":43,"tag":156,"props":1864,"children":1865},{"style":1608},[1866],{"type":49,"value":1712},{"type":43,"tag":156,"props":1868,"children":1869},{"style":162},[1870],{"type":49,"value":1693},{"type":43,"tag":156,"props":1872,"children":1873},{"style":225},[1874],{"type":49,"value":1698},{"type":43,"tag":156,"props":1876,"children":1877},{"style":162},[1878],{"type":49,"value":1600},{"type":43,"tag":156,"props":1880,"children":1881},{"style":225},[1882],{"type":49,"value":1707},{"type":43,"tag":156,"props":1884,"children":1885},{"style":1608},[1886],{"type":49,"value":1712},{"type":43,"tag":156,"props":1888,"children":1889},{"style":162},[1890],{"type":49,"value":1693},{"type":43,"tag":156,"props":1892,"children":1893},{"style":225},[1894],{"type":49,"value":1895}," --amount",{"type":43,"tag":156,"props":1897,"children":1898},{"style":1764},[1899],{"type":49,"value":1900}," 10\n",{"type":43,"tag":52,"props":1902,"children":1903},{},[1904],{"type":49,"value":1905},"Redeem a native transfer:",{"type":43,"tag":145,"props":1907,"children":1909},{"className":1572,"code":1908,"language":1574,"meta":150,"style":150},"gator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action nativeTransfer \\\n  --to \u003Cto-address> --amount 0.5\n",[1910],{"type":43,"tag":74,"props":1911,"children":1912},{"__ignoreMap":150},[1913,1977],{"type":43,"tag":156,"props":1914,"children":1915},{"class":158,"line":28},[1916,1920,1924,1928,1932,1936,1940,1944,1948,1952,1956,1960,1964,1968,1973],{"type":43,"tag":156,"props":1917,"children":1918},{"style":206},[1919],{"type":49,"value":79},{"type":43,"tag":156,"props":1921,"children":1922},{"style":225},[1923],{"type":49,"value":1791},{"type":43,"tag":156,"props":1925,"children":1926},{"style":225},[1927],{"type":49,"value":1595},{"type":43,"tag":156,"props":1929,"children":1930},{"style":162},[1931],{"type":49,"value":1600},{"type":43,"tag":156,"props":1933,"children":1934},{"style":225},[1935],{"type":49,"value":1605},{"type":43,"tag":156,"props":1937,"children":1938},{"style":1608},[1939],{"type":49,"value":1611},{"type":43,"tag":156,"props":1941,"children":1942},{"style":162},[1943],{"type":49,"value":1693},{"type":43,"tag":156,"props":1945,"children":1946},{"style":225},[1947],{"type":49,"value":1816},{"type":43,"tag":156,"props":1949,"children":1950},{"style":162},[1951],{"type":49,"value":1600},{"type":43,"tag":156,"props":1953,"children":1954},{"style":225},[1955],{"type":49,"value":1825},{"type":43,"tag":156,"props":1957,"children":1958},{"style":1608},[1959],{"type":49,"value":1712},{"type":43,"tag":156,"props":1961,"children":1962},{"style":162},[1963],{"type":49,"value":1693},{"type":43,"tag":156,"props":1965,"children":1966},{"style":225},[1967],{"type":49,"value":1838},{"type":43,"tag":156,"props":1969,"children":1970},{"style":225},[1971],{"type":49,"value":1972}," nativeTransfer",{"type":43,"tag":156,"props":1974,"children":1975},{"style":1608},[1976],{"type":49,"value":1731},{"type":43,"tag":156,"props":1978,"children":1979},{"class":158,"line":168},[1980,1985,1989,1993,1997,2001,2005],{"type":43,"tag":156,"props":1981,"children":1982},{"style":225},[1983],{"type":49,"value":1984},"  --to",{"type":43,"tag":156,"props":1986,"children":1987},{"style":162},[1988],{"type":49,"value":1600},{"type":43,"tag":156,"props":1990,"children":1991},{"style":225},[1992],{"type":49,"value":1707},{"type":43,"tag":156,"props":1994,"children":1995},{"style":1608},[1996],{"type":49,"value":1712},{"type":43,"tag":156,"props":1998,"children":1999},{"style":162},[2000],{"type":49,"value":1693},{"type":43,"tag":156,"props":2002,"children":2003},{"style":225},[2004],{"type":49,"value":1895},{"type":43,"tag":156,"props":2006,"children":2007},{"style":1764},[2008],{"type":49,"value":2009}," 0.5\n",{"type":43,"tag":52,"props":2011,"children":2012},{},[2013],{"type":49,"value":2014},"Redeem in raw mode:",{"type":43,"tag":145,"props":2016,"children":2018},{"className":1572,"code":2017,"language":1574,"meta":150,"style":150},"gator redeem --profile \u003Cprofile-name> --from \u003Cfrom-address> --action raw \\\n  --target \u003Ccontract-address> --callData 0xa9059cbb...\n",[2019],{"type":43,"tag":74,"props":2020,"children":2021},{"__ignoreMap":150},[2022,2086],{"type":43,"tag":156,"props":2023,"children":2024},{"class":158,"line":28},[2025,2029,2033,2037,2041,2045,2049,2053,2057,2061,2065,2069,2073,2077,2082],{"type":43,"tag":156,"props":2026,"children":2027},{"style":206},[2028],{"type":49,"value":79},{"type":43,"tag":156,"props":2030,"children":2031},{"style":225},[2032],{"type":49,"value":1791},{"type":43,"tag":156,"props":2034,"children":2035},{"style":225},[2036],{"type":49,"value":1595},{"type":43,"tag":156,"props":2038,"children":2039},{"style":162},[2040],{"type":49,"value":1600},{"type":43,"tag":156,"props":2042,"children":2043},{"style":225},[2044],{"type":49,"value":1605},{"type":43,"tag":156,"props":2046,"children":2047},{"style":1608},[2048],{"type":49,"value":1611},{"type":43,"tag":156,"props":2050,"children":2051},{"style":162},[2052],{"type":49,"value":1693},{"type":43,"tag":156,"props":2054,"children":2055},{"style":225},[2056],{"type":49,"value":1816},{"type":43,"tag":156,"props":2058,"children":2059},{"style":162},[2060],{"type":49,"value":1600},{"type":43,"tag":156,"props":2062,"children":2063},{"style":225},[2064],{"type":49,"value":1825},{"type":43,"tag":156,"props":2066,"children":2067},{"style":1608},[2068],{"type":49,"value":1712},{"type":43,"tag":156,"props":2070,"children":2071},{"style":162},[2072],{"type":49,"value":1693},{"type":43,"tag":156,"props":2074,"children":2075},{"style":225},[2076],{"type":49,"value":1838},{"type":43,"tag":156,"props":2078,"children":2079},{"style":225},[2080],{"type":49,"value":2081}," raw",{"type":43,"tag":156,"props":2083,"children":2084},{"style":1608},[2085],{"type":49,"value":1731},{"type":43,"tag":156,"props":2087,"children":2088},{"class":158,"line":168},[2089,2094,2098,2103,2107,2111,2116],{"type":43,"tag":156,"props":2090,"children":2091},{"style":225},[2092],{"type":49,"value":2093},"  --target",{"type":43,"tag":156,"props":2095,"children":2096},{"style":162},[2097],{"type":49,"value":1600},{"type":43,"tag":156,"props":2099,"children":2100},{"style":225},[2101],{"type":49,"value":2102},"contract-addres",{"type":43,"tag":156,"props":2104,"children":2105},{"style":1608},[2106],{"type":49,"value":1712},{"type":43,"tag":156,"props":2108,"children":2109},{"style":162},[2110],{"type":49,"value":1693},{"type":43,"tag":156,"props":2112,"children":2113},{"style":225},[2114],{"type":49,"value":2115}," --callData",{"type":43,"tag":156,"props":2117,"children":2118},{"style":225},[2119],{"type":49,"value":2120}," 0xa9059cbb...\n",{"type":43,"tag":52,"props":2122,"children":2123},{},[2124],{"type":49,"value":2125},"Inspect delegations:",{"type":43,"tag":145,"props":2127,"children":2129},{"className":1572,"code":2128,"language":1574,"meta":150,"style":150},"gator inspect --profile \u003Cprofile-name>\ngator inspect --profile \u003Cprofile-name> --from \u003Cfrom-address>\ngator inspect --profile \u003Cprofile-name> --to \u003Cto-address>\n",[2130],{"type":43,"tag":74,"props":2131,"children":2132},{"__ignoreMap":150},[2133,2165,2216],{"type":43,"tag":156,"props":2134,"children":2135},{"class":158,"line":28},[2136,2140,2145,2149,2153,2157,2161],{"type":43,"tag":156,"props":2137,"children":2138},{"style":206},[2139],{"type":49,"value":79},{"type":43,"tag":156,"props":2141,"children":2142},{"style":225},[2143],{"type":49,"value":2144}," inspect",{"type":43,"tag":156,"props":2146,"children":2147},{"style":225},[2148],{"type":49,"value":1595},{"type":43,"tag":156,"props":2150,"children":2151},{"style":162},[2152],{"type":49,"value":1600},{"type":43,"tag":156,"props":2154,"children":2155},{"style":225},[2156],{"type":49,"value":1605},{"type":43,"tag":156,"props":2158,"children":2159},{"style":1608},[2160],{"type":49,"value":1611},{"type":43,"tag":156,"props":2162,"children":2163},{"style":162},[2164],{"type":49,"value":1616},{"type":43,"tag":156,"props":2166,"children":2167},{"class":158,"line":168},[2168,2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212],{"type":43,"tag":156,"props":2169,"children":2170},{"style":206},[2171],{"type":49,"value":79},{"type":43,"tag":156,"props":2173,"children":2174},{"style":225},[2175],{"type":49,"value":2144},{"type":43,"tag":156,"props":2177,"children":2178},{"style":225},[2179],{"type":49,"value":1595},{"type":43,"tag":156,"props":2181,"children":2182},{"style":162},[2183],{"type":49,"value":1600},{"type":43,"tag":156,"props":2185,"children":2186},{"style":225},[2187],{"type":49,"value":1605},{"type":43,"tag":156,"props":2189,"children":2190},{"style":1608},[2191],{"type":49,"value":1611},{"type":43,"tag":156,"props":2193,"children":2194},{"style":162},[2195],{"type":49,"value":1693},{"type":43,"tag":156,"props":2197,"children":2198},{"style":225},[2199],{"type":49,"value":1816},{"type":43,"tag":156,"props":2201,"children":2202},{"style":162},[2203],{"type":49,"value":1600},{"type":43,"tag":156,"props":2205,"children":2206},{"style":225},[2207],{"type":49,"value":1825},{"type":43,"tag":156,"props":2209,"children":2210},{"style":1608},[2211],{"type":49,"value":1712},{"type":43,"tag":156,"props":2213,"children":2214},{"style":162},[2215],{"type":49,"value":1616},{"type":43,"tag":156,"props":2217,"children":2218},{"class":158,"line":197},[2219,2223,2227,2231,2235,2239,2243,2247,2251,2255,2259,2263],{"type":43,"tag":156,"props":2220,"children":2221},{"style":206},[2222],{"type":49,"value":79},{"type":43,"tag":156,"props":2224,"children":2225},{"style":225},[2226],{"type":49,"value":2144},{"type":43,"tag":156,"props":2228,"children":2229},{"style":225},[2230],{"type":49,"value":1595},{"type":43,"tag":156,"props":2232,"children":2233},{"style":162},[2234],{"type":49,"value":1600},{"type":43,"tag":156,"props":2236,"children":2237},{"style":225},[2238],{"type":49,"value":1605},{"type":43,"tag":156,"props":2240,"children":2241},{"style":1608},[2242],{"type":49,"value":1611},{"type":43,"tag":156,"props":2244,"children":2245},{"style":162},[2246],{"type":49,"value":1693},{"type":43,"tag":156,"props":2248,"children":2249},{"style":225},[2250],{"type":49,"value":1698},{"type":43,"tag":156,"props":2252,"children":2253},{"style":162},[2254],{"type":49,"value":1600},{"type":43,"tag":156,"props":2256,"children":2257},{"style":225},[2258],{"type":49,"value":1707},{"type":43,"tag":156,"props":2260,"children":2261},{"style":1608},[2262],{"type":49,"value":1712},{"type":43,"tag":156,"props":2264,"children":2265},{"style":162},[2266],{"type":49,"value":1616},{"type":43,"tag":52,"props":2268,"children":2269},{},[2270],{"type":49,"value":2271},"Revoke a delegation:",{"type":43,"tag":145,"props":2273,"children":2275},{"className":1572,"code":2274,"language":1574,"meta":150,"style":150},"gator revoke --profile \u003Cprofile-name> --to \u003Cto-address>\n",[2276],{"type":43,"tag":74,"props":2277,"children":2278},{"__ignoreMap":150},[2279],{"type":43,"tag":156,"props":2280,"children":2281},{"class":158,"line":28},[2282,2286,2291,2295,2299,2303,2307,2311,2315,2319,2323,2327],{"type":43,"tag":156,"props":2283,"children":2284},{"style":206},[2285],{"type":49,"value":79},{"type":43,"tag":156,"props":2287,"children":2288},{"style":225},[2289],{"type":49,"value":2290}," revoke",{"type":43,"tag":156,"props":2292,"children":2293},{"style":225},[2294],{"type":49,"value":1595},{"type":43,"tag":156,"props":2296,"children":2297},{"style":162},[2298],{"type":49,"value":1600},{"type":43,"tag":156,"props":2300,"children":2301},{"style":225},[2302],{"type":49,"value":1605},{"type":43,"tag":156,"props":2304,"children":2305},{"style":1608},[2306],{"type":49,"value":1611},{"type":43,"tag":156,"props":2308,"children":2309},{"style":162},[2310],{"type":49,"value":1693},{"type":43,"tag":156,"props":2312,"children":2313},{"style":225},[2314],{"type":49,"value":1698},{"type":43,"tag":156,"props":2316,"children":2317},{"style":162},[2318],{"type":49,"value":1600},{"type":43,"tag":156,"props":2320,"children":2321},{"style":225},[2322],{"type":49,"value":1707},{"type":43,"tag":156,"props":2324,"children":2325},{"style":1608},[2326],{"type":49,"value":1712},{"type":43,"tag":156,"props":2328,"children":2329},{"style":162},[2330],{"type":49,"value":1616},{"type":43,"tag":44,"props":2332,"children":2334},{"id":2333},"operational-notes",[2335],{"type":49,"value":2336},"Operational Notes",{"type":43,"tag":64,"props":2338,"children":2339},{},[2340,2358,2375,2393],{"type":43,"tag":68,"props":2341,"children":2342},{},[2343,2349,2351,2356],{"type":43,"tag":74,"props":2344,"children":2346},{"className":2345},[],[2347],{"type":49,"value":2348},"--from",{"type":49,"value":2350}," refers to the delegator address; ",{"type":43,"tag":74,"props":2352,"children":2354},{"className":2353},[],[2355],{"type":49,"value":1173},{"type":49,"value":2357}," refers to the delegate\u002Frecipient.",{"type":43,"tag":68,"props":2359,"children":2360},{},[2361,2366,2368,2373],{"type":43,"tag":74,"props":2362,"children":2364},{"className":2363},[],[2365],{"type":49,"value":1051},{"type":49,"value":2367}," and ",{"type":43,"tag":74,"props":2369,"children":2371},{"className":2370},[],[2372],{"type":49,"value":1058},{"type":49,"value":2374}," are comma-separated lists.",{"type":43,"tag":68,"props":2376,"children":2377},{},[2378,2383,2385,2391],{"type":43,"tag":74,"props":2379,"children":2381},{"className":2380},[],[2382],{"type":49,"value":1248},{"type":49,"value":2384}," accepts a signature string like ",{"type":43,"tag":74,"props":2386,"children":2388},{"className":2387},[],[2389],{"type":49,"value":2390},"\"approve(address,uint256)\"",{"type":49,"value":2392},".",{"type":43,"tag":68,"props":2394,"children":2395},{},[2396,2402,2404,2409,2411,2416,2417,2422,2423,2428,2429,2434,2435,2440,2441,2446],{"type":43,"tag":74,"props":2397,"children":2399},{"className":2398},[],[2400],{"type":49,"value":2401},"--action",{"type":49,"value":2403}," is required for ",{"type":43,"tag":74,"props":2405,"children":2407},{"className":2406},[],[2408],{"type":49,"value":1081},{"type":49,"value":2410}," and must be one of: ",{"type":43,"tag":74,"props":2412,"children":2414},{"className":2413},[],[2415],{"type":49,"value":1111},{"type":49,"value":407},{"type":43,"tag":74,"props":2418,"children":2420},{"className":2419},[],[2421],{"type":49,"value":755},{"type":49,"value":407},{"type":43,"tag":74,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":49,"value":1124},{"type":49,"value":407},{"type":43,"tag":74,"props":2430,"children":2432},{"className":2431},[],[2433],{"type":49,"value":711},{"type":49,"value":407},{"type":43,"tag":74,"props":2436,"children":2438},{"className":2437},[],[2439],{"type":49,"value":799},{"type":49,"value":407},{"type":43,"tag":74,"props":2442,"children":2444},{"className":2443},[],[2445],{"type":49,"value":1143},{"type":49,"value":2392},{"type":43,"tag":2448,"props":2449,"children":2450},"style",{},[2451],{"type":49,"value":2452},"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":2454,"total":2614},[2455,2471,2485,2498,2507,2517,2533,2549,2565,2576,2586,2596],{"slug":2456,"name":2456,"fn":2457,"description":2458,"org":2459,"tags":2460,"stars":2468,"repoUrl":2469,"updatedAt":2470},"smart-accounts-kit","build dApps with MetaMask Smart Accounts","Build dApps with MetaMask Smart Accounts Kit — ERC-4337 smart accounts, delegations, and Advanced Permissions (ERC-7715)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2461,2464,2465,2466,2467],{"name":2462,"slug":2463,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":26,"slug":27,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},54,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fsmart-accounts-kit","2026-07-13T06:11:32.8327",{"slug":2472,"name":2472,"fn":2473,"description":2474,"org":2475,"tags":2476,"stars":2468,"repoUrl":2469,"updatedAt":2484},"x402-payments","build x402 payment flows","Build x402 payment flows using MetaMask Smart Accounts Kit, machine to machine payments over HTTP with ERC-7710 delegations and ERC-7715 Advanced Permissions",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2477,2478,2481,2482],{"name":2462,"slug":2463,"type":15},{"name":2479,"slug":2480,"type":15},"Payments","payments",{"name":23,"slug":24,"type":15},{"name":2483,"slug":2483,"type":15},"x402","2026-07-13T06:11:30.877136",{"slug":2486,"name":2486,"fn":2487,"description":2488,"org":2489,"tags":2490,"stars":2495,"repoUrl":2496,"updatedAt":2497},"discovery","discover and use services","Use the discovery tools to find and use services through a service matcher. Do not rely on prior knowledge of services, providers, or APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2491,2492],{"name":2462,"slug":2463,"type":15},{"name":2493,"slug":2494,"type":15},"Search","search",9,"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Focap-kernel","2026-07-13T06:12:37.024095",{"slug":8,"name":8,"fn":2499,"description":2500,"org":2501,"tags":2502,"stars":2495,"repoUrl":2496,"updatedAt":2506},"interact with MetaMask wallet capabilities","Use the MetaMask tools to request and interact with wallet capabilities from the MetaMask capability vendor.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2503,2504,2505],{"name":2462,"slug":2463,"type":15},{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:12:33.955806",{"slug":2508,"name":2508,"fn":2509,"description":2510,"org":2511,"tags":2512,"stars":2495,"repoUrl":2496,"updatedAt":2516},"wallet","manage wallet balances and transactions","Use the wallet tools for all balance, send, and sign operations. Supports both ETH and ERC-20 tokens. The away wallet operates autonomously after setup — the home device does not need to be online.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2513,2514,2515],{"name":26,"slug":27,"type":15},{"name":2479,"slug":2480,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:12:35.380244",{"slug":2518,"name":2518,"fn":2519,"description":2520,"org":2521,"tags":2522,"stars":317,"repoUrl":2531,"updatedAt":2532},"metamask-connect","integrate MetaMask into dApps","Build dApps that integrate MetaMask via the MetaMask Connect SDK — EVM (@metamask\u002Fconnect-evm), Solana (@metamask\u002Fconnect-solana), and multichain (@metamask\u002Fconnect-multichain), plus the wagmi metaMask() connector. Covers client setup across browser\u002FReact\u002FReact Native, connecting, signing messages, sending transactions, multichain invokeMethod across CAIP-2 scopes, migrating from @metamask\u002Fsdk, and troubleshooting connection\u002Fpolyfill issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2523,2524,2525,2528,2530],{"name":2462,"slug":2463,"type":15},{"name":26,"slug":27,"type":15},{"name":2526,"slug":2527,"type":15},"Solana","solana",{"name":2529,"slug":2529,"type":15},"wagmi",{"name":23,"slug":24,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fconnect-monorepo","2026-07-13T06:11:34.445665",{"slug":2534,"name":2534,"fn":2535,"description":2536,"org":2537,"tags":2538,"stars":274,"repoUrl":2547,"updatedAt":2548},"metamask-agent-wallet","manage blockchain wallets and transactions","Use when the user asks anything about blockchain wallets, transactions, signing, token transfers, supported chains, wallet balances, perpetual futures trading, prediction markets, token swaps, cross-chain bridges, market data, token discovery, decoding EVM calldata, DeFi earn\u002Fyield vaults, or authentication via the MetaMask Agentic CLI; also when an HTTP request returns 402 Payment Required (x402) or the agent needs to pay for a paywalled API, endpoint, file, or resource over HTTP. Single entry point for all mm CLI operations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2539,2542,2545,2546],{"name":2540,"slug":2541,"type":15},"Blockchain","blockchain",{"name":2543,"slug":2544,"type":15},"DeFi","defi",{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fagent-skills","2026-08-01T05:45:07.976522",{"slug":2550,"name":2550,"fn":2551,"description":2552,"org":2553,"tags":2554,"stars":168,"repoUrl":2563,"updatedAt":2564},"migrate-from-sdk","migrate MetaMask SDK to connect-evm and connect-solana","Migrate from @metamask\u002Fsdk to @metamask\u002Fconnect-evm, @metamask\u002Fconnect-multichain, and @metamask\u002Fconnect-solana with step-by-step package, API, and configuration changes",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2555,2556,2559,2562],{"name":26,"slug":27,"type":15},{"name":2557,"slug":2558,"type":15},"Migration","migration",{"name":2560,"slug":2561,"type":15},"SDK","sdk",{"name":23,"slug":24,"type":15},"https:\u002F\u002Fgithub.com\u002FMetaMask\u002Fmetamask-connect-cursor-plugin","2026-07-13T06:11:46.427441",{"slug":2566,"name":2566,"fn":2567,"description":2568,"org":2569,"tags":2570,"stars":168,"repoUrl":2563,"updatedAt":2575},"migrate-wagmi-metamask-connector","migrate wagmi apps to MetaMask connector","Migrate a wagmi app from @metamask\u002Fsdk to the new @metamask\u002Fconnect-evm connector (wagmi PR",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2571,2572,2573,2574],{"name":26,"slug":27,"type":15},{"name":2557,"slug":2558,"type":15},{"name":2529,"slug":2529,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:12:23.110706",{"slug":2577,"name":2577,"fn":2578,"description":2579,"org":2580,"tags":2581,"stars":168,"repoUrl":2563,"updatedAt":2585},"send-evm-transaction","send EVM transactions with MetaMask","Send ETH and contract transactions with MetaMask using eth_sendTransaction via the EIP-1193 provider, gas estimation, receipt polling, and the connectWith shortcut",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2582,2583,2584],{"name":2462,"slug":2463,"type":15},{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:11:56.866623",{"slug":2587,"name":2587,"fn":2588,"description":2589,"org":2590,"tags":2591,"stars":168,"repoUrl":2563,"updatedAt":2595},"send-solana-transaction","send Solana transactions via MetaMask","Build and send a Solana transaction using MetaMask Connect. Covers both the React wallet-adapter approach (sendTransaction) and the vanilla browser approach (signAndSendTransaction wallet-standard feature).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2592,2593,2594],{"name":2479,"slug":2480,"type":15},{"name":2526,"slug":2527,"type":15},{"name":23,"slug":24,"type":15},"2026-07-13T06:12:03.942378",{"slug":2597,"name":2597,"fn":2598,"description":2599,"org":2600,"tags":2601,"stars":168,"repoUrl":2563,"updatedAt":2613},"setup-evm-browser-app","scaffold EVM browser applications with MetaMask","Scaffold a vanilla JS\u002FTS browser app with MetaMask EVM integration using createEVMClient, EIP-1193 provider event listeners, RPC methods, and chain switching with chainConfiguration fallback",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2602,2603,2606,2609,2612],{"name":26,"slug":27,"type":15},{"name":2604,"slug":2605,"type":15},"Frontend","frontend",{"name":2607,"slug":2608,"type":15},"JavaScript","javascript",{"name":2610,"slug":2611,"type":15},"TypeScript","typescript",{"name":23,"slug":24,"type":15},"2026-07-13T06:12:01.334051",26,{"items":2616,"total":28},[2617],{"slug":4,"name":4,"fn":5,"description":6,"org":2618,"tags":2619,"stars":28,"repoUrl":29,"updatedAt":30},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2620,2621,2622,2623,2624],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":26,"slug":27,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15}]