@rainfi/sdk
Version:
This package is used to interact with Rain.fi protocol on Solana
98 lines • 3.9 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.createUpdateCollectionOrCreatorInstruction = exports.updateCollectionOrCreatorInstructionDiscriminator = exports.updateCollectionOrCreatorStruct = void 0;
const web3 = __importStar(require("@solana/web3.js"));
const beet = __importStar(require("@metaplex-foundation/beet"));
const beetSolana = __importStar(require("@metaplex-foundation/beet-solana"));
/**
* @category Instructions
* @category UpdateCollectionOrCreator
* @category generated
*/
exports.updateCollectionOrCreatorStruct = new beet.BeetArgsStruct([
['instructionDiscriminator', beet.uniformFixedSizeArray(beet.u8, 8)],
['collectionId', beet.u32],
['creator', beetSolana.publicKey],
['collection', beetSolana.publicKey],
], 'UpdateCollectionOrCreatorInstructionArgs');
exports.updateCollectionOrCreatorInstructionDiscriminator = [
100, 104, 246, 168, 211, 129, 254, 135,
];
/**
* Creates a _UpdateCollectionOrCreator_ instruction.
*
* @param accounts that will be accessed while the instruction is processed
* @param args to provide as instruction data to the program
*
* @category Instructions
* @category UpdateCollectionOrCreator
* @category generated
*/
function createUpdateCollectionOrCreatorInstruction(accounts, args, programId = new web3.PublicKey('RainEraPU5yDoJmTrHdYynK9739GkEfDsE4ffqce2BR')) {
var _a, _b;
const [data] = exports.updateCollectionOrCreatorStruct.serialize(Object.assign({ instructionDiscriminator: exports.updateCollectionOrCreatorInstructionDiscriminator }, args));
const keys = [
{
pubkey: accounts.signer,
isWritable: true,
isSigner: true,
},
{
pubkey: accounts.collection,
isWritable: true,
isSigner: false,
},
{
pubkey: (_a = accounts.systemProgram) !== null && _a !== void 0 ? _a : web3.SystemProgram.programId,
isWritable: false,
isSigner: false,
},
{
pubkey: (_b = accounts.rent) !== null && _b !== void 0 ? _b : web3.SYSVAR_RENT_PUBKEY,
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.createUpdateCollectionOrCreatorInstruction = createUpdateCollectionOrCreatorInstruction;
//# sourceMappingURL=updateCollectionOrCreator.js.map