39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import { Tool } from "langchain/tools"
|
|
import { PublicKey } from "@solana/web3.js"
|
|
|
|
export class SolanaGetAllAssetsByOwner extends Tool {
|
|
name = "solana_get_all_assets_by_owner"
|
|
description = `Get all assets owned by a specific wallet address.
|
|
Inputs:
|
|
- owner: string, the wallet address of the owner, e.g., "4Be9CvxqHW6BYiRAxW9Q3xu1ycTMWaL5z8NX4HR3ha7t" (required)
|
|
- limit: number, the maximum number of assets to retrieve (optional)`
|
|
|
|
constructor(solanaKit) {
|
|
super()
|
|
this.solanaKit = solanaKit
|
|
}
|
|
|
|
async _call(input) {
|
|
try {
|
|
const { owner, limit } = JSON.parse(input)
|
|
const ownerPubkey = new PublicKey(owner)
|
|
|
|
const assets = await this.solanaKit.getAllAssetsbyOwner(
|
|
ownerPubkey,
|
|
limit
|
|
)
|
|
return JSON.stringify({
|
|
status: "success",
|
|
message: "Assets retrieved successfully",
|
|
assets: assets
|
|
})
|
|
} catch (error) {
|
|
return JSON.stringify({
|
|
status: "error",
|
|
message: error.message,
|
|
code: error.code || "UNKNOWN_ERROR"
|
|
})
|
|
}
|
|
}
|
|
}
|