Skip to content

Commit 2f8b6ae

Browse files
committed
Added Lens Testnet Network Support
1 parent d444d11 commit 2f8b6ae

File tree

3 files changed

+15
-332
lines changed

3 files changed

+15
-332
lines changed

packages/plugin-lensNetwork/README.md

+13-113
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,32 @@ The Abstract plugin enables seamless token transfers on the Abstract testnet. It
88
## Installation
99

1010
```bash
11-
pnpm install @elizaos/plugin-abstract
11+
pnpm install @elizaos/plugin-lensNetwork
1212
```
1313

1414
## Configuration
1515

1616
The plugin requires the following environment variables to be set:
1717
```typescript
18-
ABSTRACT_ADDRESS=<Your Abstract wallet address>
19-
ABSTRACT_PRIVATE_KEY=<Your Abstract private key>
18+
LENS_ADDRESS=<Your Lens wallet address>
19+
LENS_PRIVATE_KEY=<Your Lens private key>
2020
```
2121

2222
## Usage
2323

2424
### Basic Integration
2525

2626
```typescript
27-
import { abstractPlugin } from '@elizaos/plugin-abstract';
27+
import { lensPlugin } from '@elizaos/plugin-lensNetwork';
2828
```
2929

3030
### Transfer Examples
3131

3232
```typescript
3333
// The plugin responds to natural language commands like:
3434

35-
"Send 100 USDC to 0xCCa8009f5e09F8C5dB63cb0031052F9CB635Af62"
36-
"Transfer 0.1 ETH to 0xbD8679cf79137042214fA4239b02F4022208EE82"
37-
"Pay 50 USDC on Abstract to [address]"
35+
"Send 1 Grass to 0xCCa8009f5e09F8C5dB63cb0031052F9CB635Af62"
36+
3837
```
3938

4039
## API Reference
@@ -46,13 +45,13 @@ import { abstractPlugin } from '@elizaos/plugin-abstract';
4645
Transfers tokens from the agent's wallet to another address.
4746

4847
**Aliases:**
49-
- TRANSFER_TOKEN_ON_ABSTRACT
50-
- TRANSFER_TOKENS_ON_ABSTRACT
51-
- SEND_TOKENS_ON_ABSTRACT
52-
- SEND_ETH_ON_ABSTRACT
53-
- PAY_ON_ABSTRACT
54-
- MOVE_TOKENS_ON_ABSTRACT
55-
- MOVE_ETH_ON_ABSTRACT
48+
- TRANSFER_TOKEN_ON_LENS
49+
- TRANSFER_TOKENS_ON_LENS
50+
- SEND_TOKENS_ON_LENS
51+
- SEND_ETH_ON_LENS
52+
- PAY_ON_LENS
53+
- MOVE_TOKENS_ON_LENS
54+
- MOVE_ETH_ON_LENS
5655

5756
## Common Issues & Troubleshooting
5857

@@ -98,102 +97,3 @@ pnpm run build
9897
pnpm run dev
9998
```
10099

101-
## Future Enhancements
102-
103-
1. **Smart Account Features**
104-
- Multi-signature support
105-
- Account recovery mechanisms
106-
- Batch transaction processing
107-
- Advanced permission management
108-
- Account abstraction improvements
109-
- Social recovery options
110-
111-
2. **CosmWasm Integration**
112-
- Contract deployment templates
113-
- Smart contract verification tools
114-
- Contract upgrade system
115-
- Testing framework improvements
116-
- Gas optimization tools
117-
- Contract interaction templates
118-
119-
3. **IBC Operations**
120-
- Cross-chain transfer optimization
121-
- IBC relayer monitoring
122-
- Channel management tools
123-
- Packet tracking system
124-
- Timeout handling improvements
125-
- Cross-chain messaging
126-
127-
4. **DEX Integration**
128-
- Advanced swap routing
129-
- Liquidity pool management
130-
- Yield farming automation
131-
- Price impact analysis
132-
- Slippage protection
133-
- AMM optimization
134-
135-
5. **Security Enhancements**
136-
- Transaction simulation
137-
- Risk assessment tools
138-
- Rate limiting controls
139-
- Fraud detection system
140-
- Emergency shutdown features
141-
- Audit integration tools
142-
143-
6. **Developer Tools**
144-
- Enhanced debugging capabilities
145-
- Documentation generator
146-
- CLI tool improvements
147-
- Testing utilities
148-
- Deployment automation
149-
- Performance profiling
150-
151-
7. **Analytics and Monitoring**
152-
- Transaction tracking dashboard
153-
- Network statistics
154-
- Performance metrics
155-
- Gas usage optimization
156-
- Custom reporting tools
157-
- Real-time monitoring
158-
159-
8. **Wallet Management**
160-
- Multiple wallet support
161-
- Hardware wallet integration
162-
- Address book features
163-
- Transaction history analysis
164-
- Balance monitoring
165-
- Token management tools
166-
167-
We welcome community feedback and contributions to help prioritize these enhancements.
168-
169-
## Contributing
170-
171-
Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information.
172-
173-
## Credits
174-
175-
This plugin integrates with and builds upon several key technologies:
176-
177-
- [Abstract](https://abstract.money/): Smart account infrastructure
178-
- [CosmWasm](https://cosmwasm.com/): Smart contract platform
179-
- [Cosmos SDK](https://v1.cosmos.network/sdk): Blockchain application framework
180-
- [IBC Protocol](https://ibcprotocol.org/): Inter-blockchain communication
181-
- [Osmosis](https://osmosis.zone/): DEX infrastructure
182-
183-
Special thanks to:
184-
- The Abstract development team
185-
- The CosmWasm core developers
186-
- The Cosmos SDK maintainers
187-
- The IBC Protocol team
188-
- The Osmosis DEX team
189-
- The Eliza community for their contributions and feedback
190-
191-
For more information about Abstract capabilities:
192-
- [Abstract Documentation](https://docs.abstract.money/)
193-
- [CosmWasm Documentation](https://docs.cosmwasm.com/)
194-
- [Cosmos SDK Docs](https://docs.cosmos.network/)
195-
- [IBC Protocol Docs](https://ibc.cosmos.network/)
196-
197-
## License
198-
199-
This plugin is part of the Eliza project. See the main project repository for license information.

packages/plugin-lensNetwork/src/actions/trasferFromWallet.ts

-217
This file was deleted.

packages/plugin-lensNetwork/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { Plugin } from "@elizaos/core";
22

33
import transfer from "./actions/transfer.ts";
4-
import trasferFromWallet from "./actions/trasferFromWallet.ts";
4+
55

66
export const LensPlugin: Plugin = {
77
name: "Lens",
88
description: "Lens Plugin for Eliza",
9-
actions: [transfer,trasferFromWallet],
9+
actions: [transfer],
1010
evaluators: [],
1111
providers: [],
1212
};

0 commit comments

Comments
 (0)