-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Ironclad.plugin.ts * Add abis * Add IronClad.service.ts and revamp parameters.ts * Remove CtorParams, add index.ts * Add monitor loop position * Fix Looped Deposit function * Fix LoopedWithdraw function * Test borrowiUSD * Add borrowerInteractions contract support * Fix borrow iUSD and monitor iUSD position * Fix repay iUSD * Remove console.logs * Revert changes of example file * Change params according to PR comments * Change function names to be imperative * Re-Install and re-generate pnpm lock file * Fix a bug in repay iUSD * Update version * Break borrow iUSD into separate steps * Fix all Ironclad functions, removing extra approve calls * Revert changes in mode example * Pnpm fix * Fix lint * Add changeset --------- Co-authored-by: Agustin Armellini Fischer <[email protected]>
- Loading branch information
1 parent
34596ce
commit dfd5a63
Showing
19 changed files
with
8,726 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@goat-sdk/plugin-ironclad": patch | ||
--- | ||
|
||
Release plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"name": "@goat-sdk/plugin-ironclad", | ||
"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:*", | ||
"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", "lending"] | ||
} |
Oops, something went wrong.