@orca-so/whirlpools-sdk
Version:
Typescript SDK to interact with Orca's Whirlpool program.
19 lines • 718 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setCollectProtocolFeesAuthorityIx = setCollectProtocolFeesAuthorityIx;
function setCollectProtocolFeesAuthorityIx(program, params) {
const { whirlpoolsConfig, collectProtocolFeesAuthority, newCollectProtocolFeesAuthority, } = params;
const ix = program.instruction.setCollectProtocolFeesAuthority({
accounts: {
whirlpoolsConfig,
collectProtocolFeesAuthority,
newCollectProtocolFeesAuthority,
},
});
return {
instructions: [ix],
cleanupInstructions: [],
signers: [],
};
}
//# sourceMappingURL=set-collect-protocol-fees-authority-ix.js.map