Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinfello/agent-cli",
"version": "0.3.4",
"version": "0.3.5",
"description": "CLI for managing a web3 smart account and executing blockchain transactions via CoinFello",
"repository": "CoinFello/agent-cli",
"homepage": "https://coinfello.com",
Expand Down Expand Up @@ -32,7 +32,7 @@
"license": "MIT",
"packageManager": "pnpm@10.24.0",
"dependencies": {
"@metamask/smart-accounts-kit": "0.4.0-beta.1",
"@metamask/smart-accounts-kit": "1.1.0",
"commander": "^14.0.3",
"tough-cookie": "^6.0.0",
"viem": "^2.45.1"
Expand Down
69 changes: 43 additions & 26 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const SUPPORTED_CHAINS_MAP: Record<number, string> = {
56: 'BNB Smart Chain',
137: 'Polygon',
8453: 'Base',
5000: 'Mantle',
42161: 'Arbitrum One',
59144: 'Linea',
11155111: 'Sepolia (testnet)',
Expand Down
1 change: 1 addition & 0 deletions src/services/createPublicClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const QUICKNODE_SLUGS: Record<number, string> = {
8453: '.base-mainnet',
84532: '.base-sepolia',
10: '.optimism',
5000: '.mantle-mainnet',
42161: '.arbitrum-mainnet',
11155111: '.ethereum-sepolia',
}
Expand Down
Loading