@bagsfm/bags-sdk
Version:
TypeScript SDK for Bags
9 lines • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getFeeVaultPda = getFeeVaultPda;
const web3_js_1 = require("@solana/web3.js");
const constants_1 = require("../constants");
function getFeeVaultPda(feeClaimer, baseMint, programId) {
return web3_js_1.PublicKey.findProgramAddressSync([Buffer.from(constants_1.BAGS_METEORA_FEE_CLAIMER_VAULT_PDA_SEED), feeClaimer.toBuffer(), baseMint.toBuffer()], programId)[0];
}
//# sourceMappingURL=fee-claim.js.map