Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Li.fi plugin #450

Merged
merged 8 commits into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -241,4 +241,3 @@ See guides on how to do that here:
# 🤝 Community
- Follow us on [X](https://x.com/goat_sdk)
- Join our [Discord](https://discord.gg/goat-sdk)

47 changes: 47 additions & 0 deletions typescript/packages/plugins/lifi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<div align="center">
<a href="https://github.com/goat-sdk/goat">
<img src="https://github.com/user-attachments/assets/5fc7f121-259c-492c-8bca-f15fe7eb830c" alt="GOAT" width="100px" height="auto" style="object-fit: contain;">
</a>
</div>

# LiFi GOAT Plugin

Bridge tokens across chains using [LiFi](https://li.fi/).

## Installation

```bash
npm install @goat-sdk/plugin-lifi
yarn add @goat-sdk/plugin-lifi
pnpm add @goat-sdk/plugin-lifi
```

## Usage

```typescript
import { lifi } from "@goat-sdk/plugin-lifi";

const tools = await getOnChainTools({
wallet: // ...
plugins: [
lifi({
apiKey: "your-lifi-api-key" // optional
})
]
});
```

## Tools

- Get bridge quotes
- Execute cross-chain token transfers

<footer>
<br/>
<br/>
<div>
<a href="https://github.com/goat-sdk/goat">
<img src="https://github.com/user-attachments/assets/59fa5ddc-9d47-4d41-a51a-64f6798f94bd" alt="GOAT" width="100%" height="auto" style="object-fit: contain; max-width: 800px;">
</a>
</div>
</footer>
35 changes: 35 additions & 0 deletions typescript/packages/plugins/lifi/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "@goat-sdk/plugin-lifi",
"version": "0.1.0",
"files": ["dist/**/*", "README.md", "package.json"],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"test": "vitest run --passWithNoTests"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"dependencies": {
"@goat-sdk/core": "workspace:*",
"@goat-sdk/wallet-evm": "workspace:*",
"axios": "1.8.3",
"viem": "catalog:",
"zod": "catalog:"
},
"peerDependencies": {
"@goat-sdk/core": "workspace:*",
"viem": "catalog:"
},
"homepage": "https://ohmygoat.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/goat-sdk/goat.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/goat-sdk/goat/issues"
},
"keywords": ["ai", "agents", "web3", "defi"]
}
Loading