Merge branch 'main' into jup-list

This commit is contained in:
aryan
2024-12-19 05:45:01 +05:30
30 changed files with 3384 additions and 89 deletions

View File

@@ -14,6 +14,7 @@ import {
getTPS,
getTokenDataByAddress,
getTokenDataByTicker,
stakeWithJup,
} from "../tools";
import { CollectionOptions, PumpFunTokenOptions } from "../types";
import { DEFAULT_OPTIONS } from "../constants";
@@ -121,4 +122,10 @@ export class SolanaAgentKit {
options
);
}
async stake(
amount: number,
) {
return stakeWithJup(this, amount);
}
}