feat:parsing transactions and getting all Assets

This commit is contained in:
shivaji43
2025-01-07 15:53:20 +05:30
parent 58a9edd7e2
commit 418f55178a
4 changed files with 1462 additions and 0 deletions

View File

@@ -594,6 +594,12 @@ export class SolanaAgentKit {
async flashCloseTrade(params: FlashCloseTradeParams): Promise<string> {
return flashCloseTrade(this, params);
}
async heliusParseTransactions(transactionId: string): Promise<any> {
return parseTransaction(this, transactionId);
}
async getAllAssetsbyOwner(owner: PublicKey, limit: number): Promise<any> {
return getAssetsByOwner(this, owner, limit);
}
async create3LandCollection(
optionsWithBase58: StoreInitOptions,