feat: priorty fee support

This commit is contained in:
aryan
2024-11-19 00:04:42 +07:00
parent 506ad8fbb6
commit e3d1ff1d41
6 changed files with 142 additions and 54 deletions

View File

@@ -43,9 +43,9 @@ export class SolanaAgentKit {
async deployToken(
decimals: number = DEFAULT_OPTIONS.TOKEN_DECIMALS,
initialSupply?: number
// initialSupply?: number
) {
return deploy_token(this, decimals, initialSupply);
return deploy_token(this, decimals);
}
async deployCollection(options: CollectionOptions) {