Skip to content

Commit d60be7e

Browse files
Merge pull request #4 from blockydevs/ELIZAAI-1-set-up-repository-and-add-initial-readme
chore: initialize cosmos plugin
2 parents ea8cfb3 + 3165999 commit d60be7e

File tree

9 files changed

+138
-0
lines changed

9 files changed

+138
-0
lines changed

agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"@ai16z/plugin-coinbase": "workspace:*",
3636
"@ai16z/plugin-conflux": "workspace:*",
3737
"@ai16z/plugin-evm": "workspace:*",
38+
"@ai16z/plugin-cosmos": "workspace:*",
3839
"@ai16z/plugin-flow": "workspace:*",
3940
"@ai16z/plugin-story": "workspace:*",
4041
"@ai16z/plugin-goat": "workspace:*",

agent/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ import {
4141
} from "@ai16z/plugin-coinbase";
4242
import { confluxPlugin } from "@ai16z/plugin-conflux";
4343
import { evmPlugin } from "@ai16z/plugin-evm";
44+
import { cosmosPlugin } from "@ai16z/plugin-cosmos";
4445
import { storyPlugin } from "@ai16z/plugin-story";
4546
import { flowPlugin } from "@ai16z/plugin-flow";
4647
import { imageGenerationPlugin } from "@ai16z/plugin-image-generation";
@@ -510,6 +511,7 @@ export async function createAgent(
510511
getSecret(character, "WALLET_PUBLIC_KEY")?.startsWith("0x"))
511512
? evmPlugin
512513
: null,
514+
cosmosPlugin,
513515
(getSecret(character, "SOLANA_PUBLIC_KEY") ||
514516
(getSecret(character, "WALLET_PUBLIC_KEY") &&
515517
!getSecret(character, "WALLET_PUBLIC_KEY")?.startsWith(

packages/plugin-cosmos/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# `@ai16z/plugin-cosmos`
2+
3+
This plugin provides actions and providers for interacting with Cosmos compatible chains.
4+
5+
---
6+
7+
## Configuration
8+
9+
### Default Setup
10+
11+
### Adding Support for Other Chains
12+
13+
## Provider
14+
15+
## Actions
16+
17+
### Transfer
18+
19+
### Running Tests
20+
21+
Navigate to the `plugin-cosmos` directory and run:
22+
23+
```bash
24+
pnpm test
25+
```
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import eslintGlobalConfig from "../../eslint.config.mjs";
2+
3+
export default [
4+
...eslintGlobalConfig,
5+
{
6+
rules: {
7+
indent: ["error", 2],
8+
'padding-line-between-statements': [
9+
'error',
10+
// Blank line between "use strict" (or other directives) and imports
11+
{ blankLine: 'always', prev: 'directive', next: 'import' },
12+
13+
// No blank lines between import statements
14+
{ blankLine: 'never', prev: 'import', next: 'import' },
15+
16+
// One blank line after the last import statement
17+
{
18+
blankLine: 'always',
19+
prev: 'import',
20+
next: ['const', 'let', 'var', 'function', 'expression', 'if', 'block', 'class', 'export', 'block-like']
21+
},
22+
23+
{ blankLine: 'always', prev: '*', next: 'return' },
24+
{ blankLine: 'always', prev: ['const', 'let', 'var'], next: '*' },
25+
{ blankLine: 'any', prev: ['const', 'let', 'var'], next: ['const', 'let', 'var'] },
26+
{ blankLine: 'always', prev: '*', next: 'block-like' }
27+
],
28+
"no-unused-vars": [
29+
"error",
30+
{
31+
argsIgnorePattern: "^_",
32+
varsIgnorePattern: "^_",
33+
ignoreRestSiblings: true,
34+
},
35+
],
36+
'prefer-const': ['error', { ignoreReadBeforeAssign: true }],
37+
},
38+
},
39+
];

packages/plugin-cosmos/package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "@ai16z/plugin-cosmos",
3+
"version": "1.0.0",
4+
"main": "dist/index.js",
5+
"type": "module",
6+
"types": "dist/index.d.ts",
7+
"dependencies": {
8+
"tsup": "8.3.5"
9+
},
10+
"scripts": {
11+
"build": "tsup --format esm --dts",
12+
"dev": "tsup --format esm --dts --watch",
13+
"lint": "eslint --fix --cache .",
14+
"test": "vitest run"
15+
}
16+
}

packages/plugin-cosmos/src/index.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { Plugin } from "@ai16z/eliza";
2+
3+
export const cosmosPlugin: Plugin = {
4+
name: "Cosmos",
5+
description: "Cosmos blockchain integration plugin",
6+
providers: [],
7+
evaluators: [],
8+
services: [],
9+
actions: [],
10+
};
11+
12+
export default cosmosPlugin;

packages/plugin-cosmos/tsconfig.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": "../core/tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "dist",
5+
"rootDir": "./src",
6+
"typeRoots": [
7+
"./node_modules/@types",
8+
"./src/types"
9+
],
10+
"declaration": true
11+
},
12+
"include": [
13+
"src"
14+
]
15+
}

packages/plugin-cosmos/tsup.config.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { defineConfig } from "tsup";
2+
3+
export default defineConfig({
4+
entry: ["src/index.ts"],
5+
outDir: "dist",
6+
sourcemap: true,
7+
clean: true,
8+
format: ["esm"], // Ensure you're targeting CommonJS
9+
external: [
10+
"dotenv", // Externalize dotenv to prevent bundling
11+
"fs", // Externalize fs to use Node.js built-in module
12+
"path", // Externalize other built-ins if necessary
13+
"@reflink/reflink",
14+
"@node-llama-cpp",
15+
"https",
16+
"http",
17+
"agentkeepalive",
18+
],
19+
});

pnpm-lock.yaml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)