|
1 | 1 | # `@ai16z/plugin-cosmos`
|
2 | 2 |
|
3 |
| -This plugin provides actions and providers for interacting with Cosmos compatible chains. |
| 3 | +This plugin provides actions and utilities for interacting with Cosmos-compatible blockchains. |
4 | 4 |
|
5 | 5 | ---
|
6 | 6 |
|
| 7 | +## Development |
| 8 | + |
| 9 | +Prepare Eliza according to [README](../../README.md) |
| 10 | + Add variables required for `@ai16z/plugin-cosmos` : |
| 11 | + ``` |
| 12 | +COSMOS_RECOVERY_PHRASE=your recovery phrase words |
| 13 | +COSMOS_AVAILABLE_CHAINS=chain1,chain2,chain3 |
| 14 | + ``` |
| 15 | + |
| 16 | +Run Eliza with `@ai16z/plugin-cosmos` character: |
| 17 | +``` |
| 18 | +pnpm run dev --characters="../cosmosHelper.character.json" |
| 19 | +``` |
| 20 | + |
7 | 21 | ## Configuration
|
8 | 22 |
|
9 | 23 | ### Default Setup
|
10 | 24 |
|
11 |
| -### Adding Support for Other Chains |
| 25 | +To start using the plugin, you need to provide your **Cosmos account recovery phrases** and the list of **available chains**. Add the following to your `.env` file: |
| 26 | + |
| 27 | + |
| 28 | +```env |
| 29 | +COSMOS_RECOVERY_PHRASE=your recovery phrase words |
| 30 | +COSMOS_AVAILABLE_CHAINS=chain1,chain2,chain3 |
| 31 | +``` |
| 32 | +Ensure that the chain names in `COSMOS_AVAILABLE_CHAINS` match the identifiers from the [chain-registry](https://github.com/cosmos/chain-registry) library for compatibility. |
| 33 | + |
| 34 | + |
| 35 | +### Using the Cosmos Helper Character |
| 36 | + |
| 37 | +The plugin includes a pre-configured character, `cosmosHelper.character.json`, optimized for Cosmos-related operations. This character enhances interaction by: |
| 38 | + |
| 39 | +- Handling repeated prompts effectively. |
12 | 40 |
|
13 |
| -## Provider |
| 41 | +- Requesting confirmation before executing detected actions. |
| 42 | + |
| 43 | +To use the character, pass it with the `--characters` flag: |
| 44 | + |
| 45 | +```bash |
| 46 | +--characters='../characters/cosmosHelper.character.json' |
| 47 | +``` |
| 48 | + |
| 49 | +--- |
| 50 | + |
| 51 | +### Custom chain configuration |
| 52 | +Plugin allows you to pass you custom chain config to `createCosmosPlugin` function invoked in `../agent/src/index`. |
| 53 | + |
| 54 | +Your custom configuration fulfills the interfaces from `chain-registry` |
| 55 | +``` |
| 56 | +import type { assets, chains } from "chain-registry"; |
| 57 | +
|
| 58 | +export interface ICosmosPluginCustomChainData { |
| 59 | + chainData: (typeof chains)[number]; |
| 60 | + assets: (typeof assets)[number]; |
| 61 | +} |
| 62 | +
|
| 63 | +export interface ICosmosPluginOptions { |
| 64 | + customChainData?: ICosmosPluginCustomChainData[]; |
| 65 | +} |
| 66 | +``` |
14 | 67 |
|
15 | 68 | ## Actions
|
16 | 69 |
|
17 |
| -### Transfer |
| 70 | +### Token Transfer |
| 71 | + |
| 72 | +This plugin supports a token transfer action, which allows users to transfer tokens between addresses on Cosmos-compatible blockchains. The action prompts for confirmation to ensure secure execution. |
| 73 | + |
| 74 | +#### Example Prompts |
| 75 | + |
| 76 | +Below are examples of how the transfer action can be initiated and confirmed: |
| 77 | + |
| 78 | +**Example** |
| 79 | + |
| 80 | +1. User input: |
| 81 | + |
| 82 | +``` |
| 83 | +Make transfer 0.0001 ATOM to cosmos1nk3uuw6zt5t5aqw5fvujkd54sa4uws9xv465ad on cosmoshubtestnet. |
| 84 | +``` |
| 85 | + |
| 86 | +2. Plugin response: |
| 87 | + |
| 88 | +``` |
| 89 | +Do you confirm the transfer action? |
| 90 | +``` |
| 91 | + |
| 92 | +3. User confirmation: |
| 93 | + |
| 94 | +``` |
| 95 | +Yes |
| 96 | +``` |
| 97 | + |
| 98 | +4. Action executed. |
| 99 | + |
| 100 | +--- |
| 101 | + |
| 102 | +## Contribution |
| 103 | + |
| 104 | +The plugin includes comprehensive tests. Before submitting any pull requests, ensure all tests pass. |
18 | 105 |
|
19 | 106 | ### Running Tests
|
20 | 107 |
|
21 |
| -Navigate to the `plugin-cosmos` directory and run: |
| 108 | +Navigate to the `plugin-cosmos` directory and execute: |
22 | 109 |
|
23 | 110 | ```bash
|
24 |
| -pnpm test |
| 111 | +pnpm test |
25 | 112 | ```
|
| 113 | + |
| 114 | +--- |
| 115 | + |
| 116 | +This plugin simplifies Cosmos blockchain interactions and enhances productivity with its tailored features. Happy building! |
0 commit comments