Skip to content

Commit 8120fda

Browse files
chore: version typescript packages (#585)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 612149a commit 8120fda

12 files changed

+43
-48
lines changed

typescript/.changeset/fuzzy-birds-beg.md

-5
This file was deleted.

typescript/.changeset/kind-terms-spend.md

-5
This file was deleted.

typescript/.changeset/neat-emus-exist.md

-7
This file was deleted.

typescript/.changeset/ninety-gifts-know.md

-5
This file was deleted.

typescript/.changeset/privy-evm-embedded-wallet.md

-11
This file was deleted.

typescript/.changeset/wide-lions-fly.md

-11
This file was deleted.

typescript/agentkit/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# AgentKit Changelog
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- [#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
8+
9+
- [#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
10+
11+
- `bridge_token` action to bridge native and ERC20 tokens
12+
- `check_deposit_status` action to check the status of bridge deposits
13+
14+
- [#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!)
15+
16+
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.
17+
18+
Key changes:
19+
20+
- Add `PrivyEvmDelegatedEmbeddedWalletProvider` class extending the `EvmWalletProvider` base class
21+
- Update the `PrivyWalletProvider` factory to support embedded wallets via a new `walletType` option
22+
23+
### Patch Changes
24+
25+
- [#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.
26+
327
## 0.4.0
428

529
### Minor Changes

typescript/agentkit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@coinbase/agentkit",
33
"description": "Coinbase AgentKit core primitives",
44
"repository": "https://github.com/coinbase/agentkit",
5-
"version": "0.4.0",
5+
"version": "0.5.0",
66
"author": "Coinbase Inc.",
77
"license": "Apache-2.0",
88
"main": "dist/index.js",

typescript/create-onchain-agent/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Coinbase Create Onchain Agent Changelog
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- [#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
8+
9+
- [#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
10+
11+
Projects bootstrapped with the `create-onchain-agent` CLI will also have the `agenkit` CLI installed.
12+
13+
- `agentkit generate wallet-provider`: Generate a custom wallet provider
14+
- `agentkit generate action-provider`: Generate a custom action provider
15+
- `agentkit generate prepare`: Generate framework-agnostic AgentKit setup
16+
- `agentkit generate create-agent`: Generate framework-specific agent creation
17+
318
## 0.2.0
419

520
### Minor Changes

typescript/create-onchain-agent/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "create-onchain-agent",
33
"description": "Instantly create onchain-agent applications with Coinbase AgentKit.",
44
"repository": "https://github.com/coinbase/agentkit",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"author": "Coinbase Inc.",
77
"license": "Apache-2.0",
88
"scripts": {

typescript/create-onchain-agent/templates/mcp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
1212
},
1313
"dependencies": {
14-
"@coinbase/agentkit": "^0.4.0",
14+
"@coinbase/agentkit": "^0.5.0",
1515
"@coinbase/agentkit-model-context-protocol": "^0.2.0",
1616
"@modelcontextprotocol/sdk": "^1.6.1",
1717
"@solana/web3.js": "^1.98.0",

typescript/create-onchain-agent/templates/next/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@ai-sdk/openai": "^1.2.1",
13-
"@coinbase/agentkit": "^0.4.0",
13+
"@coinbase/agentkit": "^0.5.0",
1414
"@coinbase/agentkit-langchain": "^0.3.0",
1515
"@coinbase/agentkit-vercel-ai-sdk": "^0.1.0",
1616
"@langchain/core": "^0.3.19",

0 commit comments

Comments
 (0)