|
| 1 | +import { |
| 2 | + Action, |
| 3 | + IAgentRuntime, |
| 4 | + Memory, |
| 5 | + State, |
| 6 | + HandlerCallback, |
| 7 | +} from "@ai16z/eliza"; |
| 8 | +import { z } from "zod"; |
| 9 | +import { generateObjectV2, composeContext, ModelClass, Content } from "@ai16z/eliza"; |
| 10 | +import { createPublicClient, createWalletClient, http, parseCFX } from "cive"; |
| 11 | +import { privateKeyToAccount } from "cive/accounts"; |
| 12 | +import { testnet } from "cive/chains"; |
| 13 | +import { confluxTransferTemplate } from "../templates/transfer"; |
| 14 | + |
| 15 | +const TransferSchema = z.object({ |
| 16 | + to: z.string(), |
| 17 | + amount: z.number(), // use number ignoring decimals issue |
| 18 | +}); |
| 19 | + |
| 20 | +interface TransferContent extends Content { |
| 21 | + to: string; |
| 22 | + amount: number; |
| 23 | +} |
| 24 | + |
| 25 | +const isTransferContent = (object: any): object is TransferContent => { |
| 26 | + if (TransferSchema.safeParse(object).success) { |
| 27 | + return true; |
| 28 | + } |
| 29 | + console.error("Invalid content: ", object); |
| 30 | + return false; |
| 31 | +}; |
| 32 | + |
| 33 | +const sendCFX = async ( |
| 34 | + secretKey: `0x${string}`, |
| 35 | + rpcUrl: string, |
| 36 | + to: string, |
| 37 | + amount: string |
| 38 | +) => { |
| 39 | + const client = createPublicClient({ |
| 40 | + transport: http(rpcUrl), |
| 41 | + }); |
| 42 | + const networkId = await client.getChainId(); |
| 43 | + const account = privateKeyToAccount(secretKey, { networkId }); |
| 44 | + |
| 45 | + const walletClient = createWalletClient({ |
| 46 | + transport: http(rpcUrl), |
| 47 | + chain: testnet, |
| 48 | + }); |
| 49 | + |
| 50 | + const hash = await walletClient.sendTransaction({ |
| 51 | + account, |
| 52 | + to, |
| 53 | + value: parseCFX(amount), |
| 54 | + chain: testnet, |
| 55 | + }); |
| 56 | + |
| 57 | + await client.waitForTransactionReceipt({ |
| 58 | + hash, |
| 59 | + }); |
| 60 | + return hash; |
| 61 | +}; |
| 62 | + |
| 63 | +export const transfer: Action = { |
| 64 | + name: "SEND_CFX", |
| 65 | + description: |
| 66 | + "Transfer CFX from to another in Conflux Core Space", |
| 67 | + similes: ["SEND_CONFLUX", "SEND_CFX_CORE_SPACE", "TRANSFER_CFX"], |
| 68 | + examples: [ |
| 69 | + [ |
| 70 | + { |
| 71 | + user: "{{user1}}", |
| 72 | + content: { |
| 73 | + text: "Send 1 CFX to 0x1234567890abcdef", |
| 74 | + }, |
| 75 | + }, |
| 76 | + { |
| 77 | + user: "{{user2}}", |
| 78 | + content: { |
| 79 | + text: "1 CFX sent to 0x1234567890abcdef: 0x1234567890abcdef", |
| 80 | + content: { |
| 81 | + to: "0x1234567890abcdef", |
| 82 | + amount: "1", |
| 83 | + }, |
| 84 | + }, |
| 85 | + }, |
| 86 | + ], |
| 87 | + ], |
| 88 | + validate: async (runtime: IAgentRuntime, message: Memory) => { |
| 89 | + // no extra validation needed |
| 90 | + return true; |
| 91 | + }, |
| 92 | + handler: async ( |
| 93 | + runtime: IAgentRuntime, |
| 94 | + message: Memory, |
| 95 | + state?: State, |
| 96 | + options?: { [key: string]: unknown }, |
| 97 | + callback?: HandlerCallback |
| 98 | + ) => { |
| 99 | + if (!state) { |
| 100 | + state = (await runtime.composeState(message)) as State; |
| 101 | + } else { |
| 102 | + state = await runtime.updateRecentMessageState(state); |
| 103 | + } |
| 104 | + |
| 105 | + const context = composeContext({ |
| 106 | + state, |
| 107 | + template: confluxTransferTemplate, |
| 108 | + }); |
| 109 | + |
| 110 | + const content = await generateObjectV2({ |
| 111 | + runtime, |
| 112 | + context, |
| 113 | + modelClass: ModelClass.SMALL, |
| 114 | + schema: TransferSchema, |
| 115 | + }); |
| 116 | + |
| 117 | + if (!isTransferContent(content.object)) { |
| 118 | + throw new Error("Invalid content"); |
| 119 | + } |
| 120 | + |
| 121 | + const secretKey = runtime.getSetting("CONFLUX_CORE_PRIVATE_KEY") as `0x${string}`; |
| 122 | + const rpcUrl = runtime.getSetting("CONFLUX_CORE_SPACE_RPC_URL"); |
| 123 | + |
| 124 | + let success = false; |
| 125 | + |
| 126 | + try { |
| 127 | + const hash = await sendCFX(secretKey, rpcUrl, content.object.to, content.object.amount.toString()); |
| 128 | + success = true; |
| 129 | + if (!callback) { |
| 130 | + return success; |
| 131 | + } |
| 132 | + callback({ |
| 133 | + text: `${content.object.amount} CFX sent to ${content.object.to}: ${hash}`, |
| 134 | + content: content.object, |
| 135 | + }); |
| 136 | + } catch (error) { |
| 137 | + console.error(`Error sending CFX: ${error}`); |
| 138 | + if (!callback) { |
| 139 | + return success; |
| 140 | + } |
| 141 | + callback({ |
| 142 | + text: `Failed to send ${content.object.amount} CFX to ${content.object.to}: ${error}`, |
| 143 | + }); |
| 144 | + } |
| 145 | + return success; |
| 146 | + }, |
| 147 | +}; |
0 commit comments