Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.0"
".": "1.0.0"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

## 1.0.0 (2025-11-08)


### Features

* add release configuration and workflows for automated publishing ([#8](https://github.com/Sendo-labs/plugin-sendo-analyser/issues/8)) ([5d3fe50](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/5d3fe5081f08caa5be8d12e1fb8b6638e7bec16a))
* async wallet analysis with caching and dynamic rate limiting ([#11](https://github.com/Sendo-labs/plugin-sendo-analyser/issues/11)) ([661a279](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/661a2790d461b4d22213d1c35cc59a6d4c88e185))
* use latest sendo-api updates ([#6](https://github.com/Sendo-labs/plugin-sendo-analyser/issues/6)) ([fa40b2b](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/fa40b2b41bda39afcc44332d79b09e20ce3c2d5d))


### Bug Fixes

* add bs58 in package.json ([#9](https://github.com/Sendo-labs/plugin-sendo-analyser/issues/9)) ([b23059d](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/b23059d1629a8cb0f55c6f1399766d116e59da8b))
* install good bs58 OK ([#10](https://github.com/Sendo-labs/plugin-sendo-analyser/issues/10)) ([2098e12](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/2098e128f5e72e2ce110e85626dfa75968bdecff))
* package ([6bc3267](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/6bc32677699dd94735a132b0f39b8b7894457460))
* package ([57037e2](https://github.com/Sendo-labs/plugin-sendo-analyser/commit/57037e2d65c262fb2b55174e47e6905306b3c051))
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sendo-labs/plugin-sendo-analyser",
"description": "Sendo Analyser plugin for ElizaOS - provides blockchain wallet analysis and insights using sendo-api",
"version": "1.3.0",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down Expand Up @@ -31,25 +31,27 @@
"@elizaos/core": "^1.6.3",
"@solana/buffer-layout": "^4.0.1",
"@solana/buffer-layout-utils": "^0.3.0",
"@solana/web3.js": "^1.98.4",
"@types/bn.js": "^5.2.0",
"@types/pg": "^8.15.5",
"axios": "^1.12.2",
"bn": "^1.0.5",
"bn.js": "^5.2.2",
"bs58": "^6.0.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.6",
"fix-dts-default-cjs-exports": "^1.0.1",
"helius-sdk": "^2.0.2",
"pg": "^8.16.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@electric-sql/pglite": "^0.3.11",
"@elizaos/plugin-openai": "^1.5.16",
"@elizaos/plugin-openrouter": "^1.5.14",
"@types/bun": "^1.3.0",
"@types/node": "^24.7.0",
"knip": "^5.68.0",
"prettier": "3.5.3",
"ts-prune": "^0.10.3",
"tsup": "8.5.0",
"typescript": "5.9.3"
},
Expand All @@ -61,8 +63,6 @@
"format": "biome format --write .",
"format:check": "prettier --check ./src",
"check": "biome check --write .",
"check:dead-code": "knip",
"check:exports": "ts-prune",
"test": "elizaos test",
"test:unit": "bun test --bail src/__tests__/unit/*.test.ts",
"test:integration": "bun test --bail src/__tests__/integration/*.test.ts",
Expand All @@ -77,4 +77,4 @@
"sendoApiUrl": "http://localhost:3000/api/v1"
}
}
}
}