UNPKG

@metaplex-foundation/mpl-auction-house

Version:
167 lines 5.65 kB
"use strict"; 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.createExecutePartialSaleInstruction = exports.executePartialSaleInstructionDiscriminator = exports.executePartialSaleStruct = void 0; const splToken = __importStar(require("@solana/spl-token")); const beet = __importStar(require("@metaplex-foundation/beet")); const web3 = __importStar(require("@solana/web3.js")); exports.executePartialSaleStruct = new beet.FixableBeetArgsStruct([ ['instructionDiscriminator', beet.uniformFixedSizeArray(beet.u8, 8)], ['escrowPaymentBump', beet.u8], ['freeTradeStateBump', beet.u8], ['programAsSignerBump', beet.u8], ['buyerPrice', beet.u64], ['tokenSize', beet.u64], ['partialOrderSize', beet.coption(beet.u64)], ['partialOrderPrice', beet.coption(beet.u64)], ], 'ExecutePartialSaleInstructionArgs'); exports.executePartialSaleInstructionDiscriminator = [163, 18, 35, 157, 49, 164, 203, 133]; function createExecutePartialSaleInstruction(accounts, args, programId = new web3.PublicKey('hausS13jsjafwWwGqZTUQRmWyvyxn9EQpqMwV1PBBmk')) { var _a, _b, _c, _d; const [data] = exports.executePartialSaleStruct.serialize({ instructionDiscriminator: exports.executePartialSaleInstructionDiscriminator, ...args, }); const keys = [ { pubkey: accounts.buyer, isWritable: true, isSigner: false, }, { pubkey: accounts.seller, isWritable: true, isSigner: false, }, { pubkey: accounts.tokenAccount, isWritable: true, isSigner: false, }, { pubkey: accounts.tokenMint, isWritable: false, isSigner: false, }, { pubkey: accounts.metadata, isWritable: false, isSigner: false, }, { pubkey: accounts.treasuryMint, isWritable: false, isSigner: false, }, { pubkey: accounts.escrowPaymentAccount, isWritable: true, isSigner: false, }, { pubkey: accounts.sellerPaymentReceiptAccount, isWritable: true, isSigner: false, }, { pubkey: accounts.buyerReceiptTokenAccount, isWritable: true, isSigner: false, }, { pubkey: accounts.authority, isWritable: false, isSigner: false, }, { pubkey: accounts.auctionHouse, isWritable: false, isSigner: false, }, { pubkey: accounts.auctionHouseFeeAccount, isWritable: true, isSigner: false, }, { pubkey: accounts.auctionHouseTreasury, isWritable: true, isSigner: false, }, { pubkey: accounts.buyerTradeState, isWritable: true, isSigner: false, }, { pubkey: accounts.sellerTradeState, isWritable: true, isSigner: false, }, { pubkey: accounts.freeTradeState, isWritable: true, isSigner: false, }, { pubkey: (_a = accounts.tokenProgram) !== null && _a !== void 0 ? _a : splToken.TOKEN_PROGRAM_ID, isWritable: false, isSigner: false, }, { pubkey: (_b = accounts.systemProgram) !== null && _b !== void 0 ? _b : web3.SystemProgram.programId, isWritable: false, isSigner: false, }, { pubkey: (_c = accounts.ataProgram) !== null && _c !== void 0 ? _c : splToken.ASSOCIATED_TOKEN_PROGRAM_ID, isWritable: false, isSigner: false, }, { pubkey: accounts.programAsSigner, isWritable: false, isSigner: false, }, { pubkey: (_d = accounts.rent) !== null && _d !== void 0 ? _d : 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.createExecutePartialSaleInstruction = createExecutePartialSaleInstruction; //# sourceMappingURL=executePartialSale.js.map