|
| 1 | +import { |
| 2 | + Action, |
| 3 | + composeContext, |
| 4 | + generateObjectDeprecated, |
| 5 | + IAgentRuntime, |
| 6 | + ModelClass, |
| 7 | + State, |
| 8 | +} from "@elizaos/core"; |
| 9 | +import { initWalletProvider, WalletProvider } from "../providers/wallet"; |
| 10 | +import { bn } from "fuels"; |
| 11 | +import { transferTemplate } from "../templates"; |
| 12 | + |
| 13 | +type TransferParams = { |
| 14 | + toAddress: string; |
| 15 | + amount: string; |
| 16 | +}; |
| 17 | + |
| 18 | +export class TransferAction { |
| 19 | + constructor(private walletProvider: WalletProvider) {} |
| 20 | + |
| 21 | + async transfer(params: TransferParams) { |
| 22 | + try { |
| 23 | + const { toAddress, amount } = params; |
| 24 | + const res = await this.walletProvider.wallet.transfer( |
| 25 | + toAddress, |
| 26 | + bn.parseUnits(amount) |
| 27 | + ); |
| 28 | + const tx = await res.waitForResult(); |
| 29 | + return tx; |
| 30 | + } catch (error) { |
| 31 | + throw new Error(`Transfer failed: ${error.message}`); |
| 32 | + } |
| 33 | + } |
| 34 | +} |
| 35 | + |
| 36 | +const buildTransferDetails = async (state: State, runtime: IAgentRuntime) => { |
| 37 | + const context = composeContext({ |
| 38 | + state, |
| 39 | + template: transferTemplate, |
| 40 | + }); |
| 41 | + |
| 42 | + const transferDetails = (await generateObjectDeprecated({ |
| 43 | + runtime, |
| 44 | + context, |
| 45 | + modelClass: ModelClass.SMALL, |
| 46 | + })) as TransferParams; |
| 47 | + |
| 48 | + return transferDetails; |
| 49 | +}; |
| 50 | + |
| 51 | +export const transferAction: Action = { |
| 52 | + name: "transfer", |
| 53 | + description: "Transfer Fuel ETH between addresses on Fuel Ignition", |
| 54 | + handler: async (runtime, message, state, options, callback) => { |
| 55 | + const walletProvider = await initWalletProvider(runtime); |
| 56 | + const action = new TransferAction(walletProvider); |
| 57 | + |
| 58 | + const paramOptions = await buildTransferDetails(state, runtime); |
| 59 | + |
| 60 | + try { |
| 61 | + const transferResp = await action.transfer(paramOptions); |
| 62 | + if (callback) { |
| 63 | + callback({ |
| 64 | + text: `Successfully transferred ${paramOptions.amount} ETH to ${paramOptions.toAddress}\nTransaction Hash: ${transferResp.id}`, |
| 65 | + content: { |
| 66 | + success: true, |
| 67 | + hash: transferResp.id, |
| 68 | + amount: paramOptions.amount, |
| 69 | + recipient: paramOptions.toAddress, |
| 70 | + }, |
| 71 | + }); |
| 72 | + } |
| 73 | + return true; |
| 74 | + } catch (error) { |
| 75 | + console.error("Error during token transfer:", error); |
| 76 | + if (callback) { |
| 77 | + callback({ |
| 78 | + text: `Error transferring tokens: ${error.message}`, |
| 79 | + content: { error: error.message }, |
| 80 | + }); |
| 81 | + } |
| 82 | + return false; |
| 83 | + } |
| 84 | + }, |
| 85 | + // template: transferTemplate, |
| 86 | + validate: async (runtime: IAgentRuntime) => { |
| 87 | + const privateKey = runtime.getSetting("FUEL_PRIVATE_KEY"); |
| 88 | + return typeof privateKey === "string" && privateKey.startsWith("0x"); |
| 89 | + }, |
| 90 | + examples: [ |
| 91 | + [ |
| 92 | + { |
| 93 | + user: "assistant", |
| 94 | + content: { |
| 95 | + text: "I'll help you transfer 1 ETH to 0x8F8afB12402C9a4bD9678Bec363E51360142f8443FB171655eEd55dB298828D1", |
| 96 | + action: "SEND_TOKENS", |
| 97 | + }, |
| 98 | + }, |
| 99 | + { |
| 100 | + user: "user", |
| 101 | + content: { |
| 102 | + text: "Transfer 1 ETH to 0x8F8afB12402C9a4bD9678Bec363E51360142f8443FB171655eEd55dB298828D1", |
| 103 | + action: "SEND_TOKENS", |
| 104 | + }, |
| 105 | + }, |
| 106 | + ], |
| 107 | + ], |
| 108 | + similes: ["TRANSFER_FUEL_ETH"], |
| 109 | +}; |
0 commit comments