Skip to content

Commit

Permalink
v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thearyanag committed Feb 14, 2025
1 parent 6f1dff3 commit a6cbef0
Show file tree
Hide file tree
Showing 16 changed files with 628 additions and 49 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"name": "solana-agent-kit",
"version": "1.0.0",
"description": "connect any ai agents to solana protocols",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
Expand All @@ -16,7 +18,9 @@
"lint": "turbo run lint",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "husky"
"prepare": "husky",
"version-packages": "changeset version",
"publish-packages": "turbo run build && changeset publish"
},
"engines": {
"node": ">=22.0.0",
Expand All @@ -32,6 +36,7 @@
"author": "sendaifun",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# solana-agent-kit

## 2.0.0-beta.1

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solana-agent-kit",
"version": "1.0.0",
"version": "2.0.0-beta.1",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
12 changes: 12 additions & 0 deletions packages/plugin-blinks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @solana-agent-kit/plugin-blinks

## 2.0.0

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture

### Patch Changes

- Updated dependencies
- [email protected]
7 changes: 5 additions & 2 deletions packages/plugin-blinks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@solana-agent-kit/plugin-blinks",
"version": "1.0.0",
"version": "2.0.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand All @@ -14,6 +17,6 @@
"zod": "^3.24.1"
},
"peerDependencies": {
"solana-agent-kit": "^1.0.0"
"solana-agent-kit": "2.0.0-beta.1"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-defi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @solana-agent-kit/plugin-defi

## 2.0.0

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture

### Patch Changes

- Updated dependencies
- [email protected]
7 changes: 5 additions & 2 deletions packages/plugin-defi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@solana-agent-kit/plugin-defi",
"version": "1.0.0",
"version": "2.0.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand Down Expand Up @@ -32,6 +35,6 @@
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"solana-agent-kit": "^1.0.0"
"solana-agent-kit": "2.0.0-beta.1"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-misc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @solana-agent-kit/plugin-misc

## 2.0.0

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture

### Patch Changes

- Updated dependencies
- [email protected]
7 changes: 5 additions & 2 deletions packages/plugin-misc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@solana-agent-kit/plugin-misc",
"version": "1.0.0",
"version": "2.0.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand All @@ -22,6 +25,6 @@
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"solana-agent-kit": "^1.0.0"
"solana-agent-kit": "2.0.0-beta.1"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-nft/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @solana-agent-kit/plugin-nft

## 2.0.0

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture

### Patch Changes

- Updated dependencies
- [email protected]
7 changes: 5 additions & 2 deletions packages/plugin-nft/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@solana-agent-kit/plugin-nft",
"version": "1.0.0",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"build": "tsc",
Expand All @@ -27,6 +30,6 @@
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"solana-agent-kit": "^1.0.0"
"solana-agent-kit": "2.0.0-beta.1"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-token/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @solana-agent-kit/plugin-token

## 2.0.0

### Major Changes

- We are shifting to a new architecture -- v2, which introduces the plugins architecture

### Patch Changes

- Updated dependencies
- [email protected]
7 changes: 5 additions & 2 deletions packages/plugin-token/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@solana-agent-kit/plugin-token",
"version": "1.0.0",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"build": "tsc",
Expand Down Expand Up @@ -36,6 +39,6 @@
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"solana-agent-kit": "^1.0.0"
"solana-agent-kit": "2.0.0-beta.1"
}
}
Loading

0 comments on commit a6cbef0

Please sign in to comment.