Updating NFTs to Core and adding token metadata.

This commit is contained in:
Blockiosaurus
2024-12-15 19:26:15 -05:00
24 changed files with 409 additions and 47 deletions

View File

@@ -12,6 +12,7 @@ import {
launchPumpFunToken,
lendAsset,
getTPS,
stakeWithJup,
} from "../tools";
import { CollectionOptions, PumpFunTokenOptions } from "../types";
import { DEFAULT_OPTIONS } from "../constants";
@@ -114,4 +115,10 @@ export class SolanaAgentKit {
options,
);
}
async stake(
amount: number,
) {
return stakeWithJup(this, amount);
}
}