Skip to content

Commit

Permalink
refactor(safe-wallet): Minor code formatting and import reorganization
Browse files Browse the repository at this point in the history
- Reorder imports in multiple files for consistency
- Remove unnecessary whitespace and adjust code formatting
- Maintain existing functionality while improving code readability
  • Loading branch information
Fbartoli committed Feb 10, 2025
1 parent 4c502c9 commit da25301
Show file tree
Hide file tree
Showing 5 changed files with 307 additions and 344 deletions.
2 changes: 1 addition & 1 deletion typescript/examples/langchain/safe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { baseSepolia } from "viem/chains";
import { getOnChainTools } from "@goat-sdk/adapter-langchain";

import { sendETH } from "@goat-sdk/wallet-evm";
import { safe, getAddressPlugin } from "@goat-sdk/wallet-safe";
import { getAddressPlugin, safe } from "@goat-sdk/wallet-safe";
require("dotenv").config();

const pk = process.env.WALLET_PRIVATE_KEY as `0x${string}`;
Expand Down
12 changes: 2 additions & 10 deletions typescript/packages/wallets/safe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"name": "@goat-sdk/wallet-safe",
"version": "0.1.1",
"sideEffects": false,
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"files": ["dist/**/*", "README.md", "package.json"],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
Expand Down Expand Up @@ -39,9 +35,5 @@
"bugs": {
"url": "https://github.com/goat-sdk/goat/issues"
},
"keywords": [
"ai",
"agents",
"web3"
]
"keywords": ["ai", "agents", "web3"]
}
Loading

0 comments on commit da25301

Please sign in to comment.