UNPKG

@elizaos/plugin-arthera

Version:

Arthera blockchain plugin for ElizaOS - Enables native token transfers and wallet management on Arthera network

80 lines 2 kB
{ "name": "@elizaos/plugin-arthera", "version": "1.0.5", "description": "Arthera blockchain plugin for ElizaOS - Enables native token transfers and wallet management on Arthera network", "type": "module", "author": "elizaOS Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/elizaos-plugins/plugin-arthera" }, "keywords": [ "elizaos", "plugin", "arthera", "blockchain", "crypto", "transfers", "wallet" ], "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "@elizaos/source": "./src/index.ts", "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "files": [ "dist" ], "dependencies": { "@elizaos/core": "^1.0.0", "viem": "2.21.58" }, "devDependencies": { "@types/node": "^20.0.0", "tsup": "8.3.5", "typescript": "^5.7.3", "prettier": "^3.0.0", "bun": "^1.2.15", "@types/bun": "latest" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "prettier --write ./src", "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo", "format": "prettier --write ./src", "format:check": "prettier --check ./src", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "ARTHERA_PRIVATE_KEY": { "type": "string", "description": "Private key for Arthera wallet", "required": true, "sensitive": true }, "ETHEREUM_PROVIDER_ARTHERA": { "type": "string", "description": "Optional: Custom RPC URL for Arthera network", "required": false, "sensitive": false } } } }