@rainfi/sdk
Version:
This package is used to interact with Rain.fi protocol on Solana
228 lines • 7.05 kB
JavaScript
;
/**
* This code was GENERATED using the solita package.
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
*
* See: https://github.com/metaplex-foundation/solita
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.createTakeLoanV2Instruction = exports.takeLoanV2InstructionDiscriminator = exports.takeLoanV2Struct = void 0;
const splToken = __importStar(require("@solana/spl-token"));
const beet = __importStar(require("@metaplex-foundation/beet"));
const web3 = __importStar(require("@solana/web3.js"));
/**
* @category Instructions
* @category TakeLoanV2
* @category generated
*/
exports.takeLoanV2Struct = new beet.BeetArgsStruct([
['instructionDiscriminator', beet.uniformFixedSizeArray(beet.u8, 8)],
['collectionId', beet.u32],
['duration', beet.u64],
['interest', beet.u64],
['amount', beet.u64],
['slippage', beet.u16],
['whitelistIndex', beet.u8],
], 'TakeLoanV2InstructionArgs');
exports.takeLoanV2InstructionDiscriminator = [
93, 86, 34, 36, 98, 147, 51, 3,
];
/**
* Creates a _TakeLoanV2_ instruction.
*
* Optional accounts that are not provided will be omitted from the accounts
* array passed with the instruction.
* An optional account that is set cannot follow an optional account that is unset.
* Otherwise an Error is raised.
*
* @param accounts that will be accessed while the instruction is processed
* @param args to provide as instruction data to the program
*
* @category Instructions
* @category TakeLoanV2
* @category generated
*/
function createTakeLoanV2Instruction(accounts, args, programId = new web3.PublicKey('RainEraPU5yDoJmTrHdYynK9739GkEfDsE4ffqce2BR')) {
var _a, _b;
const [data] = exports.takeLoanV2Struct.serialize(Object.assign({ instructionDiscriminator: exports.takeLoanV2InstructionDiscriminator }, args));
const keys = [
{
pubkey: accounts.signer,
isWritable: true,
isSigner: true,
},
{
pubkey: accounts.signerStats,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.signerTa,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.nftTa,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.nftMint,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.nftMetadata,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.nftEdition,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.loan,
isWritable: true,
isSigner: true,
},
{
pubkey: accounts.vaultTokenAccount,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.collection,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.poolOwner,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.pool,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.authority,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.vault,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.poolCurrency,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.whitelist,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.pythPoolFeed,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.pythSolFeed,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.rainTa,
isWritable: true,
isSigner: false,
},
{
pubkey: accounts.instructions,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.authorizationRulesProgram,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.metadataProgram,
isWritable: false,
isSigner: false,
},
{
pubkey: (_a = accounts.systemProgram) !== null && _a !== void 0 ? _a : web3.SystemProgram.programId,
isWritable: false,
isSigner: false,
},
{
pubkey: (_b = accounts.tokenProgram) !== null && _b !== void 0 ? _b : splToken.TOKEN_PROGRAM_ID,
isWritable: false,
isSigner: false,
},
{
pubkey: accounts.associatedTokenProgram,
isWritable: false,
isSigner: false,
},
];
if (accounts.referrerTa != null) {
keys.push({
pubkey: accounts.referrerTa,
isWritable: true,
isSigner: false,
});
}
if (accounts.lookupTable != null) {
if (accounts.referrerTa == null) {
throw new Error("When providing 'lookupTable' then 'accounts.referrerTa' need(s) to be provided as well.");
}
keys.push({
pubkey: accounts.lookupTable,
isWritable: false,
isSigner: false,
});
}
if (accounts.anchorRemainingAccounts != null) {
for (const acc of accounts.anchorRemainingAccounts) {
keys.push(acc);
}
}
const ix = new web3.TransactionInstruction({
programId,
keys,
data,
});
return ix;
}
exports.createTakeLoanV2Instruction = createTakeLoanV2Instruction;
//# sourceMappingURL=takeLoanV2.js.map