UNPKG

plugin-coti

Version:

COTI blockchain plugin for ElizaOS - enables private token operations and encrypted transactions

95 lines 2.27 kB
{ "name": "plugin-coti", "description": "COTI blockchain plugin for ElizaOS - enables private token operations and encrypted transactions", "version": "0.3.0", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "packageType": "plugin", "platform": "node", "license": "UNLICENSED", "author": "cuongpo", "keywords": [ "plugin", "elizaos", "coti", "blockchain", "crypto" ], "repository": { "type": "git", "url": "git+https://github.com/cuongpo/plugin-coti.git" }, "homepage": "https://elizaos.ai", "bugs": { "url": "https://github.com/cuongpo/plugin-coti/issues" }, "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "files": [ "dist", "README.md", ".npmignore", "package.json", "tsup.config.ts" ], "dependencies": { "@bancor/carbon-sdk": "^0.0.122-DEV", "@coti-io/coti-ethers": "^1.0.0", "@coti-io/coti-sdk-typescript": "^1.0.4", "@elizaos/core": "latest", "ethers": "^5.8.0", "zod": "^3.24.4" }, "devDependencies": { "@elizaos/cli": "latest", "dotenv": "16.4.5", "prettier": "3.5.3", "tsup": "8.5.0", "typescript": "5.8.2" }, "scripts": { "start": "elizaos start", "dev": "elizaos dev", "build": "tsc --noEmit && tsup", "test": "bun test", "format": "prettier --write ./src" }, "publishConfig": { "access": "public" }, "resolutions": { "zod": "^3.24.4" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "COTI_PRIVATE_KEY": { "type": "string", "description": "Private key for COTI wallet" }, "COTI_AES_KEY": { "type": "string", "description": "AES key for COTI private token encryption" }, "COTI_RPC_URL": { "type": "string", "description": "RPC URL for COTI network" }, "COTI_NETWORK_ID": { "type": "string", "description": "Network ID for COTI blockchain" } } }, "gitHead": "d5bd5c43bfebeb7ac02f9e029f924cb6cd5c2ec7", "npmPackage": "plugin-coti" }