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
5 changes: 0 additions & 5 deletions typescript/.changeset/fuzzy-birds-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions typescript/.changeset/kind-terms-spend.md

This file was deleted.

7 changes: 0 additions & 7 deletions typescript/.changeset/neat-emus-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions typescript/.changeset/ninety-gifts-know.md

This file was deleted.

11 changes: 0 additions & 11 deletions typescript/.changeset/privy-evm-embedded-wallet.md

This file was deleted.

11 changes: 0 additions & 11 deletions typescript/.changeset/wide-lions-fly.md

This file was deleted.

24 changes: 24 additions & 0 deletions typescript/agentkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# AgentKit Changelog

## 0.5.0

### Minor Changes

- [#584](https://github.com/coinbase/agentkit/pull/584) [`6d8ac5b`](https://github.com/coinbase/agentkit/commit/6d8ac5b6608fafe1ee4256caac3ad93659d87c8b) Thanks [@CarsonRoscoe](https://github.com/CarsonRoscoe)! - Added gasless transfers for USDC/CBBTC on Base/Base-Sepolia

- [#566](https://github.com/coinbase/agentkit/pull/566) [`bfd6442`](https://github.com/coinbase/agentkit/commit/bfd6442df09247efe2b3d378ca3e49c123b19f8c) Thanks [@phdargen](https://github.com/phdargen)! - Added AcrossActionProvider to allow bridging tokens using the Across protocol

- `bridge_token` action to bridge native and ERC20 tokens
- `check_deposit_status` action to check the status of bridge deposits

- [#618](https://github.com/coinbase/agentkit/pull/618) [`155d468`](https://github.com/coinbase/agentkit/commit/155d468ec5973a5bd3ab9c66e7981aaa544f6717) Thanks [@CarsonRoscoe](https://github.com/CarsonRoscoe)! - Added support for Privy Evm embedded wallets with delegation. (Thanks @njokuScript!)

This change introduces a new wallet provider, `PrivyEvmDelegatedEmbeddedWalletProvider`, which allows AgentKit to use Privy's embedded wallets that have been delegated to a server. This enables autonomous agents to perform onchain actions on behalf of users who have delegated transaction signing authority to the agent.

Key changes:

- Add `PrivyEvmDelegatedEmbeddedWalletProvider` class extending the `EvmWalletProvider` base class
- Update the `PrivyWalletProvider` factory to support embedded wallets via a new `walletType` option

### Patch Changes

- [#619](https://github.com/coinbase/agentkit/pull/619) [`6514e0c`](https://github.com/coinbase/agentkit/commit/6514e0c2fd561525092deafc231853182d9a7d1e) Thanks [@stat](https://github.com/stat)! - Add a new Messari action provider that enables AI agents to query the Messari AI toolkit for crypto market research data.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion typescript/agentkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@coinbase/agentkit",
"description": "Coinbase AgentKit core primitives",
"repository": "https://github.com/coinbase/agentkit",
"version": "0.4.0",
"version": "0.5.0",
"author": "Coinbase Inc.",
"license": "Apache-2.0",
"main": "dist/index.js",
Expand Down
15 changes: 15 additions & 0 deletions typescript/create-onchain-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Coinbase Create Onchain Agent Changelog

## 0.3.0

### Minor Changes

- [#622](https://github.com/coinbase/agentkit/pull/622) [`1076bb6`](https://github.com/coinbase/agentkit/commit/1076bb661ad6ff533006777ec658547d5a15f1b1) Thanks [@CarsonRoscoe](https://github.com/CarsonRoscoe)! - Updated default wallet provider to SmartWalletProvider

- [#589](https://github.com/coinbase/agentkit/pull/589) [`3aa7931`](https://github.com/coinbase/agentkit/commit/3aa793137c1d7ff0a57fb68be0a97cc1978b51d8) Thanks [@CarsonRoscoe](https://github.com/CarsonRoscoe)! - Added code generation for individual building blocks

Projects bootstrapped with the `create-onchain-agent` CLI will also have the `agenkit` CLI installed.

- `agentkit generate wallet-provider`: Generate a custom wallet provider
- `agentkit generate action-provider`: Generate a custom action provider
- `agentkit generate prepare`: Generate framework-agnostic AgentKit setup
- `agentkit generate create-agent`: Generate framework-specific agent creation

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion typescript/create-onchain-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "create-onchain-agent",
"description": "Instantly create onchain-agent applications with Coinbase AgentKit.",
"repository": "https://github.com/coinbase/agentkit",
"version": "0.2.0",
"version": "0.3.0",
"author": "Coinbase Inc.",
"license": "Apache-2.0",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
},
"dependencies": {
"@coinbase/agentkit": "^0.4.0",
"@coinbase/agentkit": "^0.5.0",
"@coinbase/agentkit-model-context-protocol": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.6.1",
"@solana/web3.js": "^1.98.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@ai-sdk/openai": "^1.2.1",
"@coinbase/agentkit": "^0.4.0",
"@coinbase/agentkit": "^0.5.0",
"@coinbase/agentkit-langchain": "^0.3.0",
"@coinbase/agentkit-vercel-ai-sdk": "^0.1.0",
"@langchain/core": "^0.3.19",
Expand Down