diff --git a/submissions/uniswap-viem-integration/LICENSE b/submissions/uniswap-viem-integration/LICENSE new file mode 100644 index 0000000..fb60be1 --- /dev/null +++ b/submissions/uniswap-viem-integration/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Uniswap Labs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/submissions/uniswap-viem-integration/README.md b/submissions/uniswap-viem-integration/README.md new file mode 100644 index 0000000..0483c37 --- /dev/null +++ b/submissions/uniswap-viem-integration/README.md @@ -0,0 +1,24 @@ +# uniswap-viem-integration + +Integrate EVM blockchains using viem and wagmi for TypeScript and JavaScript applications + +## Source + +This skill is maintained by Uniswap Labs in the [uniswap-ai](https://github.com/uniswap/uniswap-ai) monorepo. + +The canonical source is at [`packages/plugins/uniswap-viem/skills/viem-integration/`](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-viem/skills/viem-integration). + +### What It Does + +- Guides AI agents through setting up viem clients, accounts, and chain configurations +- Covers reading blockchain data, sending transactions, and smart contract interactions +- Provides patterns for wallet integration using wagmi + +### Related Skills + +- **uniswap-swap-integration**: Build swap functionality using viem as the transport layer +- **uniswap-v4-security-foundations**: Security patterns for v4 hook smart contracts + +## License + +MIT diff --git a/submissions/uniswap-viem-integration/plugin.yaml b/submissions/uniswap-viem-integration/plugin.yaml new file mode 100644 index 0000000..fbec26c --- /dev/null +++ b/submissions/uniswap-viem-integration/plugin.yaml @@ -0,0 +1,23 @@ +schema_version: 1 +name: uniswap-viem-integration +version: "1.0.0" +description: "Integrate EVM blockchains using viem and wagmi for TypeScript and JavaScript applications" +author: + name: "Uniswap Labs" + github: "wkoutre" +license: MIT +category: utility +tags: + - viem + - wagmi + - ethereum + - evm + - blockchain + - typescript + - smart-contracts + +components: + skill: + dir: skills/uniswap-viem-integration + +api_calls: [] diff --git a/submissions/uniswap-viem-integration/skills/uniswap-viem-integration/SKILL.md b/submissions/uniswap-viem-integration/skills/uniswap-viem-integration/SKILL.md new file mode 100644 index 0000000..9cc1d41 --- /dev/null +++ b/submissions/uniswap-viem-integration/skills/uniswap-viem-integration/SKILL.md @@ -0,0 +1,25 @@ +--- +name: uniswap-viem-integration +description: "Integrate EVM blockchains using viem and wagmi for TypeScript and JavaScript applications" +version: "1.0.0" +author: "Uniswap Labs" +tags: + - uniswap + - defi +--- + +# uniswap-viem-integration + +This skill is maintained by Uniswap Labs. Install the full version: + +``` +npx skills add Uniswap/uniswap-ai +``` + +Or install just this plugin: + +``` +claude plugin add @uniswap/uniswap-viem +``` + +Source: [uniswap-ai/packages/plugins/uniswap-viem/skills/viem-integration](https://github.com/uniswap/uniswap-ai/tree/main/packages/plugins/uniswap-viem/skills/viem-integration)